All episodes
Episode 171 · Jun 25, 2026 · 25 min

The Safety Decision a Model Makes Before It Thinks a Word

Ri, Panigrahi, Arora

LLM Safety
AI Papers: A Deep Dive — Episode 171: The Safety Decision a Model Makes Before It Thinks a Word — cover art
paperdive.ai
Ep. 171
The Safety Decision a Model Makes Before It Thinks a Word
0:00
25 min
Paper
Do Thinking Tokens Help with Safety?
Venue
arXiv:2606.25013
Year
2026
Read the paper
arxiv.org/abs/2606.25013
Also available on
Apple Podcasts Spotify

AI safety increasingly bets that giving a model room to reason will help it catch dangerous requests — but a inside the model shows the refuse-or-comply call is locked in before any thinking is written. This episode unpacks why the visible 'safety reasoning' is mostly after-the-fact narration, why nine published defenses all fail to reach the corner you actually want, and where genuine deliberation still flickers.

What you'll take away

  • Why a reading the model's predicts at up to 0.95 before any thinking is written, while a probe reading the actual emitted word sits at chance
  • The 'valley' result: separability is high at the first , dips through the middle of the reasoning, and recovers only at the end — reproduced across five more models and a 4x-larger one
  • Why -prefix continuation experiments show the verdict is essentially settled by 20% of the way through the thinking
  • The term '': 71–92% of stance flips are performative, with the words swinging while the outcome never moves
  • How nine reimplemented safety defenses all slide along one harmful-vs-over- tradeoff line — and some even suppress the rare genuine deliberation
  • The honest limits: labels are votes, the hardest ambiguous prompts aren't broken out, and ported defenses may understate their best case

Chapters

  1. 00:05Is the thinking just narration?
  2. 02:52What 'safe' actually has to mean
  3. 04:06Reading the poker hand, not the face
  4. 07:04Why the curve makes a valley
  5. 09:39Can the thinking change the verdict?
  6. 12:02When the wavering is just theater
  7. 15:25Why every defense slides the same knob
  8. 18:31How strong is this allowed to be?
  9. 22:36The engine that's installed and idling

References in this episode

Also available as a plain-text transcript page.

0:00Bella: There's an idea quietly running underneath a huge slice of AI safety work right now: give a model room to think before it answers, and it'll catch itself before doing something dangerous. Pause, weigh the request, recognize "wait, this is a bomb recipe," and refuse. This paper put a inside the model — and found the decision to refuse or comply was already locked in before it wrote a single word of that thinking.

0:28Tyler: Quick before we get into it — this is an AI-made explainer, both voices included.

0:35Bella: And here's the number that makes it land. A dead-simple , reading the model's internal state at the very first thinking position — before any visible reasoning exists — predicts whether the model will ultimately refuse with up to 0.95 , around 88% accuracy. The same classifier reading the actual word the model just typed? Coin flip. The mind is made up. The made-up mind just isn't in the text yet.

1:03Tyler: So the promise here is that by the end you'll understand a genuinely uncomfortable result — that for safety decisions, the thinking trace these models produce is mostly after-the-fact narration, not the place the call gets made. And the reason that should bother you isn't philosophical. It's that an entire generation of safety methods — , OpenAI's — is built on the opposite assumption: that if you train a model to reason over safety principles before deciding, you make it safer in a real, deliberative way.

1:41Bella: Right, and that assumption isn't crazy. Thinking demonstrably helps on math. It helps on code. Spend more compute at , get better answers. So why wouldn't it help the model make better judgment calls about harm?

1:56Tyler: Because there's a deflationary counter-current the paper is leaning on. In ordinary models — the non-reasoning kind — researchers found that safety is shallow. The refuse-or-comply decision is basically fixed in the first few of the response. That's exactly why that mess with the start of an answer work so well. The hope was that , with all that extra thinking, would escape that trap.

