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

Combines sparse verifier outcomes with dense privileged‑hindsight token scoring to learn an outcome‑calibrated, normalized distribution over complete responses for on‑policy self‑improvement. Key features: sign‑gated guidance (retain/reverse/disable per verifier advantage), profiled trajectory balance with one log‑partition per rollout group, and explicit correction against false‑positive self‑guidance.

Selectively admits dense token-level teacher supervision only after a prompt-level verifier audit, routing prompts that fail the audit to verifier-grounded trajectory supervision instead — reducing harmful updates from confidently wrong teachers and improving teacher GPU utilization.

Wraps vision–language–action policies into executable skills that are runtime-validated, executed as bounded low-level action chunks, outcome-verified, and logged as structured trajectories. A fixed skill interface enables swapping or adapting low-level VLA policies and provides component-level supervision for training and optional online adaptation.