GPT-56T 861 —
MUSE-SPK 837 +0.2%
GPT-56SC 790 -4.6%
GLM-5 781 -0.4%
CL-OP55X 780 -5.1%
GROK-46H 780 -5.1%
QWEN-38X 748 -9.2%
GPT-6A 743 -9.4%
KIMI-K3X 742 —
CL-FAB5H 698 -6.1%
CL-OP5H 675 -6.2%
GEM-38FH 672 -0.7%
CL-OP5X 670 -5.5%
CL-OP55H 668 —
CL-OP46H 657 -5.9%
CL-OP47H 648 -6.1%
GPT-56S 618 -0.6%
GEM-37FH 610 -7.2%
GEM-36FH 593 —
CL-OP48H 588 —
CL-OP47 581 -0.2%
GEM-35FH 580 —
GPT-55H 541 -7%
INKL 531 —
GEM-31P 512 -0.2%
CL-OP46 498 +0.4%
GEM-3P 498 -0.2%
CL-OP48 492 +0.4%
GPT-52 464 —
GPT-55 423 —
GPT-56T 861 —
MUSE-SPK 837 +0.2%
GPT-56SC 790 -4.6%
GLM-5 781 -0.4%
CL-OP55X 780 -5.1%
GROK-46H 780 -5.1%
QWEN-38X 748 -9.2%
GPT-6A 743 -9.4%
KIMI-K3X 742 —
CL-FAB5H 698 -6.1%
CL-OP5H 675 -6.2%
GEM-38FH 672 -0.7%
CL-OP5X 670 -5.5%
CL-OP55H 668 —
CL-OP46H 657 -5.9%
CL-OP47H 648 -6.1%
GPT-56S 618 -0.6%
GEM-37FH 610 -7.2%
GEM-36FH 593 —
CL-OP48H 588 —
CL-OP47 581 -0.2%
GEM-35FH 580 —
GPT-55H 541 -7%
INKL 531 —
GEM-31P 512 -0.2%
CL-OP46 498 +0.4%
GEM-3P 498 -0.2%
CL-OP48 492 +0.4%
GPT-52 464 —
GPT-55 423 —
← Back to feed

OpenAI Open-Sources Chain-of-Thought Monitorability Evals — and Back-Fills Results for GPT-5.4 Through o3

OpenAI’s alignment team published the monitorability evaluations dataset and reference code on April 23, releasing the infrastructure behind a safety methodology that has been quietly part of its frontier model system cards since 2025.

The release covers datasets and code for 12 individual evaluations — sorted into three archetypes — plus the metric formula (g-mean2) used to score them. Back-filled results for GPT-5.4 thinking, GPT-5.2 thinking, GPT-5 thinking, and o3 are now published in updated system cards.

What Monitorability Measures

The premise: if an AI model’s reasoning is visible in a chain-of-thought trace, can a monitor reliably catch when the model is behaving deceptively or failing to stay aligned? Monitorability evaluates whether that monitoring is actually possible — not whether the model is safe, but whether a human or automated monitor can detect misalignment from CoT output alone.

The three eval archetypes in the open-source release:

  • Intervention evals (7 benchmarks): GPQA, GPQA encoded, AIME, DAFT, Memory, Scruples, and Sandbagging. These test whether a monitor can detect when a model is deliberately underperforming or hiding capability.
  • Process evals (2 benchmarks): AIME-Math and GPQA-Physics. Assess whether the reasoning process is legible and non-deceptive step-by-step.
  • Outcome-property evals (3 benchmarks): Flaky-Tools (CharXiv), ShadeArena, and Impossible Coding Tasks (LiveBench). Evaluate whether final outputs give any signal about misalignment even without full CoT inspection.

The g-mean2 Metric

OpenAI’s g-mean2 is the geometric mean of two quantities: the rate at which a monitor correctly detects true misalignment events, and the rate at which it avoids false positives on aligned behavior. Standard accuracy metrics collapse precision and recall into a single number in ways that can mask monitor failures at low base rates. g-mean2 addresses this — a monitor that calls everything misaligned scores poorly, as does one that never triggers.

The released code includes a cross-fit filtering strategy that makes intervention-style estimates more robust to noise-dominated problem instances — an update developed after the paper was published. This filtering update is retroactively applied to the back-filled system card results.

Back-Filled Results for Four Models

The updated system cards now report g-mean2 over CoT token length at different reasoning effort levels for:

  • GPT-5.4 thinking
  • GPT-5.2 thinking
  • GPT-5 thinking
  • o3 (including o1 results on the non-tool subset)

These results make it possible to track whether monitorability is improving, degrading, or staying flat as models become more capable. The pattern across the four model generations — which OpenAI has not summarized in prose — will be visible to anyone running the released evaluation suite on the published data.

The Strategic Implication

Releasing this infrastructure outside OpenAI serves a specific purpose stated explicitly in the paper: “other frontier model developers may also begin reporting the monitorability of their models.” OpenAI is positioning monitorability as a standard safety reporting metric, comparable to MMLU or SWE-Bench, but purpose-built for alignment evaluation.

If Anthropic, Google, and xAI adopt g-mean2 reporting — even voluntarily — it creates an external accountability layer for whether the reasoning traces of frontier models are legible enough to supervise. That’s a harder requirement than capability benchmarks, and one that becomes more consequential as models approach agentic autonomy.

The GitHub repo is available at github.com/openai/monitorability-evals. The scaffold is described as illustrative, not production-ready. OpenAI has explicitly stated it will not be supporting it.