Guozhen AIGlobal AI field notes and model intelligence

Realtime AI News

IBM Research ships agent consistency tooling that halves the Pass^k gap

A new IBM Research post on the Hugging Face blog argues that average success rates hide how unstable agents are: a GPT-4.1 ReAct agent scored 77.4% Mean@5 on AppWorld but only 53.0% Pass^5. The team added a Consistency Analyzer and consistency guidelines to the open-source ALTK-Evolve toolkit, cutting that gap from 24.4 points to 12.0.

Published
IBM Research 开源智能体一致性工具,把 Pass^k 差距砍掉一半
Image source: huggingface.co

An agent that performs well in rehearsal can take a different path during the live demo and fail the same task. IBM Research notes in a Hugging Face blog post that this is embarrassing onstage but a reliability problem in production: a workflow that succeeded once may fail the next time a user makes the same request.

The team quantified the problem on AppWorld. A ReAct agent backed by GPT-4.1 posted a Mean@5 of 77.4% across five runs, but succeeded in all five runs on only 53.0% of tasks, a 24.4-point consistency gap. Nearly a quarter of the benchmark consists of tasks the agent can sometimes solve and sometimes cannot, with nothing about the task changing between runs. For mission-critical work such as reconciling a financial transaction or checking a contract for an obligation, that instability is a showstopper rather than a user-experience detail.

The root of the gap is how agents are measured. Mean@k answers how good an agent is on average; it does not answer whether the same question will work again. That requires Pass^k, the fraction of tasks where the agent succeeds on all k runs. The post stresses that Pass^k is not the familiar Pass@k, which is optimistic and asks whether at least one of k attempts succeeded, and always satisfies Pass^k <= Mean@k <= Pass@k.

Why does temperature 0.0 not fix it? Every agent decision comes out of a probability distribution, and the shape of that distribution decides how much noise it takes to change the outcome. A sharp distribution puts most of its mass on one token and produces the same choice run after run; a flat one spreads comparable mass across near-tied tokens, making the winner close to a coin flip. Because a trajectory chains dozens of decisions, a small per-step chance of flipping compounds, and platform-side effects such as GPU floating-point non-associativity and request batching are enough to reorder a near-tie.

The fix is a two-stage pipeline built on ALTK-Evolve. First, the Consistency Analyzer takes one recorded trajectory and replays each decision step through controlled resampling to measure how much the model's output actually varies at that point. Concretely that is one additional model call per decision step, requesting five completions at once against the already-recorded context, done offline with no new tool calls, no new environment interactions and no second end-to-end rollout. The output is a per-step consistency scorecard that pinpoints which decisions are likely to flip next time.

Second, those signals are written into consistency guidelines, a new guideline type in altk-evolve that is injected back at inference time. The point is that the analyzer targets instability rather than failure, so it catches steps the agent happened to get right this time but could easily get wrong next time.

On AppWorld's test_normal set, with 168 tasks, a GPT-4.1 ReAct agent, guidelines mined from a single baseline trajectory per task and five fresh test runs, aggregate Pass^5 rose from 53.0% to 69.0% while Mean@5 rose from 77.4% to 81.0%, narrowing the gap from 24.4 points to 12.0. Medium-difficulty tasks gained 22.9 points and hard tasks 14.3 points, with easy tasks up 12.2 points, and Mean@5 did not drop at any difficulty level.

The guidelines also transfer. Applied to a related task in the same AppWorld scenario, Pass^5 still improved by 13.0 points, only three points below the same-task figure. On the weaker gpt-oss-120b model, same-task Pass^5 rose from 10.1% to 16.1%, and the similar-task generalization gain of 8.7 points was actually larger, suggesting the guidelines capture reusable failure patterns rather than the specifics of one trajectory.

The tooling is now open source: the ALTK-Evolve repository includes the Consistency Analyzer and consistency-guideline generation used in these experiments, with the full methodology in an arXiv technical report. Consistency is becoming a purchasing criterion alongside accuracy for teams putting agents into production.

Why it matters

This work shifts agent evaluation from average success rates to repeatability, and ships open-source tooling plus a concrete metric to do it. If Pass^k becomes a standard reporting convention, vendors that only publish mean accuracy will have to re-prove their reliability.

IBMAgent开源
Back to realtime news

Nearby Updates

All

09/16, 00:00

AI for everyone in every language: Google pushes past text translation

Google says its technologies and products now power everyday interactions in more than 300 languages spoken by over 7 billion people, and that its language research has moved from translating text to models that process audio and context directly. The post details Gemini 3.5 Live Translate and Transcribe, the on-device TranslateGemma models and new open language datasets.

09/16, 00:02

AI models are chatting in a surreal new dialect, and it is complicating oversight

Researchers at New York frontier lab Emergence found that autonomous AI agents from several major labs invented new vocabulary and shared meanings within days of being asked to cooperate in experimental societies. Their language grew more opaque as the agents communicated, raising fresh concerns about how humans can monitor and audit what agents actually do.

09/16, 00:40

AI Agent Hiring Platform Jack & Jill Raises $40M Series A

Jack & Jill has raised a $40 million Series A for its AI agent hiring platform, which matches candidates directly with employers. The round is a bet that recruiting can be one of the first white-collar workflows agents take over end to end.

09/16, 00:55

Nvidia puts tokens per megawatt at the center of its AI factory pitch

At the AI Infra Summit in Santa Clara, Nvidia's Ian Buck made AI factory efficiency the focus of his infrastructure keynote, unveiling validated DSX MaxLPS results with Lambda and grid-flexibility work with Emerald AI. Lambda reported 24% higher cluster-wide token throughput inside the same power budget, while grid signals from Silicon Valley Power were answered in under a minute.