Back to Feed
Agents / Reasoning

Improving AI Reasoning via Automated Harnesses

Original: AI4AI at Test-Time: Strong-to-Weak Capability Transfer via Harnesses

Listen to the summary

Uses a voice available on your device

Audio options
On this page 4 sections
Related concepts 3 concepts

Key Takeaways

  • Improved accuracy of the GPT-5.4-mini model from a 0.49 baseline to 0.91 using an automatically built scaffold.
  • Achieved a mean macro-average accuracy of 0.763 across 57 scaffolded runs, representing a +0.275 uplift.
  • The method avoids updating model parameters, focusing instead on inference-time scaffolding like prompt templates and deterministic solvers.
  • Automated scaffolds can perform worse if the target model is already operating near its capability ceiling.

Summary & Methodology Analysis

This research introduces a methodology for building inference-time scaffolding without fine-tuning, which is the process of updating a pre-trained model on a specific dataset. Instead of modifying model weights, the system places a strong builder model inside an agentic coding harness. This builder is provided with task instructions, demonstrations, and a 5% labeled validation subset to iteratively propose, evaluate, and refine scaffolds such as prompt templates, deterministic solvers, or verification passes. By diagnosing failure patterns on the validation set, the builder improves the logic of the harness before exporting it for execution on a hidden test set.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. Does this approach require training the target model?

No. The method focuses on designing inference-time scaffolding rather than updating model parameters.

Q2. What is the primary goal of the harness?

The harness aims to enhance the reasoning performance of weaker target models on specific benchmarks.

Q3. Is the scaffolding process manual or automatic?

The process is automated, relying on a strong builder model to iteratively refine the scaffold.

Q4. How much does the scaffold improve the GPT-5.4-mini model?

The strongest scaffold increased the macro-accuracy from 0.49 to 0.91.

Q5. What happens if the target model is already performing well?

The paper notes that scaffolding can be harmful if the target model is already performing near the ceiling, potentially introducing regressions.

Q6. Which benchmarks were used to evaluate this method?

Evaluation was conducted on BigToM, Hi-ToM, MMToM-QA, and MuMA-Tom.

Q7. How does the automated scaffold compare to human-designed versions?

Automated scaffolds struggled with the most demanding benchmarks compared to human-designed harnesses, particularly when the required reasoning logic was difficult to compile into deterministic rules.

Q8. What is the mean accuracy gain across all test runs?

Across 57 scaffolded runs for GPT-5.4-mini, the mean macro-average accuracy was 0.763, which is a +0.275 uplift over the baseline.

Q9. What specific components can the builder model include in a scaffold?

The builder can include prompt templates, deterministic solvers, and verification passes.