READY
The economic metric

The Cost of Reliable AI

Enterprise readiness is not maximal autonomy, it is the minimum total cost of hitting a reliability target. An agent self-rates its confidence, classifies the case, and escalates to a human when it is not confident enough. The metric is the model cost plus the human oversight cost it still requires.

The explorer below is anchored to measured results from CliniCARE-Bench and PSEBench. Choose a benchmark to compare each arm's measured model cost and fraction of cases sent for human review at a given reliability target.

Benchmark
$ per reviewed case
* capped at human ceiling = 0.90

total cost = model_cost + (review_fraction × human_cost)

$0$6$12$18$24$3070%75%80%85%89%Target reliabilityTotal cost per case ($)claude-opus5claude-sonnet5codex-gpt54codex-gpt54minicodex-gpt55codex-gpt56lunacodex-gpt56solgemini-31progemini-35flashgemini-36flashopencode-ds4flashopencode-ds4proopencode-glm52opencode-gptoss120bopencode-kimik2p7opencode-minimaxm3opencode-museglimmer30bopencode-nemotron3ultraopencode-qwen37Y=85.0%
claude-opus5
claude-sonnet5
codex-gpt54
codex-gpt54mini
codex-gpt55
codex-gpt56luna
codex-gpt56sol
gemini-31pro
gemini-35flash
gemini-36flash
opencode-ds4flash
opencode-ds4pro
opencode-glm52
opencode-gptoss120b
opencode-kimik2p7
opencode-minimaxm3
opencode-museglimmer30b
opencode-nemotron3ultra
opencode-qwen37

Leaderboard

CliniCARE-Bench at 85.0% target reliability

RankModelModel costTarget reliabilityReview fractionAchievablea_HTotal cost
1claude-sonnet5$0.923285.0%35.20%Yes0.90$9.72
2codex-gpt55$1.509785.0%33.20%Yes0.90$9.81
3claude-opus5$2.048885.0%36.40%Yes0.90$11.15
4opencode-glm52$1.080085.0%43.07%Yes0.90$11.85
5codex-gpt56sol$1.118085.0%45.20%Yes0.90$12.42
6codex-gpt56luna$0.208785.0%57.20%Yes0.90$14.51
7codex-gpt54mini$0.203485.0%58.93%Yes0.90$14.94
8opencode-minimaxm3$0.390085.0%58.67%Yes0.90$15.06
9opencode-qwen37$0.190085.0%59.87%Yes0.90$15.16
10codex-gpt54$0.726385.0%57.73%Yes0.90$15.16
11opencode-ds4pro$1.110085.0%66.27%Yes0.90$17.68
12opencode-kimik2p7$3.270085.0%68.67%Yes0.90$20.44
13opencode-nemotron3ultra$0.536285.0%81.47%Yes0.90$20.90
14opencode-museglimmer30b$0.861385.0%80.27%Yes0.90$20.93
15opencode-ds4flash$0.120085.0%84.67%Yes0.90$21.29
16opencode-gptoss120b$0.100985.0%91.87%Yes0.90$23.07
17gemini-31pro$0.949585.0%100.00%Yes0.90$25.95
18gemini-36flash$1.148685.0%100.00%Yes0.90$26.15
19gemini-35flash$1.166385.0%100.00%Yes0.90$26.17

Model cost, target reliability, and review fraction are the exact values from the CliniCARE-Bench CSV. Total cost applies the selected human review cost.

How the metric is defined

For each case the agent emits a raw confidence and a verdict; a calibration map turns the raw confidence into c ≈ P(correct). With an escalation threshold τ, the agent answers autonomously when c ≥ τ and escalates to a human otherwise. Writing φ(τ) for coverage (autonomy rate), α(τ)=E[c | c≥τ] for selective accuracy, and a_H for human accuracy on escalated cases:

System reliability   R(τ) = φ(τ)·α(τ) + (1 − φ(τ))·a_H
Cost-optimal gate    τ*   = min { τ : R(τ) ≥ Y }
Cost per case        c_unit = k_m + k_h · escalation(τ*)

Model cost k_m is paid on every case; human cost k_h only on escalated cases. Because the system is more reliable when borderline cases go to the (more accurate) human, raising τ raises reliability, so we pick the smallest threshold that still clears the target Y, which is also the cheapest. Two boundaries frame the curve:

  • Floor. If base accuracy already clears Y, no escalation is needed and c_unit = k_m.
  • Ceiling. You can never exceed R = a_H, to promise 98% reliability, the human review process must itself clear 98%.

What the curve shows

Each arm's model cost is fixed, while its measured review fraction changes with the reliability target. Raising the human-review cost therefore leaves the reliability points unchanged and reprices the oversight required at each point. This makes the framework's thesis directly measurable: as agent quality improves, the required human-oversight cost declines.

Where calibration and the escalate class enter

Two error types drive the cost. Under-escalation, the model confidently answers a case it gets wrong, or one a human expert says it should have flagged, is a reliability failure that forces τ* higher and raises cost everywhere. Over-escalation, deferring cases it would have gotten right, is wasted human cost. Good calibration collapses both: genuinely insufficient-evidence cases (the Escalate / Uncertain class) naturally receive low confidence and route to a human through the same gate. Calibration error therefore acts as a safety margin, you must set τ above its nominal value to stay robust, and that margin has a price.

Data & calculation. Each plotted point comes from the supplied CliniCARE-Bench or PSEBench frontier table. PSEBench offers task-specific human accuracy assumptions of a_H = 0.90 and a_H = 0.98; unreachable targets are omitted. Total cost per case is model_cost + review_fraction × human_cost; the default human-review cost is $25 per reviewed case.
The step before the gate

Calibration, by example

Everything above assumes the agent's confidence means something, that c = g(s) is the probability it's right. That property doesn't come for free; it's produced by a calibration map fit on held-out data. Here it is on a synthetic overconfident model.

0.50.50.60.60.70.70.80.80.90.91.01.0perfectly calibratedClaimed confidenceEmpirical accuracyraw confidenceafter calibration map

A calibration map g rewrites a model's raw self-confidence s into a number that matches how often it's actually right: g(s) ≈ P(correct | s). Fit it on held-out (confidence, was-it-correct) data.

0.106raw ECE
0.042after map
raw struthg(s)
0.550.360.36
0.650.480.47
0.750.610.60
0.850.760.75
0.950.920.92

Synthetic overconfident model (truth: a claim of s is right with probability s^1.7). The map pulls the dots onto the diagonal and cuts calibration error ~3×. This g(s) is what the escalation gate g(s) ≥ τ consumes — and what PSEBench's M7 score proxies.