📄
Abstract - AgentFactory: A Self-Evolving Framework Through Executable Subagent Accumulation and Reuse
Building LLM-based agents has become increasingly important. Recent works on LLM-based agent self-evolution primarily record successful experiences as textual prompts or reflections, which cannot reliably guarantee efficient task re-execution in complex scenarios. We propose AgentFactory, a new self-evolution paradigm that preserves successful task solutions as executable subagent code rather than textual experience. Crucially, these subagents are continuously refined based on execution feedback, becoming increasingly robust and efficient as more tasks are encountered. Saved subagents are pure Python code with standardized documentation, enabling portability across any Python-capable system. We demonstrate that AgentFactory enables continuous capability accumulation: its library of executable subagents grows and improves over time, progressively reducing the effort required for similar tasks without manual intervention. Our implementation is open-sourced at this https URL, and our demonstration video is available at this https URL.
AgentFactory:一个通过可执行子智能体积累与重用的自进化框架 /
AgentFactory: A Self-Evolving Framework Through Executable Subagent Accumulation and Reuse
1️⃣ 一句话总结
这篇论文提出了一个名为AgentFactory的新型自进化框架,它通过将成功完成任务的方案保存为可执行、可复用的代码子智能体,而不是文本经验,使得智能体的能力能够像积木一样持续积累和优化,从而自动高效地处理越来越复杂的任务。