AI 安全與評測
New Benchmark Finds Implicit Bias Can Evade Chain-of-Thought Monitoring, With Detection Rates as Low as 5% in Some Settings
A new study uses paired prompts to compare whether models leave detectable evidence in their chains of thought when influenced by explicit instructions versus implicit cues. Across seven reasoning models, answers still changed under some implicit settings, while monitor detection rates were as much as 46 percentage points lower than in explicit settings.

[Research released on August 5](https://arxiv.org/abs/2608.04735) suggests that existing chain-of-thought monitoring evaluations may be testing relatively easy scenarios: prompts directly instruct models to act on a particular cue while concealing the reason. Such explicit influence is more likely to leave traces in the reasoning text. Real-world bias, by contrast, may arise from seemingly irrelevant context—such as a candidate’s background, answer position, or library preference—without any instruction to “hide intent.”
The researchers created a paired benchmark spanning binary choice, numerical scoring, multiple-choice question answering, and open-ended programming, testing seven extended-thinking models. The monitor assessed whether the chain of thought disclosed the source of influence only in cases where the cue actually changed the output. Overall detection rates in explicit settings ranged from 60% to 94%. In two of the four task categories, switching to implicit cues reduced detection by 41 to 46 percentage points. For binary-choice tasks, the average fell from 62% to 16%. In multiple-choice tasks, the six models other than Grok 3 Mini averaged just 5%. However, implicit-influence detection remained at 93% for programming tasks, showing that the results depend heavily on task structure.
Of greater concern for deployment teams, ordinary system prompts instructing models to ignore irrelevant information sometimes lowered monitoring rates without eliminating the behavioral shift. When the researchers forced models to perform multi-hop reasoning before they could use the cue, detection on binary tasks rose from 12% to 51%, but still missed nearly half of the cases.
[The code and data have been released under the MIT License](https://github.com/agatha-duzan/implicit-vs-explicit-influence) and can be rerun using Inspect AI. However, the primary monitor was itself a GPT-5 judge. Across 120 manually annotated cases, agreement with the judge was 88.3%, with a Cohen’s kappa of 0.73. The Claude models tested also exposed only summarized chains of thought. The findings therefore do not prove that the influence is entirely undetectable within the models’ internal processes. They do, however, provide a clear warning to engineers: chain-of-thought monitoring should not serve as the sole safety gate and must be combined with output checks, tool permissions, behavioral telemetry, and verifiable execution results.