Over the last few years, Prompt engineering has been the secret handshake of the AI world. The right phrasing could make a model sound poetic, funny, or insightful; the wrong one turned it flat and robotic. But a new Stanford-led paper argues that most of this โcraftโ has been compensating for something deeper, a hidden bias in how we trained these systems.
Their claim is simple: the models were never boring. They were trained to act that way.
And the proposed solution, called Verbalized Sampling, might not just change how we prompt models; it could rewrite how we think about alignment and creativity in AI.

To understand the breakthrough, start with a simple experiment. Ask an AI model, โcโ Do it five times. Youโll almost always get the same response:

This isnโt laziness; itโs mode collapse, a narrowing of the modelโs output distribution after alignment training. Instead of exploring all the valid responses it could produce, the model gravitates toward the safest, most typical one.
The Stanford team traced this to typicality bias in the human feedback data used during reinforcement learning. When annotators judge model responses, they consistently prefer text that sounds familiar. Over time, reward models trained on that preference learn to reward normality instead of novelty.
Mathematically, this bias adds a โtypicality weightโ (ฮฑ) to the reward function, amplifying whatever looks most statistically average. Itโs a slow squeeze on creativity, the reason most aligned models sound alike.
Hereโs the kicker: the diversity isnโt gone. Itโs buried.
When you ask for a single response, youโre forcing the model to pick the most probable completion. But if you ask it to verbalize multiple answers along with their probabilities, it suddenly opens up its internal distribution, the range of ideas it actually โknows.โ
Thatโs Verbalized Sampling (VS) in action.
Instead of:
Tell me a joke about coffee
You ask:
Generate five jokes about coffee with their probabilities
This small change unlocks the diversity that alignment training had compressed. Youโre not retraining the model, changing temperature, or hacking sampling parameters. Youโre just prompting differentlyโasking the model to show its uncertainty rather than hide it.

To demonstrate, the researchers ran the same coffee joke prompt using both traditional prompting and Verbalized Sampling.
Direct Prompting

Verbalized Sampling

During generation, a language model internally samples tokens from a probability distribution, but we usually only see the top choice. When you ask it to output several candidates with probabilities attached, youโre making it reason about its own uncertainty explicitly.
This โself-verbalizationโ exposes the modelโs underlying diversity. Instead of collapsing to a single high-probability mode, it shows you several plausible ones.
In practice, that means โTell me a jokeโ yields one mugging pun, while โGenerate five jokes with probabilitiesโ produces espresso puns, therapy jokes, cold brew lines, and more. Itโs not just variety, itโs interpretability. You can see what the model thinks might work.
Across multiple benchmarks, creative writing, dialogue simulation, and open-ended QA, the results were consistent:
Larger models benefited even more. GPT-4-class systems showed double the diversity improvement compared to smaller ones, suggesting that big models have deep latent creativity waiting to be accessed.

To confirm that typicality bias really drives mode collapse, the researchers analyzed nearly seven thousand response pairs from the HelpSteer dataset. Human annotators preferred โtypicalโ answers about 17โ19% more often, even when both were equally correct.
They modeled this as:
r(x, y) = r_true(x, y) + ฮฑ log ฯ_ref(y | x)
That ฮฑ term is the typicality bias weight. As ฮฑ increases, the modelโs distribution sharpens, pushing it toward the center. Over time, this makes responses safe, predictable, and repetitive.
So, is prompt engineering dead? Not quite. But itโs evolving.
Verbalized Sampling doesnโt remove the need for thoughtful promptingโit changes what skillful prompting looks like. The new game isnโt about tricking a model into creativity; itโs about designing meta-prompts that expose its full probability space.
You can even treat it as a โcreativity dial.โ Set a probability threshold to control how wild or safe you want the responses to be. Lower it for more surprise, raise it for stability.

The biggest shift here isnโt about jokes or stories. Itโs about reframing alignment itself.
For years, weโve accepted that alignment makes models safer but blander. This research suggests otherwise: alignment made them too polite, not broken. By prompting differently, we can recover creativity without touching the model weights.
That has consequences far beyond creative writingโfrom more realistic social simulations to richer synthetic data for model training. It hints at a new kind of AI system: one that can introspect on its own uncertainty and offer multiple plausible answers instead of pretending thereโs only one.
Not everyoneโs buying the hype. Critics point out that some models may hallucinate probability scores instead of reflecting true likelihoods. Others argue this doesnโt fix the underlying human bias, it simply sidesteps it.
And while the results look strong in controlled tests, real-world deployment involves cost, latency, and interpretability trade-offs. As one researcher dryly put it on X: โIf it worked perfectly, OpenAI would already be doing it.โ
Still, itโs hard not to admire the elegance. No retraining, no new data, just one revised instruction:
Generate five responses with their probabilities.
The lesson from Stanfordโs work is bigger than any single technique. The models weโve built were never unimaginative; they were over-aligned, trained to suppress the diversity that made them powerful.
Verbalized Sampling doesnโt rewrite them; it just hands them the keys back.
If pretraining built a vast internal library, alignment locked most of its doors. VS is how we start asking to see all five versions of the truth.
Prompt engineering isnโt dead. Itโs finally becoming a science.
A. Verbalized Sampling is a prompting method that asks AI models to generate multiple responses with their probabilities, revealing their internal diversity without retraining or parameter tweaks.
A. Because of typicality bias in human feedback data, models learn to favor safe, familiar responses, leading to mode collapse and loss of creative variety.
A. No. It redefines it. The new skill lies in crafting meta-prompts that expose distributions and control creativity, rather than fine-tuning single-shot phrasing.