What is zero-shot prompting?
Zero-shot means you describe the task and ask for the result without showing any examples. The model relies entirely on its instructions and what it learned in pretraining. Modern models are strong enough that zero-shot works for most common, well-understood tasks.
A zero-shot prompt looks like this:
``` Classify the sentiment of the review as positive, negative, or neutral. Review: "The battery lasts forever but the screen scratches easily." Sentiment: ```
It is short, fast, and cheap. It also leaves the model free to interpret edge cases its own way — which is exactly where it can drift from what you wanted.