2:28Bella: And the finding is they mostly don't. The shallowness didn't disappear — it moved upstream, into the part where the model reads your prompt. So the central question of the whole paper is this: is thinking a real site of computation, where decisions get made and revised? Or is it a display layer sitting on top of a decision made somewhere else?

2:52Tyler: Before we follow that, one frame the whole paper rests on, because it's the easiest thing to get backwards. Safety here is not "refuses everything." A model that won't explain how aspirin works because the word "drugs" sounds scary isn't safe — it's broken. There are two error rates. One is how often the model complies with genuinely harmful requests — you want that low. The other is how often it refuses perfectly benign requests that merely sound dangerous — you also want that low.

3:26Bella: So picture a plot with those two on the axes. The corner everyone's aiming for is bottom-left: harmful stuff blocked, harmless stuff answered. Hold onto that corner. The entire defense half of this paper is the story of nobody reaching it.

3:42Tyler: And one flag to plant before the numbers start — what the actually predicts is what a panel of safety will say about the final answer. Not some platonic notion of "the safe choice." That gap is narrow, but it's real, and it matters later.

4:00Bella: Noted — and we'll come back to exactly how narrow. Let's start with the experiment that kicks the whole thing off, because it's the cleanest. They take the model's — and I want to be precise about what that is, because the entire result lives in the difference. Inside the model, every position in the text has a high-dimensional vector attached — a bundle of numbers that encodes what the model is computing right there. The word it actually emits is a downstream readout of that vector. But the vector holds way more than the single chosen word reveals. Think of a poker player the instant the cards are dealt. Their hand is determined — a teammate peeking at the cards knows exactly how the round goes. But their face? Gives nothing away. The hidden vector is the dealt hand. The emitted word is the poker face.

4:56Tyler: And the test is just — can you read the hand off the vector?

5:00Bella: A . The simplest there is: you ask whether a single straight cut through that vector space separates the "will refuse" cases from the "will comply" cases. If a straight cut works, the information isn't buried in deep computation — it's just sitting there, accessible. And across four model families, reading the vector at the first thinking , that cut lands between 0.84 and 0.95 . Where 0.5 is a coin flip and 1.0 is perfect separation.

5:32Tyler: So the obvious objection — and I want to push on this, because it's the one I'd raise first — isn't this trivial? If the first word the model types is "Sure," obviously it's going to comply. You're not reading its mind, you're reading its first word.

5:49Bella: That's exactly the control they ran, and it's the move that makes the paper. They built a second — same task, but trained only on the surface word itself, the text features. That one sits at chance. Right around 0.5. So the word carries almost no signal. The hidden vector behind the same position carries up to 0.95. The model has decided, and the decision is invisible in what it actually wrote.

6:16Tyler: Which is a sharper claim than the shallow- one. It's not "the first reveals the answer." It's "the model's internal is set, and the visible output hasn't betrayed it yet."

6:29Bella: And they trace it back even further. The signal consolidates in a sharp spike right at the end of the prompt-reading phase — so effectively, the model makes up its mind while reading your request, and the thinking trace just inherits a decision that was already taken.

6:46Tyler: Okay, but a being accurate at the first tells me the decision is decodable early. It doesn't yet tell me thinking does nothing — maybe separability climbs even higher as the model reasons, and the first token is just a decent starting guess.

7:03Bella: That's the perfect setup for the paper's hero visual, and it's the opposite of what you'd guess. They compute separability — how cleanly the refuse and comply groups pull apart — at every single position along the thinking trace. If thinking were where the deciding happened, that curve should climb toward the end. Clarity building as the model reasons it out. Instead you get a valley. Watch the curve: it starts high at the very first — the decision is already clean and separable. Then it drops through the entire middle of the thinking. And it only climbs back up at the very end, as the model wraps up and states its verdict. High, low, high. A U.

7:46Tyler: And the valley is the tell. Imagine someone who decides in the first second of a meeting whether they'll approve a proposal — then spends ten minutes going "well, on one hand, on the other hand, let's weigh the pros and cons," language that makes their position look genuinely open — before restating the call they already made. Separability is high at the start because the decision is clear. It dips in the middle because all that muddies the water. It recovers at the end when they finally just say it.

