Project Results

Experiment Results

The main signal is already visible because some test-time techniques improve quality, but the gain has to be read together with time, tokens, and run stability.

Result summary

GAIA is a benchmark of real-world assistant tasks that require multi-step reasoning, tool use, and web browsing, with short exact answers that make scoring unambiguous. Tasks come in three difficulty levels; this project uses Level 1 and the harder Level 2.

The experiment checks whether agent behavior on GAIA can be improved with additional inference-time compute: Best-of-N, voting, judge/verification, context management, and budget-aware techniques. Current setup: GAIA Level 1 (53 tasks) and the harder Level 2 (86 tasks), Qwen 3.5 9B, and the project launcher infrastructure. Pooling both levels lets us test statistical significance.

0.453Level 1 baseline accuracy over all 53 GAIA tasks.
0.265Level 2 baseline accuracy over the harder 86-task set.
509kAverage baseline token usage per task (Level 1).
+0.14Best Level 1 accuracy gain: BUDGET_TRACKER.
p=0.04BUDGET_TRACKER is the only technique significant when pooling Level 1 + Level 2 (Δ+0.10).
+0.06STRUCTURED_NOTES improves accuracy while reducing cost.

Baseline run

The baseline was evaluated on all 53 GAIA Level 1 tasks. Mean accuracy was 0.453, mean runtime was 4.5 minutes per task, and mean token usage was 509k tokens per task.

Baseline on 53 tasks: accuracy, time, and token usage per task
Baseline over all 53 tasks with correctness, time, and token usage. Dashed lines show mean values.

Level 1 (53 tasks)

The comparison shows that test-time techniques are not uniformly beneficial. The best gains came from BUDGET_TRACKER, VOI, HIAGENT, STRUCTURED_NOTES, and BAVT. SHORT_MAK and ACON were neutral. ADAPTIVE_BON, CONTEXT_COMPACTION, SELF_CONSISTENCY, RESUM, and RANKED_VOTING reduced accuracy in the current setup.

TechniqueAvailable tasksAccuracy deltaObservation
BUDGET_TRACKER36+0.14Best accuracy gain among tested techniques.
VOI39+0.10Strong gain with noticeable time overhead.
HIAGENT53+0.08Positive effect on the full task set.
STRUCTURED_NOTES52+0.06Improves accuracy while reducing mean time and staying close to baseline token usage.
BAVT38+0.03Small gain with extra cost.
SHORT_MAK, ACON39+0.00Neutral accuracy effect.
ADAPTIVE_BON, CONTEXT_COMPACTION, SELF_CONSISTENCY, RESUM, RANKED_VOTING29-53-0.03 to -0.13Reduced accuracy in the current configuration.
Feature vs baseline accuracy
Feature vs baseline accuracy with green bars for improvement, red bars for regressions, and gray bars for neutral effects.

Cost

Cost was compared along two axes: time per task and token usage. Baseline means were 4.5 minutes and 509k tokens per task. ACON, SHORT_MAK, HIAGENT, and STRUCTURED_NOTES were faster on average. RESUM and VOI used fewer tokens than baseline, while STRUCTURED_NOTES stayed near baseline token usage.

Cost distribution per feature across all tasks
Time and token distributions per technique. The red dashed line is the baseline mean.
Cost per feature
Mean cost per feature by time per task and token usage per task relative to baseline.

Real usage

The efficiency quadrant shows the trade-off between accuracy delta and overhead. STRUCTURED_NOTES is a strong lightweight technique: it improves accuracy without extra token/time budget. HIAGENT also improves accuracy with low overhead. BUDGET_TRACKER gives the largest gain but requires additional compute.

Feature efficiency quadrant
Feature Efficiency Quadrant with accuracy gain vs token/time overhead.

Level 2 (86 tasks)

We reran the feature-vs-baseline analysis on the harder GAIA Level 2 set (86 tasks, baseline accuracy 0.265). On matched tasks, only BUDGET_TRACKER (+0.08) and HIAGENT (+0.06) improve over baseline, while VOI, SHORT_MAK, and ADAPTIVE_BON regress — a stricter picture than Level 1.

Level 2 feature vs baseline accuracy on 86 GAIA tasks
Level 2 (86 GAIA tasks): feature vs baseline accuracy on matched tasks. Green bars improve, red bars regress; baseline accuracy is 0.265.

Pooling Level 1 and Level 2 into paired per-task outcomes lets us test significance with McNemar's exact test and a bootstrap 95% CI. Only BUDGET_TRACKER survives: +0.10 accuracy at p=0.04.

Pooled Level 1 and Level 2 accuracy delta with 95% CI and significance
Pooled Level 1 + Level 2 accuracy delta with 95% bootstrap CIs and McNemar significance. Only BUDGET_TRACKER is significant at p<0.05 (Δ+0.10).

Limitations

  • Limited compute budget.
  • Level 2 coverage is still partial (about 82–85 of 86 tasks per feature) and spans fewer techniques than Level 1.
  • A single small model, Qwen 3.5 9B, was used.
  • Only one dataset is considered.
  • Even pooled across Level 1 and Level 2, only BUDGET_TRACKER reaches p<0.05 (McNemar); other effects stay within noise.

Conclusions

Technique selection can increase benchmark accuracy, and the effect holds up under scrutiny for at least one technique. This suggests that naive scaling-law estimates for agentic inference may be systematically low if they ignore inference-time interventions.

  • BUDGET_TRACKER is the standout: +0.14 on Level 1, +0.08 on the harder Level 2, and the only technique that stays significant when pooling both levels (Δ+0.10, McNemar p=0.04 over 114 paired tasks).
  • HIAGENT is the most consistent runner-up, improving on both Level 1 (+0.08) and Level 2 (+0.06), though pooled it does not reach significance (p=0.15).
  • STRUCTURED_NOTES stays practical on Level 1: +0.06 accuracy while reducing mean time and staying close to baseline token usage.
  • Level 2 is stricter — VOI, SHORT_MAK, and ADAPTIVE_BON that looked neutral or positive on Level 1 regress on the harder set, and naive SELF_CONSISTENCY and RANKED_VOTING remain weak.
  • Pooled across 1003 paired tasks, most gains fall within the 95% bootstrap CI, so single-level results should be read as directional rather than proven.
  • Next steps include testing technique combinations, widening Level 2 coverage, writing a LessWrong post, and extracting reusable components: gaia-experiment-launcher and tts-proxy-framework.