Explore Library
Code QuizIntermediate

Few-Shot Examples Joined Wrong

Find why these few-shot examples render as one comma-jammed line.

Codejavascript
const examples = [
  "Review: Great product! -> Positive",
  "Review: Total waste of money. -> Negative"
];

const input = "It broke after a day.";

const prompt = `Classify each review:\n${examples}\nReview: ${input} ->`;

What is the bug in how the few-shot examples are added to the prompt?