paper-with-me

Papers

TTHE: Test-Time Harness Evolution

2026-07-09 · Jun Nie, Yonggang Zhang, Jun Song, Qianshu Cai, Dahai Yu, Yike Guo, Xinmei Tian, Bo Han arxiv

The behavior of an LLM agent is determined not only by the underlying model, but also by its harness: the executable program that constructs context, invokes tools, verifies intermediate results, and recovers from failures. Existing approaches optimize such harnesses before deployment, searching training or development data for a fixed agent workflow that is then frozen at test time. This limits adaptation when the test distribution, failure modes, or tool interactions differ from those seen during development. We ask whether the harness can instead be optimized during evaluation itself, using only the unlabeled execution traces the agent produces on the test inputs. We introduce Test-Time Harness Evolution (TTHE), which treats the executable harness as the state of test-time adaptation. During evaluation, TTHE maintains a population of candidate harnesses and refines them through an agentic proposer that reasons over their execution traces, without gold labels or task-specific supervision; a judge then commits an improved harness from execution-derived proxy signals, and the selected program persists to govern subsequent inputs. Crucially, TTHE does not update model weights, require gold labels, or train a separate adaptation model: solver, proposers, and judge are different roles and harnesses around the same frozen LLM, so all adaptation occurs through changes to the surrounding program. Across text-to-SQL, competitive programming, software engineering, data-science coding, and agentic tool-use tasks, TTHE improves fixed ReAct-style baseline harnesses, yielding persistent, inspectable improvements rather than a pre-searched workflow or per-query retries. These results recast test-time adaptation for LLM agents as evolution over executable control programs and identify execution-derived proxy reliability as a central challenge for robust unsupervised agent improvement.

📄 PDF Abstract BibTeX arXiv:2607.08124

Code (1)

arxivsub/arXivSub_daily_arxiv ★ 2

Tasks

Test-time Adaptation

Similar Papers 제목 키워드 기반

Rethinking the Evaluation of Harness Evolution for Agents

2026-07-14 · Yike Wang, Huaisheng Zhu, Zhengyu Hu, Yige Yuan 외 arxiv

We revisit the evaluation of automatic harness evolution for LLM agents. Existing harness evolution methods use unit test cases to search for harness configurations and then report final performance on the same public be…

HELIX: Model-Harness Co-evolution for Recursive Self-Improvement

2026-08-14 · Tianyu Fan, Chao Huang arxiv

Scaling agent capability has largely focused on improving the model, yet an interactive agent acts through a runtime harness that mediates context, tools, control flow, and stopping. The harness shapes both what a model …

Code Repair

EVOHARNESSBENCH: Can Your Agents Keep Pace with an Evolving Harness?

2026-09-03 · Zixuan Ke, Vaidehi Patil, Haizhou Shi, Yang Li 외 hf

Modern LLM-based agents operate through a harness of tools, reusable skills, and specialist agents that shapes what they observe and what they can do. In practice, this harness continually evolves as new capabilities are…

Verify Smarter, Evolve Further: Efficient Harness Evolution through Behavior-Aware Verification

2026-08-27 · Jinghan Xu, Yikai Zhang, Aili Chen, Weiyuan Li 외 arxiv

Agent harnesses shape how language-model agents use instructions, tools, and runtime components, but adapting these harnesses requires costly verification. Existing propose-and-verify methods typically score every candid…

Hierarchical Self-Improvement: A Framework for Task-Specific Evolvable Agent Harnesses

2026-08-09 · Tailin Zhou hf

Modern LLM agents are often improved by modifying prompts, tools, or workflows manually, while the executable scaffold surrounding the model---the harness---is typically treated as a fixed artifact after deployment. This…