A confidence estimation approach that reads an LLM's own step-by-step reasoning trace — mining epistemic signals such as hedging cues, uncertainty expressions, self-assessment, and internal consistency — to infer how confident the model really is in its answer, rather than relying solely on final-answer logits or a single verbalized confidence number.
Knowing when a large language model is likely to be right is essential for deploying LLMs in high-stakes settings, for deciding when to abstain, and for routing hard cases to humans or stronger models. Two families of confidence signals dominate current practice: token-level probabilities (softmax logits over the final answer) and verbalized confidence (asking the model to state a percentage or a phrase such as "I'm fairly sure"). Both are convenient, but both are known to be poorly calibrated — logits are distorted by surface form and length, while verbalized numbers tend to be systematically overconfident and coarse.
With the rise of reasoning-oriented LLMs, answers are increasingly produced through an explicit chain of intermediate steps. This reasoning trace is far richer than the final token distribution: as the model works through a problem it naturally leaves behind traces of doubt and commitment — hedging ("this might be", "I'm not certain"), self-corrections and backtracking, competing hypotheses that are raised and discarded, and moments where multiple steps converge on the same conclusion. These epistemic signals reflect the model's evolving internal state about the problem, yet standard confidence methods that look only at the final answer discard them entirely.
Key Insight: A model's reasoning trace carries abundant epistemic signals — hedging language, self-corrections, hypothesis switches, and convergence of intermediate conclusions — that are strongly predictive of answer correctness. Standard confidence methods, which read only final-answer logits or a single verbalized number, throw this evidence away. Treating the reasoning trace itself as a source of confidence evidence offers a more faithful and interpretable estimate of how sure the model actually is.
This work builds on the lab's line of research on trustworthy confidence estimation, including ADVICE (Answer-Dependent Verbalized Confidence Estimation, ACL 2026), which improves calibration by grounding verbalized confidence in the specific answer produced. Where ADVICE conditions confidence on the final answer, this study looks one level deeper — at the reasoning process that generated that answer — and asks whether the epistemic texture of the trace itself is a usable, and better calibrated, confidence signal.
The core idea is to treat confidence estimation as a two-stage pipeline over the reasoning trace: first surface the epistemic signals that the model emits while reasoning, then aggregate them into a single confidence estimate for the final answer.
Design Principles:
As LLMs increasingly answer questions by reasoning out loud, the reasoning trace becomes one of the most information-rich artifacts a model produces — yet confidence estimation has largely ignored it. This work reframes the trace as evidence: the way a model hedges, second-guesses, and converges while thinking is itself a window into how sure it is. Reading confidence from these epistemic signals yields estimates that are more faithful to the model's actual reasoning and, crucially, interpretable — a low-confidence flag can be explained rather than merely reported.
Practically, well-grounded confidence is the foundation of safe LLM deployment: it determines when to trust an answer, when to abstain, and when to route a case to a human or a stronger model. By extracting confidence from the reasoning process rather than from final-answer probabilities alone, the approach targets exactly the failure mode that plagues conventional methods — confident-sounding but wrong answers whose doubt was visible in the reasoning but discarded at the output.
The study also extends the lab's broader agenda on trustworthy confidence estimation. Alongside ADVICE's answer-dependent verbalized confidence, it pushes the estimation target inward — from the final answer to the epistemic content of the reasoning that produced it — suggesting that the richest confidence signals may live inside the trace, not at its end.