BriefPulse Practical AI · Working notes on AI you can actually use. RSS · BriefPulse network
BriefPulse Practical AI

What changed in AI, what it is useful for, and what you can do with it.

16 September 2026

Report

An agent that passed 77.4% of runs passed all five on only 53% of tasks. IBM's new diagnostic targets that gap.

IBM Research published an article on Hugging Face introducing "consistency guidelines" in ALTK-Evolve and a diagnostic called the Consistency Analyzer, reporting that the approach halved a measured run-to-run consistency gap without costing anything in average accuracy. The evidence is one article that points to a technical report on arXiv; no independent replication appears in the material here.

An agent that passed 77.4% of runs passed all five on only 53% of tasks. IBM's new diagnostic targets that gap.:
Original graphic. Every figure in it is stated in the reporting; the sources are listed below this article.

The number the post leads with is a gap, not a score. A ReAct agent using GPT-4.1 on AppWorld's test_normal split succeeded on 77.4% of runs across five repetitions — but it succeeded in all five runs for only 53.0% of tasks, a 24.4-point consistency gap. The authors say that on hard tasks the gap reaches 30 points, and they frame the stakes for mission-critical work such as reconciling a financial transaction or checking a contract for an obligation, where a workflow that succeeded once may fail the next time a user makes the same request.

The post separates two metrics. Mean@k runs a benchmark k times and averages the pass rate; it answers how good the agent is on average and is what a leaderboard figure like "77% accurate" usually means. Pass^k is the fraction of tasks where the agent succeeds on all k runs, and it answers the question a real user has — will this exact request work again? The authors state plainly that Pass^k is not Pass@k.

The Consistency Analyzer is the diagnostic. It resamples an agent's own recorded trajectory to find flip-prone decision points: steps where the model was one token-sample away from doing something different. The post says it needs one trace and no ground truth, and that it resamples each decision point in that trace with a single call requesting k completions (k=5 by default) rather than re-running the task end to end.

Consistency guidelines are a new guideline type in altk-evolve, built on top of that analyzer and sitting alongside the earlier ALTK-Evolve approach, which distills an agent's past trajectories into reusable guidelines injected at inference time. The post reports that turning the diagnosis into guidelines halves the gap, from 24.4pp to 12.0pp, with same-task Pass⁵ up 16.0pp and similar-task Pass⁵ up 13.0pp, and that this costs nothing in average accuracy. It also states that the guidelines generalize rather than patching a single trajectory.

For anyone shipping a tool-calling agent, the consequence is that an average success rate is a statement about the fleet of attempts, not a guarantee for the attempt in front of a user. The post's own method is cheap to imitate at small scale: take a task your agent handles, run the same request five times, and count how often all five runs pass — that count is the Pass^k number that averages hide.

Our reading

This matters because the desk's readers are routinely handed single-number success rates for agents and asked to trust them in workflows where a repeat failure is expensive — contract checks, transaction reconciliation, any step a user re-runs. A tool that finds flip-prone decision points from one existing trace, with no ground truth and without re-running the whole task, is a cheaper reliability…

What to do or watch

Run one task your agent handles five times and record how often all five attempts pass; that all-pass count is the number the post argues benchmarks leave out. Watch for the arXiv technical report it cites to see whether the method, and the guideline transfer, hold on traces other than the ones in the paper.

Source details and supporting facts

Each line is stated by the page named above it.

Stated by Hugging Face

  • A ReAct agent using GPT-4.1 on AppWorld test_normal succeeded on 77.4% of runs across five repetitions.
  • The same agent succeeded in all five runs for only 53.0% of tasks, a 24.4-point consistency gap.
  • On hard tasks the consistency gap reaches 30 points.
  • The Consistency Analyzer needs one trace and no ground truth, and resamples each decision point in that trace with a single call requesting k completions (k=5 by default) rather than re-running the task end to end.
  • Turning the diagnosis into guidelines halves the gap from 24.4pp to 12.0pp, with same-task Pass⁵ up 16.0pp and similar-task up 13.0pp, without costing anything in average accuracy.
  • Consistency guidelines are a new guideline type in altk-evolve, built on top of the Consistency Analyzer.
  • Pass^k is the fraction of tasks where the agent succeeds on all k runs, and it is not Pass@k.

Sources

  1. Hugging FaceText stored 16 September 2026

How this story was checked. Written from the 1 page listed above, stored 16 September 2026; claims checked against that stored text on 16 September 2026.

What that means
  • 7 of 7 reported statements were confirmed against the page that carries them; the rest were removed rather than published.
  • Figures in the text were required to appear in the stored source text: yes. Identifiers: yes.
  • The check reads stored text only: no claim rests on a fresh look that did not happen.
  • Where the reporting was silent, the text says so instead of filling the gap.

More from Practical AI