Skip to main content

Training LLM Agents for Spontaneous, Reward-Free Self-Evolution via World Knowledge Exploration

AuthorsQifan Zhang et al.
Year2026
HF Upvotes9
arXiv2604.18131
PDFDownload
HF PageView on Hugging Face

Abstract

Most agents today ``self-evolve'' by following rewards and rules defined by humans. However, this process remains fundamentally dependent on external supervision; without human guidance, the evolution stops. In this work, we train agents to possess an intrinsic meta-evolution capability to spontaneously learn about unseen environments prior to task execution. To instill this ability, we design an outcome-based reward mechanism that measures how much an agent's self-generated world knowledge improves its success rate on downstream tasks. This reward signal is used exclusively during the training phase to teach the model how to explore and summarize effectively. At inference time, the agent requires no external rewards or human instructions. It spontaneously performs native self-evolution to adapt to unknown environments using its internal parameters. When applied to Qwen3-30B and Seed-OSS-36B, this shift to native evolution yields a 20% performance increase on WebVoyager and WebWalker. Most strikingly, the generated world knowledge even enables a compact 14B Qwen3 model to outperform the unassisted Gemini-2.5-Flash, establishing a new paradigm for truly evolving agents.


Engineering Breakdown

Plain English

This paper addresses a fundamental limitation in agent training: most current approaches require continuous human supervision and external rewards to improve. The authors propose a method to train agents with intrinsic meta-evolution capabilities—the ability to autonomously explore and learn about new environments before executing tasks, without needing human guidance at inference time. They achieve this by using an outcome-based reward mechanism during training that measures how well an agent's self-generated world knowledge translates to task performance. At test time, the agent spontaneously evolves its understanding of unseen environments on its own, eliminating dependency on external reward signals or human instructions.

Core Technical Contribution

The core innovation is an outcome-based reward mechanism that decouples agent improvement from external human guidance. Rather than directly rewarding task completion or following human rules, the system rewards the agent for generating world knowledge that subsequently improves downstream task success—creating a meta-level learning signal. This approach teaches agents during training to explore and summarize effectively, but this supervision is removed at inference time, leaving the agent with an internalized capability to self-evolve. The technical novelty lies in making self-supervised environment understanding a learned behavior rather than a fixed algorithm, enabling true autonomous adaptation to unseen scenarios.

How It Works

The training pipeline operates in two phases with different reward structures. During training, the agent receives an outcome-based reward signal: it generates hypotheses or models about an unseen environment, applies these to downstream tasks, and the reward reflects the improvement between baseline performance and performance with the learned model. This creates a gradient signal that optimizes both the exploration strategy and the summarization of observations into useful world knowledge. The agent learns to allocate computational effort toward observations that matter for task performance and to compress those observations into compact, actionable representations. At inference time, the same learned policies activate automatically—the agent explores new environments and constructs internal models without any external reward signal, using only the self-evolved knowledge to guide task execution.

Production Impact

For teams deploying agents in dynamic environments, this eliminates a major operational bottleneck: the need to define rewards, rules, or feedback loops for each new domain. Instead of hand-tuning reward functions for new tasks or waiting for human supervisors to provide guidance, agents autonomously adapt on deployment. This reduces the feedback latency loop from weeks (gathering human annotations) to seconds (agent self-exploration at runtime). The trade-off is increased training complexity and computational cost—the agent must learn a meta-strategy for exploration and world modeling, which likely requires more diverse training environments and longer training runs than standard supervised learning. Integration into existing systems requires rearchitecting how inference-time constraints are enforced; agents now need time and compute budgets to self-evolve before task execution, similar to how test-time compute scaling works in current LLM systems.

Limitations and When Not to Use This

The paper does not address how to set exploration budgets at inference time—agents with unlimited exploration compute may never execute their primary task. It assumes that self-generated world knowledge reliably transfers to downstream tasks, which may not hold in domains where task-relevant knowledge is deceptive or misleading (e.g., adversarial or safety-critical scenarios). The approach likely requires rich, observable environments where hypotheses can be quickly validated; it may fail in partially observable or high-dimensional environments where ground truth is inaccessible. The paper does not discuss sample efficiency or convergence guarantees—it's unclear whether this method works with small inference budgets or how performance degrades as exploration time decreases.

Research Context

This work builds on recent trends in autonomous agent research and meta-learning, extending ideas from curriculum learning and self-supervised representation learning to the agent domain. It responds to limitations of RLHF-style approaches where agents remain passive without human feedback, moving toward more self-directed adaptation. The research direction aligns with broader interests in emergent capabilities and autonomous systems that can generalize to novel environments—echoing work in few-shot learning and in-context adaptation in large language models. This could influence how future agents are trained and deployed, shifting the burden of task specification from humans to learned meta-strategies, though key benchmarks and comparative results against baseline approaches are not detailed in the abstract.


:::tip Subscribe Get weekly breakdowns of papers like this in AI Letters - the newsletter for engineers building production AI systems. :::


Back to Research Lab → · Subscribe to AI Letters →

© 2026 EngineersOfAI. All rights reserved.