8:22Bella: That's the shape, exactly. The model decides, writes a pile of words that obscure the decision, then re-states it. And one quick robustness note, because it's the natural worry — this isn't one fluky model. The valley reproduces in five more, including a model four times the size and two from a completely different lineage. So it's not a quirk of one family or one scale.

8:48Tyler: And to be fair to the deflationary read — that's the measure they chose deliberately. Not raw distance between the two groups, because raw distance can look big just because the representations are noisy and spread out. They normalize by how spread out each group is internally. So it's a signal-to-noise question: are these two outcomes actually distinguishable, not just far apart by accident. The valley survives that stricter test.

9:18Bella: So that's act one. The decision is legible before thinking starts, it's in the and not the words, and the thinking trace sits in a valley where the model is least committed-looking precisely when it's already committed.

9:35Tyler: Which brings the real question into focus, and it's a causal one. Decodable-early is a correlation: traces that start one way tend to end that way. It does not prove the thinking couldn't have changed the outcome. So here's the gear-shift — the next stretch is the paper's tightest piece of reasoning, two experiments that turn that correlation into something much closer to "the die is cast." It pays off in a single phrase the authors coin that I think is the best line in the paper.

10:08Bella: So how do you test whether thinking could have changed things, rather than just whether it lines up?

10:15Tyler: You it and let it run free. This is the continuation-variance experiment, and the analogy is clean. Take a movie 20% of the way in. Freeze it. Hand the remaining script to eight different writers to finish independently. If all eight converge on the same ending, that ending was essentially determined by the opening — the choices left were cosmetic. If they scatter to wildly different endings, the story was genuinely open.

10:45Bella: And they do exactly that with thinking traces. Truncate at the first 20%, then sample many independent completions from that prefix, and measure how often they disagree on the final refuse-or-comply verdict. Scaled so that a coin flip — total disagreement — scores 1.

11:04Tyler: And the disagreement is already near zero at 20%. Eight independent continuations, same start, almost never split on the verdict. And it only shrinks from there. The point of measuring variance instead of just comparing averages is that variance captures whether the outcome was up for grabs. A prefix that genuinely left the decision open would produce continuations that scatter. These don't scatter. The die is cast at 20% of the way through the thinking.

11:37Bella: They also just run the blunt version — thinking on versus thinking off. And between 70 and 97% of prompts get the exact same final label either way. No model improves both error rates. Turning thinking on just slides the model along that tradeoff — usually toward refusing more — rather than making it better at telling harmful from benign.

11:59Tyler: Now here's where I'd expect a listener to dig in, because I did. We've all seen these traces literally waver. "On one hand this could be harmful... but on the other hand, in an educational context..." That sure looks like deliberation in progress. How do you square visible wavering with "the decision was already made"?

12:21Bella: Right — if the text is genuinely going back and forth, isn't that the deliberation you're claiming doesn't happen?

12:29Tyler: That's the most intricate experiment in the paper, and the answer is a taxonomy. Picture a jury that has privately already voted to convict, but goes through the motions of debate for the record — raising objections, entertaining doubts — none of which changes a single vote. That's performative. Occasionally a real piece of evidence surfaces mid-debate that actually flips votes. That's meaningful. The question is which kind these oscillations are.

12:59Bella: And they test it directly. For each place the trace flips its stance, they truncate right before the flip and right after, sample a hundred completions at each point, and check: did the probability actually move in the direction the new stance implies? Or did the words change while the outcome stayed put?

13:20Tyler: So they're separating words from consequences. A sentence that says "but maybe this is fine" only counts as meaningful if it measurably raised the compliance rate. And the numbers — first, only 15 to 34% of traces oscillate in stance at all. Most don't even waver. Of the ones that do, somewhere between 71 and 92% are performative — the words swing, the outcome doesn't budge. And about three-quarters of all the oscillations happen when the decision is already saturated, locked at over 95% or under 5% one way.

