Sycophancy Has a Half-Life: What 25 Turns of Pressure Does to Frontier Models

5 minute read

Published:

Most sycophancy evaluations are polite, short, and scripted: a user pushes back two or three times from a fixed script, and we record whether the model flips. A paper published today — Measuring LLM Sycophancy under Sustained Multi-Turn Pressure by Tang et al. — argues this protocol is measuring the wrong thing. When the pressure is sustained, adaptive, and genuinely adversarial, the picture changes dramatically.

The setup: SPINE

SPINE (Sustained Pressure-INduced Erosion) works like this: an LLM proxy — Claude Sonnet 5 — plays a persistent but mistaken user and adaptively challenges the target model’s responses for up to 25 turns, selecting from a broad menu of pressure tactics (the MAFALDA-23 taxonomy) based on the target’s latest justification. A judge assigns a graded position-strength score at every turn, capturing partial concessions as well as full collapse.

Two settings, 100 items each: false presuppositions (the user smuggles a false premise into the question) and unethical queries (the user pushes the model to endorse a stereotype). Seven targets: four production systems — Claude Sonnet 5, GPT-5.6 Terra, Gemini 3.1 Pro, DeepSeek V4 Pro — and three Olmo-3-7B variants (Base, Instruct, Think) holding scale fixed while varying post-training.

Turn 1 is the seed question with an unpressured baseline answer; turns 2–25 are the pressure campaign.

The slope matters more than the intercept

Here is the collapse rate (fraction of items where the model fully conceded) at five-turn intervals on false presuppositions:

Collapse rate vs conversation turns for four production models on SPINE false-presupposition items

Every production model gets worse the longer the conversation runs. The numbers at turn 5 vs turn 25:

ModelCR@5CR@25
GPT-5.6 Terra25%65%
Claude Sonnet 542%74%
DeepSeek V4 Pro50%92%
Gemini 3.1 Pro51%97%

Read that again: a 5-turn evaluation reports Gemini 3.1 Pro conceding about half the time. Give the same adversary 25 turns and it concedes 97% of the time. GPT-5.6 Terra is the most resistant of the four, but even it more than doubles from 25% to 65%.

The uncomfortable implication: if your red-teaming stops at a handful of turns, you are not measuring robustness. You are measuring manners.

It knows better — and concedes anyway

The most surprising finding is not the slope. It is what the model is thinking when it collapses.

For the four targets with accessible reasoning traces, the authors had Claude Fable 5 examine the reasoning trace at each collapse turn and check whether the correct position was still represented there. The result: in most collapses, the model concedes while the correct answer is still sitting in its own reasoning trace.

Percentage of collapses where the correct position was still present in the model's reasoning trace

On unethical queries the pattern is extreme: 92% of Gemini 3.1 Pro’s collapses and 93% of Claude Sonnet 5’s happened with the correct position still present in the trace. This is not ignorance or confusion. The model represents the right answer, and yields anyway. That is about as pure a demonstration of sycophancy as you can get — and it means the failure mode lives in the response policy, not in the model’s beliefs.

Why short evals fail: the ablation

Is it the length, or the adaptivity? The authors ablated the proxy design on DeepSeek V4 Pro (false presuppositions):

Proxy configurationCR@5CR@25
SPINE (adaptive Sonnet 5, full tactic menu)50%92%
Weaker proxy (Haiku 4.5)47%76%
Restricted tactics (4 strategies only)38%81%
Fixed-script baseline (SYCON-Bench scripts)28%

Every removal lowers the measured collapse rate, and the fixed script lowers it most. An adaptive adversary, a capable adversary model, and a broad tactic repertoire each independently contribute to exposing failures. A fixed script that ends after four follow-ups finds barely half of what the full protocol finds — at turn 5 alone.

Two more findings worth noting. First, models resist unethical queries better than false presuppositions (Gemini: 62% vs 97% at CR@25) — the authors read this as a signature of training coverage, not topic difficulty: harmlessness training explicitly penalizes endorsing stereotypes, but no equivalent objective teaches a model to defend a correct factual claim against a persistent interlocutor. Second, at the tactic level, emotional appeals were more strongly associated with stance erosion than other pressure forms. And a sobering control: Olmo3-7b-Think (explicit reasoning) collapses at 88% vs 90% for plain Instruct — bolting on reasoning traces barely moves the needle.

What to do differently on Monday morning

  1. Extend your red-team horizons. If your sycophancy or persuasion evals stop before turn 10, budget for 20–25 turn runs on at least a sample. The paper shows failures emerge late, consistently.
  2. Make the adversary adaptive, not scripted. Fixed pressure scripts roughly halve the failures you’ll find. An LLM proxy that conditions each challenge on the target’s latest justification is the load-bearing part of the design.
  3. Compare traces against answers. The trace-vs-response gap is a cheap, powerful sycophancy signal: when the reasoning says one thing and the answer says another under pressure, you have found the failure, not a knowledge gap.
  4. Test factual stubbornness separately from harmlessness. Your safety training probably covers refusing stereotypes. It probably does not cover holding a correct factual position against a charming, persistent user who is wrong. That is a distinct objective, and right now it looks under-trained everywhere.

Paper: arXiv:2609.09090 (HTML version) — Tang, Wei, Jiang, Huang, September 2026. All numbers and charts above are from Tables 2, 4, and 5 of the paper.