Spot why this supposedly zero-shot prompt is not actually zero-shot.
Codejavascript
// Intended as a zero-shot sentiment classifier
function buildZeroShotPrompt(review) {
return `Classify the sentiment as Positive or Negative.
Example: "I loved this product" -> Positive
Review: "${review}"`;
}
Why does this prompt fail to be zero-shot as intended?