index.md

November 14, 2025 ยท View on GitHub

title: Welcome to AgentEvolver!

๐Ÿ’ก What is AgentEvolver?

AgentEvolver is an end-to-end, self-evolving training framework that unifies self-questioning, self-navigating, and self-attributing into a cohesive system. It empowers agents to autonomously improve their capabilities, aiming for efficient, cost-effective, and continuous capability evolution.

โœจ Why AgentEvolver

๐Ÿง  AgentEvolver provides three Self-Evolving Mechanisms from Environment to Policy:

  • Automatic Task Generation (Self-Questioning) โ€“ Explore the environment and autonomously create diverse tasks, eliminating costly manual dataset construction.
  • Experience-guided Exploration (Self-Navigating) โ€“ Summarize and reuse cross-task experience, guiding higher-quality rollouts and improving exploration efficiency.
  • Attribution-based Credit Assignment (Self-Attributing) โ€“ Process long trajectories to uncover the causal contribution of intermediate steps, enabling fine-grained and efficient policy optimization.

AgentEvolver Flowchart

๐Ÿ”ง Architecture Design

AgentEvolver adopts a service-oriented dataflow architecture, seamlessly integrating environment sandboxes, LLMs, and experience management into modular services.

system framework

  • Environment Compatibility โ€“ Standardized interfaces for seamless integration with a wide range of external environments and tool APIs.
  • Flexible Context Manager โ€“ Built-in utilities for managing multi-turn contexts and complex interaction logic, supporting diverse deployment scenarios.
  • Modular & Extensible Architecture โ€“ Decoupled components allow easy customization, secondary development, and future algorithm upgrades.

๐ŸŒŸ Benchmark Performance

Performance comparison on the AppWorld and BFCL-v3 benchmarks. AgentEvolver achieves superior results while using substantially fewer parameters than larger baseline models.

Benchmark Performance

Performance on two benchmarks. Columns show avg@8 and best@8 for each benchmark, plus their averages (Avg.). All values are in percent (%). Bolded numbers highlight the best results.

ModelParamsAppWorldBFCL v3
avg@8best@8avg@8best@8
Qwen2.5-7B7B1.85.629.842.4
+Questioning7B23.240.349.060.6
+Questioning&Navigating7B26.343.153.361.0
+Questioning&Attributing7B25.743.756.865.3
AgentEvolver (overall)7B32.451.257.969.0
Qwen2.5-14B14B18.031.441.654.1
+Questioning14B44.365.560.372.1
+Questioning&Navigating14B45.465.362.874.5
+Questioning&Attributing14B47.865.664.976.3
AgentEvolver (overall)14B48.769.466.576.7

๐Ÿš€ Quick Start

Step 1. Basic Dependency Installation

Make sure you have conda and cuda toolkit installed.

Then, set up the training environment by running the script

bash install.sh

Step 2. Setup Env-Service (Appworld as example)

The script below sets up an environment for appworld.

cd env_service/environments/appworld && bash setup.sh

Step 3. Setup ReMe (Optional)

Set up the ReMe for experience management by running the script:

bash external/reme/install_reme.sh

For more detailed installation, please refer to ReMe.

Step 4. Begin Training! ๐Ÿš€ ๐Ÿš€

Copy the example.env file to .env and modify the parameters, including your API key, conda path.

Using AgentEvolver launcher to start environment, log dashboard and training process altogether.

# minimal example without ReMe (using built-in datasets within environments).
python launcher.py --conf examples/train-basic.yaml --with-appworld

# full example with ReMe (questioning + navigating + attributing)
python launcher.py --conf examples/self-question-nav-attr.yaml --with-appworld

๐Ÿงฉ Advanced Usage

๐Ÿ”ง Manual Execution

For users requiring fine-grained control over the training pipeline, we provide standalone execution scripts:

  • bash examples/run_basic.sh - Execute basic RL pipeline with GRPO using built-in datasets within environments.
  • bash examples/run_overall.sh - Run the complete self-evolving AgentEvolver pipeline with fully customizable configurations.

Refer to the QuickStart for detailed usage instructions and configuration parameters.

๐Ÿ“„ Documentation

For detailed usage and customization, please refer to the following guidelines:

  • Environment Service - Set up and manage environment instances, integrate custom environments
  • Task Manager - Explore environments, generate synthetic tasks, and curate training data for agent evolution
  • Experience Manager - Configure experience pool management and self-navigating mechanisms
  • Advantage Processor - Implement self-attributing mechanisms with ADCA-GRPO for fine-grained credit assignment

For API documentation and more details, visit our documentation site.

๐Ÿ™ Acknowledgements

This project builds upon the excellent work of several open-source projects:

  • ReMe - for experience summarization and management;
  • veRL - for distributed RL training;
  • mkdocs - for documentation.