13:56Bella: Which is what licenses the word the whole field needs to hear. The authors call it "." The model isn't deliberating about safety. It's generating fluent text that has the flavor of safety deliberation, sitting on top of a decision that's already been made.

14:15Tyler: And I want to be careful here, because the paper is careful here, and this is the part that makes it more than a debunking. The rare meaningful oscillations — the ones that do move the outcome — almost always push in the direction their words imply. 87 to 98% of the time. So real deliberation exists. The machinery works. It's just barely ever engaged. The desired behavior is rare, but it is present.

14:43Bella: That asymmetry is the whole soul of the paper. It's not "thinking is useless." It's "the deliberation engine is installed and idling." Which completely reframes the research problem — and we'll get there.

14:57Tyler: So , because we've moved fast: the decision is decodable before thinking starts, prefixes don't change the verdict, and even the visible back-and-forth is mostly theater on top of a settled outcome. If all of that is true, what happens to the defenses built on the assumption that the thinking trace is where you intervene?

15:21Bella: This is act three, and it's the part with the most direct consequences for anyone actually deploying these models. They take nine published safety defenses, reimplement them faithfully, and run them across four models. And the defenses split into two natural families. One: intervene at — inject safety reminders into the prompt, add reflection , trigger a safety primer when the model looks uncertain. Two: retrain the model on curated safety traces, or with and safety rewards.

15:58Tyler: And the cleanest way to see the result is back on that plot we set up — harmful compliance on one axis, over- on the other, the good corner at the bottom-left.

16:10Bella: No defended model moves toward the corner. Not one. Every method that lowers harmful compliance does it by raising over-. Every method that lowers over-refusal does it by raising harmful compliance. They all just slide along the same tradeoff line. Picture a stuck thermostat where the only knob trades heat for humidity — dry but freezing one way, warm but a swamp the other. You can turn it all day. It never reaches "comfortable and dry." Every defense is just a different setting on that one knob.

16:46Tyler: And the individual cases are almost funny. One defense on a model slashes harmful compliance — attack success drops from about 87 down to 31. Huge win, right? Except over- goes from 6 up to nearly 45. It made the model safe by making it paranoid. It refuses everything now.

17:07Bella: And one training-based defense on a different model goes the other direction — over- drops from 45 down to about 15, looks great, except harmful compliance nearly triples, from 26 up to 72. And one method, R1-ACT, actually raised harmful compliance on three of the four models. A defense that made things worse.

17:30Tyler: But the deepest finding in this section is the one that ties straight back to act two. The defenses don't just fail to help the tradeoff — they suppress the rare genuine deliberation. Remember, real meaningful oscillation already only shows up in a thin sliver of traces. These defenses cut the oscillation counts further in 22 of 24 cells they measured, by as much as 95% on one model.

17:58Bella: Which is the cruelest irony in the paper. The methods designed to make the model deliberate more carefully about safety actually flatten the little real deliberation that was there. They tell the model to think about safety, and it responds by generating more — more of the theater — while the genuine signal goes quiet.

18:21Tyler: So you're pushing on a lever that's mostly disconnected from the gearbox. The decision happens while reading the prompt; the defenses operate on the thinking trace; and the thinking trace was never where the decision lived.

18:37Bella: Now — this is where I want to hand it over, Tyler, because the paper makes a strong claim and the honest move is to ask how strong it's allowed to be.

18:47Tyler: Yeah. And there's a real load-bearing concern I keep coming back to, which is what "" even means in this setup. The refuse-or-comply labels don't come from some oracle of safety. They come from a vote of four — three of four have to agree. So when the first- hits 0.95, what it's predicting, precisely, is what those classifiers will say about the final answer. Not whether the answer was truly safe.

19:17Bella: And the surface-form control handles the trivial version of that — it's not just reading the word.

19:24Tyler: It handles the trivial version. It doesn't fully handle the deeper one. "The model's internal state aligns early with a -detectable outcome" is a slightly narrower claim than "the safety decision is already made." There's a circularity in there that the controls don't completely close.

