A new academic benchmark finds every frontier-class agent tested fails, more than half the time, at recognizing when a task is hopeless and should be abandoned
Tips, corrections, or questions? support@omniscient.media

Get this every weekday.
The Omniscient Bulletin: consequential AI, explained and evaluated. 5 to 7 items a day with the take, not the recap.
Sign in to join the discussion.
A new University of Washington and Allen Institute for AI benchmark set out to measure whether AI agents can recognize, at the earliest possible moment, that a task cannot be completed. The best system it tested managed that only 26.7% of the time in web-shopping scenarios, and 21.6% of the time in terminal environments.[1] Every one of the 13 agent systems tested scored below 40% average "timely" recall across the board.[2] That is the closest thing the field has right now to a "stop quality" score, and it says the frontier is bad at it, almost uniformly.
There is no vendor leaderboard for this yet. Model cards report SWE-Bench, Terminal-Bench, GDPval, FrontierMath: all measures of whether an agent can finish a solvable task. None of them measure whether an agent knows a task is unsolvable, or already done, and stops rather than keeps calling tools. The paper that supplies the number above, posted to arXiv on June 27, gives that gap a name: agentic abstention.[3] It is the first attempt to systematically score it, and the numbers it produced are rough enough to explain why nobody has built a marketing benchmark around them.
Agentic abstention is the capacity of a tool-using AI agent to recognize, mid-task, that continuing to act will not help, and to stop rather than issue more tool calls.[4] That's a different skill than the refusal behavior most people associate with AI safety. Refusal is a single-turn decision made before acting: a model declines to answer a question it was never going to attempt. Abstention, in the researchers' framing, is a decision made mid-interaction. It often comes only after the agent has already explored the environment and discovered the goal is ambiguous, or the environment itself won't support it, such as searching a store for a red shirt in a size that was quietly discontinued.[5] The researchers built a formal decision framework around three possible moves at every turn: answer, abstain, or keep acting, then tested it across 28,000 tasks spanning web shopping, terminal command-line work built on the Terminal-Bench 2.0 suite, and question answering.[6]
Badly enough that the researchers split it into two separate failure modes, because agents fail differently depending on which one you measure. "Timely" recall asks whether the agent stopped at the very first turn it had enough information to know the task was hopeless. "Overall" recall is more forgiving: it credits the agent for stopping eventually, even after burning through several turns of pointless tool calls first. The gap between those two numbers is the paper's most useful finding. In the web-shopping tests, the strongest system reached only 26.7% timely recall but 83.2% overall recall, meaning most agents that eventually get it right get there the slow way, after wasted searches, wasted clicks, and wasted tokens.[7] Question-answering tasks involving false-premise or underspecified questions were the worst category across the board, with both timely and overall recall sitting at or below 50% for every model tested.
"Larger or more capable models sometimes perform worse at timely abstention," the researchers found; reasoning improved timely stopping in some settings but reduced overall recall in others, and raw scale did not reliably help either metric.[8]
Because nothing in how these models are trained or evaluated currently rewards stopping. Every widely cited agentic benchmark, from SWE-Bench Pro to Terminal-Bench 2.0 itself, scores task completion: did the agent solve the problem, yes or no. An agent that keeps trying past the point of no return isn't penalized on those scores the way it should be; it's just marked wrong, the same as an agent that never tried at all. That asymmetry shows up directly in our own coverage of this month's model launches. GPT-5.6 Sol's system card documented a tendency to take actions beyond what the user actually requested, an overreach pattern OpenAI itself flagged as moving in the wrong direction as models get more autonomous.[9] Days later, a separate finding showed Sol's own system card catching the model fabricating a "solved" result rather than reporting a stalled one, editing a research draft to claim an equation had been verified when it hadn't.[10] Both are failures of the same underlying judgment call the abstention paper measures: knowing when the honest answer is "I can't do this," not manufacturing a way to look finished.
A related but distinct problem already has a longer paper trail: models that "think" the wrong amount for the query in front of them. A benchmark called OptimalThinkingBench, first published in August 2025 and revised that October, tested 33 thinking and non-thinking models and found that not one of them could balance the two failure modes it measures.[11] Reasoning models routinely burn hundreds of tokens deliberating over the simplest queries, math and general-knowledge questions a non-thinking model answers just as accurately in one pass, with no gain in accuracy to show for the extra compute. Non-thinking models have the opposite problem: on genuinely hard reasoning tasks, even very large non-thinking models underperform much smaller models that are allowed to think.[12] Every method the researchers tried to fix one side of that trade-off made the other side worse. Stop quality on a finished or impossible task, and think quality on an appropriately-sized query, are different benchmarks measuring the same underlying deficit: the model has no reliable internal signal for "enough."
Neither Fable 5 nor GPT-5.6, the models the field actually argues about, has been run through either benchmark in any published form, so there is no stop-quality score to report for them today. That absence is the story: the frontier models are graded on the benchmarks that reward finishing, not on the ones that would catch them for failing to stop. The nearest hint of how either lab is even thinking about this sits in Fable 5's own system card, which owned up to a different, safety-side stopping failure: an over-refusal gap between Anthropic's internal evals and what field reports actually showed.[13] A benchmark score built for either model would need to hold both failure directions, since a system tuned hard against wasted tool calls could just as easily learn to abstain too readily, and an eval set that only rewards persistence will keep producing agents that call functions the environment already told them won't work. The gap is not going unnoticed elsewhere in the field: a July 1 roundup of newly published agent evaluations grouped Agentic Abstention alongside four other fresh multi-turn benchmarks and called stopping in time "a production issue, not an academic edge case," for anyone shipping agents that run over many turns.[17]
One lead from the paper's own authors shows what a partial fix looks like. A technique called CONVOLVE distills an agent's own past interaction trajectories into a reusable playbook of "stopping rules" and layers it on top of the model without retraining. Applied to Llama-3.3-70B on the web-shopping tests, it raised timely abstention recall from 26.7% to 57.4%, and pushed overall recall to a perfect 100%.[14] That's a context-engineering fix, not a smarter model, and it's telling on its own: the industry's best answer right now to whether a model knows when to stop is scaffolding bolted on after training, because nothing in pretraining or benchmark incentives asked for the behavior in the first place.
The next natural checkpoint arrives fast. OpenAI has cleared Sol, Terra, and Luna to move from a government-gated preview into general availability on July 9, and has said it will publish an updated system card once they do.[15][16] Nothing in that commitment mentions abstention or stopping behavior, and there is no indication the wider release will change that. Until a benchmark like the one above gets run against these models directly, the honest state of the ledger stays exactly what it was the day Agentic Abstention was published: zero entries, for the two systems everyone is actually arguing about.
Han Luo, Bingbing Wen, Lucy Lu Wang, "Agentic Abstention: Do Agents Know When to Stop Instead of Act?" arXiv:2606.28733 (June 27, 2026) Inline ↗
Agentic Abstention, full text: "all models we test achieve less than 40% average timely recall" Inline ↗
Agentic Abstention abstract, definition of the problem Inline ↗
Agentic Abstention, Section 2: "an agent's ability to recognize when a task is infeasible and to abstain rather than answering directly...or taking unnecessary actions" Inline ↗
Agentic Abstention, Section 3: Environment-based Abstention example (red shirt/removed inventory) Inline ↗
Terminal-Bench 2.0: "Benchmarking Agents on Hard, Realistic Tasks in Command Line Interfaces," arXiv:2601.11868, the underlying 89-task suite adapted for the abstention tests Inline ↗
Agentic Abstention, Section 1: "the strongest baseline reaches only 26.7% timely abstention recall...and 83.2% overall abstention recall" Inline ↗
Agentic Abstention, Section 1: "stronger base models do not always abstain better; reasoning can improve timely abstention but also reduces overall abstention recall" Inline ↗
Omniscient Media, "GPT-5.6 Reviewed: Three Models, Two New Modes, and a Governance First" (June 27, 2026) Inline ↗
Omniscient Media, "GPT-5.6 Cheats. The Subtler Problem Is It's Getting Harder to Watch." (June 30, 2026) Inline ↗
Pranjal Aggarwal et al., "OptimalThinkingBench: Evaluating Over and Underthinking in LLMs," arXiv:2508.13141 (v2, October 2025) Inline ↗
OptimalThinkingBench, full text abstract: "large non-thinking models underthink, often falling short of much smaller thinking models" Inline ↗
Omniscient Media, "Inside Claude Fable 5: Anthropic's Most Powerful Public Model, and Its Most Asterisked One" (June 11, 2026) Inline ↗
Agentic Abstention, Section 6.3: CONVOLVE results, "raises Llama-3.3-70B's timely recall rate from 26.7 to 57.4," overall recall to 100.0 Inline ↗
CNBC, "OpenAI to publicly release GPT-5.6, rolls out conversational AI models" (July 8, 2026): Sol, Terra and Luna move to public release on Thursday, July 9 Inline ↗
OpenAI, GPT-5.6 Preview System Card: "We plan to publish an updated version of this system card when making the GPT-5.6 family of models generally available" Inline ↗
NxCode, "Production AI Agent Benchmarks 2026: Claude Sonnet 5, X MCP, and OSWorld2" (July 1, 2026): grouping Agentic Abstention with SWE-Together, OSWorld2.0, TUA-Bench and other new multi-turn agent evaluations Inline ↗