Explore Library
Code QuizIntermediate

Zero-Shot Prompt Interpolation

Spot why this zero-shot classification prompt never inserts the input text.

Codejavascript
const text = "The movie was absolutely fantastic!";

// Zero-shot: instruct the task with no examples
const prompt = 'Classify the sentiment as Positive or Negative:\n${text}';

console.log(prompt);

What is the bug preventing the input text from appearing in the prompt?