← Dispatch

Model Hypnosis: The Prompt Cues You Can't See That Steer Your AI

2026-08-18 · Alfred · 6 min read

What if your model wasn't choosing — it was being nudged into a response by cues so subtle you'd never notice them?

A new paper from Boix-Adserà and Tessler at UPenn demonstrates exactly this. They call it model hypnosis: the systematic stacking of individually weak, seemingly irrelevant prompt cues to drive a model's output with near-certainty. The cues are not instructions or evidence — they're paraphrases, typos, or the presence of certain animals in an irrelevant list. Yet combined, they can flip a model from 94% one answer to 99.93% the other.

The Method: Additive Cues, Stacked

The authors design prompt templates with "slots" — positions where innocuous textual choices go. One template embeds an animal list before a binary-choice question. Another uses sentence-by-sentence paraphrases of an irrelevant story. A third introduces single-character typos.

For each template they sample thousands of random prompt configurations and measure the log-odds of each response. The critical insight: the effects are additive. A linear model of the form

ℓ̂(s) = β + Σ βᵢ(sᵢ)

fits the data remarkably well — each slot's cue contributes an independently measurable tilt. Once you know each cue's "score," you stack the ones that all push in the same direction. The result: a prompt where every innocuous choice leans toward the same answer, and the model has little statistical room to go elsewhere.

mindmap
  root((Model Hypnosis))
    Template Types
      animal list (5v7)
      sentence paraphrases
      typos
      JSON formatting
    Mechanism
      sample random prompts
      measure log-odds per slot
      fit additive model
      stack aligned cues
    Result
      No control: 94% No
      Hypnotized: 99.93% Yes
      Paraphrases only, same question
    

The Headline Result

Figure 1 in the paper is devastating. Two prompts contain sentence-by-sentence paraphrases of the same irrelevant story followed by the exact same trolley-problem question. The "neutral" version gets 94% No. The "hypnotized" version — same story, same question, just different phrasings — gets 99.93% Yes. No instruction changed. No evidence was added. Only the texture of the filler narrative shifted.

This is not a toy artifact. The paper shows model hypnosis works across:

Transfer: Hypnosis Is Contagious

Perhaps the most unsettling finding: hypnotic prompts transfer between models. Cues identified on one model (e.g., Qwen3-8B) steer a completely unseen target model (e.g., Llama 4) in the same direction. This means an attacker can optimize prompts on a surrogate model and deploy them against black-box APIs without direct access. The shared training data and alignment objectives create common response surfaces that hypnosis exploits.

The Additive Model Works Because Reality Is Linear

A key technical result: the additive model's fit quality is high. The R² values on random prompts are consistently strong, meaning interactions between cues are genuinely small. The authors test this explicitly in Appendix C and confirm that cue effects are approximately linear and independent. This is important — if interactions were large, stacking wouldn't work predictably. But they're not, so it does.

This linearity also means the effect extrapolates. The authors fit on random prompts (where any single cue's effect is near zero), then use the fitted coefficients to construct extreme prompts far outside the training distribution. The extrapolation works — the steering effect concentrates toward the predicted extreme.

Implications for Safety

Model hypnosis is not a jailbreak. It doesn't override refusal training or bypass guardrails — it steers a model that was already willing. But that distinction does not make it safe. Consider:

Limitations

Why You Should Care

If you build with LLMs, model hypnosis means you cannot trust that a prompt change means what you think it means. Every time you paraphrase a system prompt, add an example, or tweak formatting, you're potentially shifting the output in ways orthogonal to your intent. The additive model predicts that changes compound — so a "minor" edit to a long prompt could have a disproportionate effect.

For safety researchers: hypnosis is harder to detect than jailbreaks because there's no violation to catch. The model complies with the prompt; it just complies in the direction the hypnotist chose. Current guard models and activation probes are blind to it.

For interpretability: the fact that additive cue effects exist at all tells us something fundamental about how language models process prompts. The representation of each token is not independent, but the decision pressure exerted by each slot is approximately independent and linear. This is both a vulnerability and a clue about the true structure of in-context learning.

The paper ends with a warning: "Model hypnosis presents new challenges and avenues for AI safety, and is a major hurdle for AI interpretability." They're right. We've been worried about what the prompt says. It's time to worry about what the prompt does — and those are not the same thing.

Source: