AIAny
Icon for item

Role-Agent: Bootstrapping LLM Agents via Dual-Role Evolution

Lets a single LLM simultaneously act as agent and environment to bootstrap co-evolutional training — using state-prediction process rewards (World-In-Agent) and failure-mode retrieval (Agent-In-World) to reshape training data; reports ~4% average benchmark gain.

Introduction

Most LLM-agent work treats the environment as fixed and the agent as the only learning component. Role-Agent flips that assumption: the same LLM alternates roles as both agent and environment so training signals and data distribution co-evolve, producing targeted practice and improved generalization.

Key Findings
  • Dual-role co-evolution: combining World-In-Agent (WIA) — where the model predicts next states and receives a process reward from alignment — with Agent-In-World (AIW) — where the model analyzes failures and retrieves similar tasks for retraining — changes both objective and data distribution during training.
  • Empirical gains: across multiple benchmarks the method yields an average improvement of ~4% over strong baselines, indicating better robustness on complex, multi-step tasks.
  • Practical mechanism: WIA encourages environment-aware planning by rewarding accurate state prediction; AIW focuses learning on systematic failure modes via targeted task retrieval and resampling.
Who it's for and trade-offs

Great fit if you research LLM-based agents, automated curriculum methods, or want a lightweight approach to make agents more environment-aware without building separate simulators. Look elsewhere if you require provably accurate ground-truth environments (risk of compounding model errors), need fully reproducible external simulators, or must avoid extra compute from repeated self-generated episodes. The approach can amplify hallucination-like prediction errors if the base LLM is weak, so gains depend on model quality and validation on real environments.

Where it fits

Positioned between self-play / imagination-based planning and traditional RL: instead of an external simulator or separate environment model, Role-Agent uses the LLM itself to produce and critique trajectories, making it attractive for rapid prototyping of agent behaviors and curriculum generation when real environments are costly.

How it works (brief)
  • World-In-Agent (WIA): after each action the LLM predicts the consequent state; alignment between predicted and actual states is converted to a process reward that shapes subsequent reasoning.
  • Agent-In-World (AIW): failed trajectories are analyzed to extract failure modes; the system retrieves tasks with similar patterns and prioritizes them for retraining, effectively reshaping the training distribution toward problematic cases.

Information

  • Websitearxiv.org
  • AuthorsXucong Wang, Ziyu Ma, Shidong Yang, Tongwen Huang, Pengkun Wang, Yong Wang, Xiangxiang Chu
  • Published date2026/06/09

More Items

Provides a curriculum-aligned knowledge graph extracted from Chinese K–12 textbooks and accompanying benchmarks and training data to evaluate and train educational LLMs. Releases a 23,640-question multi-select benchmark and a 7,335-sample graph-guided training corpus with multimodal VQA pairs and the full construction pipeline.

Alternates targeted research and constraint-wise audits to recursively improve long-horizon answers: an inner loop gathers evidence and drafts solutions, an outer loop audits unresolved claims and launches focused follow-ups. Trains 4B dense and 122B-A10B MoE agents with long-horizon RL and agentic mid-training, outperforming comparable-scale baselines on multi-step research benchmarks.

Proposes Riemannian Isometric Policy Optimization (RIPO) to fix exploration collapse in PPO-style RL for LLMs by aligning policy updates with the policy manifold's Riemannian geometry, improving exploration–exploitation balance and optimization stability across competition benchmarks.