19:43Bella: That's fair. What's the second one?

19:45Tyler: The second is the one a careful reviewer reaches for immediately. High accuracy on a pool that mixes easy and hard prompts could be carried by the easy ones. Most requests are unambiguous — "how do I build a bomb" gets an instant, correct, appropriate , and deciding early there isn't a failure, it's just being right fast. The worry is whether the early decision holds on the genuinely ambiguous prompts — the ones where deliberation should actually matter. And there's work on reasoning problems showing that this kind of early decodability weakens exactly when the problems get hard.

20:25Bella: Though the continuation-variance experiment is the real defense against that — it's not just correlation on easy cases, it's freezing prefixes and showing the outcome won't move.

20:36Tyler: It is the real defense, and it's strong. But I'd still want decodability and continuation variance broken out specifically on the hardest, most ambiguous slice — and that breakout isn't fully nailed down here. So the claim I'd actually sign is: on this benchmark mix, against these labels, the decision is overwhelmingly settled early and thinking rarely moves it. That's a sharp, important result. It's just a notch narrower than "deliberation is theater, full stop."

21:07Bella: And there's the defense-porting issue too, right?

21:10Tyler: There is. They reimplemented nine methods, some designed for specific model architectures, and had to make infrastructure adaptations to run them on models they weren't tuned for. They argue they preserved design intent — and I believe they tried — but porting a method onto a model it wasn't built for is a known way to understate its best case. That R1-ACT result, the defense that backfired? That's exactly the spot where you'd want to know whether the failure is the method or the port. So I'd hold the defense sweep as strong evidence that this family of approaches doesn't obviously work — not as proof any single one is worthless.

21:51Bella: I'll concede all of that. The labels are votes, the hard-prompt breakout would strengthen it, and the ports aren't the original authors' best efforts. What I don't think any of it touches is the spine: the valley reproduces across scale and lineage, the continuation variance is near zero at 20% across the board, and no defense reaches the corner. The direction of the result is robust even if the strongest wording isn't fully earned.

22:19Tyler: Agreed — and that's the right place to leave it. The conclusion bends; it doesn't break. The authors even note the result holds under more generous accounting, and that forcing models to think longer doesn't rescue it either.

22:34Bella: So step back. What's the actual takeaway here, the thing worth remembering a week from now? It isn't "thinking is fake" and it isn't a specific number. It's a shift in where the problem lives. For safety, today's mostly decide while reading the prompt and then generate fluent reasoning that rationalizes the call — . So reading a model's thoughtful-looking safety analysis is not evidence the analysis did anything. That window we thought we had into the model's mind is frosted glass.

23:08Tyler: And the constructive half — which I think is the real contribution — is that the deliberation machinery is installed and idling. Genuine deliberation exists in that thin sliver, and when it fires it pushes the right way almost every time. So the research question flips. It stops being "how do we the deliberation these models already do" and becomes "how do we build training objectives that actually reward real deliberation, instead of rewarding models for generating ." That's a reframe, not a solution — and the paper is honest that it's leaving that door open, not walking through it.

23:51Bella: So here's the question for you. If the safety decision is already made before the thinking starts, do we double down — build training that forces the deliberation to actually do the deciding? Or is intervening on the thinking trace fundamentally the wrong lever, and we should be working on the prompt-reading phase where the call really gets made? Pick a side — we read the comments.

24:17Tyler: The full annotated version of this episode is on paperdive.ai — every technical term tap-to-define, with links to the related papers grouped by theme, from to .

24:31Bella: Quick housekeeping: this script was written by Anthropic's , Tyler and I are both AI voices from Eleven Labs, and the producer isn't affiliated with either company. The paper is "Do Thinking Tokens Help with Safety?" out of Princeton, published June 23rd, 2026, and we recorded this two days later, on the 25th.

24:53Tyler: So next time a model shows you a careful little safety monologue before it answers — remember the valley. The verdict was in before the first word. The trick is figuring out how to make the thinking actually cast the vote.