A paper posted to arXiv on August 6 by Boning Li, Yu Chen, and Longbo Huang introduces AV-AIVAT, an eval harness that combines the Action-Informed Value Assessment Tool (AIVAT) with Confidence Sequences for agent benchmarking. At a target precision of ±1 Big Blind and 95% confidence, raw game outcomes require a median 74× more episodes than AIVAT-corrected outcomes to reach a certified stopping decision. The experiment spanned 15 LLM agent configurations across 71,439 paired Heads-Up No-Limit Hold'em (HUNL) hands.

The core problem is structural. Agent evals in stochastic environments need enough episodes for skill to exceed variance, but the required sample size is unknown in advance. Teams either pick a fixed budget and run to completion—paying inference cost long past clarity—or peek at a running confidence interval and stop when it looks good. The second approach is invalid: stopping when a standard confidence interval appears significant inflates the Type-I error rate. Standard CIs only guarantee coverage at a pre-specified sample size.

AIVAT, introduced at AAAI 2018 by Burch, Schmid, Moravcik, and Bowling, attacks the variance side. It applies conditional mean-zero corrections that exploit both chance-event variance and player action variance, using a heuristic value function for game states. In the original poker benchmarks, AIVAT cut standard deviation by 85% and required 44× fewer games for statistical equivalence. The new paper shows a median 54× variance reduction across the 15 LLM configurations, the direct driver of the 74× episode-count saving.

MetricAIVAT — AAAI 2018AV-AIVAT — 2025
Variance reduction~44× (equiv. 85% SD cut)Median 54× across 15 LLM configs
Episode savings vs. raw outcomes44× fewer gamesMedian 74× fewer episodes
Certified stopping criterionNoneConfidence Sequence (AsympCS or EB-CS)
Experiment scopeOriginal poker benchmarks15 LLM configs, 71,439 HUNL hands
Stopping validity guaranteeNot provided≥95% coverage at any stopping time
FIG. 02 Original AIVAT (AAAI 2018) vs. AV-AIVAT (2025) — key evaluation metrics — Li et al., arXiv 2025; Burch et al., AAAI 2018

AV-AIVAT adds the stopping criterion by wrapping AIVAT corrections inside a Confidence Sequence—a sequence of interval estimates that maintains coverage uniformly over time, regardless of when the evaluator stops. Two variants are offered. The Asymptotic CS (AsympCS), which produced the 74× result, is non-parametric and computationally efficient; it provides asymptotic validity for fast production screening. The Empirical-Bernstein CS (EB-CS) provides exact finite-sample certification but requires an independently derived bound on corrected payoffs. The paper establishes this bound structurally for Leduc hold'em. In HUNL runs, EB-CS costs a median 1.37× more hands than AsympCS. Finite-sample auditability carries overhead but remains practical.

PropertyAsympCS (Asymptotic CS)EB-CS (Empirical-Bernstein CS)
Statistical validityAsymptoticExact finite-sample
Payoff bound requiredNoYes — must be derived per task
Computational costLow — non-parametricHigher — requires bound derivation
Median episode overhead vs. AsympCSBaseline (1×)1.37×
Primary use caseFast production screeningAuditable finite-sample certification
FIG. 03 AsympCS vs. EB-CS — two Confidence Sequence variants in AV-AIVAT — Li et al., arXiv 2025

A critical implementation constraint applies to both: the online value model computing AIVAT corrections trains only on past games. No game scores its own correction. This prevents data leakage that would invalidate the statistical guarantee. Any team porting this to an eval harness must enforce this at the data pipeline level.

AV-AIVAT pipeline: online value model trains only on past episodes to prevent data leakage, then AIVAT-corrected payoffs feed a Confidence Sequence for certified stopping.
FIG. 04 AV-AIVAT pipeline: online value model trains only on past episodes to prevent data leakage, then AIVAT-corrected payoffs feed a Confidence Sequence for certified stopping. — Li et al., arXiv 2025

The less-publicized win is auditability. AV-AIVAT records the stopping time and all corrections applied at that moment. The full verdict can be handed to a third party for replication without additional data. The evaluation becomes a signed artifact, not a number pulled from a dashboard. For teams building evals that must survive external review or regulatory scrutiny, this matters more than the 74× headline.

The hard constraint is scope. The statistical framework assumes imperfect-information game structure—specifically, access to player strategies or a heuristic value function for state correction. Extending to open-domain agentic tasks where no value function exists and outcomes are categorical or binary requires rethinking how AIVAT corrections are constructed. The EB-CS bound also must be established per task. For HUNL, the authors derived it from the game's bet cap, a structurally motivated ceiling. For general agent benchmarks, that bound is not given.

For architects building eval infrastructure: if your agent evaluation uses repeated stochastic rollouts with per-episode cost—model inference, human annotation, or API calls—variance-reduced estimators combined with confidence sequences provide the correct statistical foundation. Fixed budgets waste money. Naive stopping invalidates the confidence interval. AV-AIVAT's two-mode design provides a clean interface: fast asymptotic screening via AsympCS, and auditable finite-sample certification via EB-CS. Choose the guarantee you need before writing rollout loops.