GenericAgent:基于上下文信息密度最大化的Token高效自我进化LLM智能体
阅读原文· arxiv.orgGenericAgent(GA)提出上下文信息密度最大化原则,解决长程LLM Agent中冗余信息挤占决策空间的瓶颈。系统通过最小原子工具集、分层按需记忆、自我进化机制(将验证轨迹转化为可复用SOP与可执行代码)及上下文截断压缩层,在有限上下文预算内维持关键决策信息。实验表明,GA在任务完成、工具效率及网页浏览等维度持续优于主流Agent系统,显著降低Token与交互消耗,并具备随时间持续进化的能力。
Long-horizon large language model (LLM) agents are fundamentally limited by context. As interactions become longer, tool descriptions, retrieved memories, and raw environmental feedback accumulate and push out the information needed for decision-making. At the same time, useful experience gained from tasks is often lost across episodes. We argue that long-horizon performance is determined not by context length, but by how much decision-relevant information is maintained within a finite context budget. We present GenericAgent (GA), a general-purpose, self-evolving LLM agent system built around a single principle: context information density maximization. GA implements this through four closely connected components: a minimal atomic tool set that keeps the interface simple, a hierarchical on-demand memory that only shows a small high-level view by default, a self-evolution mechanism that turns verified past trajectories into reusable SOPs and executable code, and a context truncation and compression layer that maintains information density during long executions. Across task completion, tool use efficiency, memory effectiveness, self-evolution, and web browsing, GA consistently outperforms leading agent systems while using significantly fewer tokens and interactions, and it continues to evolve over time. Project: https://github.com/lsdefine/GenericAgent