Google Research提出RRSI:给智能体harness递归自我改进加正则化
RRSI: Regularized Recursive Self-Improvement of Agent Harnesses
Google开源了RRSI:给自动进化智能体harness的方法加正则化,分布外基准还能涨4.7分,还省30%的token。
Google Research发布RRSI方法,针对智能体harness(提示词、控制流、工具、记忆、上下文管理)的递归自我改进(RSI)易过拟合训练任务的问题,引入正则化约束。提案器(proposer)采用时间退火预算,限制单个候选可打包的修改数量,并基于进化历史鼓励未探索的轨迹。选择器(selector)配备critic筛选偏向特定基准的提案、pruner剔除过小、过贵或不再有用的修改。在覆盖编码、智能体工作区和工程设计的8个基准上,RRSI在进化所用划分上最多提升14.1分,在5个分布外基准上最多提升4.7分,harness比未正则化版本少用30%的policy tokens。代码已在github.com/google-research/rrsi开源。
RRSI: Regularized Recursive Self-Improvement of Agent Harnesses
An LLM agent's capability is largely magnified by its harness, namely the prompts, control flow, tooling, memory, and context management surrounding the frozen backbone model. Recent methods increasingly automate this process by iteratively proposing and selecting component-wise edits of an agent harness, practically establishing a form of recursive self-improvement (RSI) at the agent-system level. However, such recursive evolution may overfit by memorizing the training tasks, showing large in-distribution gains that shrink or even vanish on out-of-distribution benchmarks. We introduce Regularized Recursive Self-Improvement of Agent Harnesses (RRSI), which incorporates the principles of regularizations into harness self-improvement by constraining the evolution candidate proposal and selection. The proposer operates with a temporally annealed budget, limiting how many edits a candidate can bundle, and it encourages unexplored trajectories based on evolution history. The selector is equipped with a critic and a pruner: the critic screens benchmark-specific proposals, while the pruner, removes changes that are too small, too expensive, or no longer useful. Together these constraints favor reusable agent mechanisms over benchmark-specific ones or even noises. Across eight benchmarks spanning coding, agentic workspace and engineering design tasks, RRSI gains up to 14.1 points on the split it evolves against and up to 4.7 points on the five out-of-distribution benchmarks, while producing a harness that runs on 30% fewer policy tokens than the unregularized evolution. Code is available at https://github.com/google-research/rrsi and project page is https://regularized-rsi.com/.