← Back to feed
2026-06-29agentsreasoning

Self-Evolving World Models for LLM Agent Planning

Xuan Zhang, Wenxuan Zhang, See-Kiong Ng, Yang Deng

PDF preview for Self-Evolving World Models for LLM Agent Planning
Read on arXiv →

Key claim

WorldEvolver enhances predictive accuracy and decision-making in AI.

WorldEvolver significantly improves the accuracy of predictions made by long-horizon LLM agents, leading to better decision-making in complex environments. By revising its context at deployment time, it enhances both predictive fidelity and planning performance, outperforming existing world model baselines.

In plain English

Imagine you're building an AI that needs to make decisions based on predictions about the future. The challenge is that these predictions can often be unreliable, leading to poor choices. For instance, if the AI predicts that a certain action will lead to a positive outcome but it turns out to be wrong, it could make a decision that results in failure. This is a common issue in AI systems that rely on foresight, and it's known as unreliable foresight. When the AI misuses these predictions, it can degrade its overall performance and decision-making capabilities.

Currently, many systems try to address this by using static models that don't adapt to new information or context. This can lead to problems when the environment changes or when the AI encounters situations it hasn't seen before. The result is that the AI might ignore valuable information or make decisions based on outdated or incorrect predictions. This is what's called context drift, where the model's understanding of the world doesn't keep up with reality.

WorldEvolver offers a fresh approach to these challenges. Instead of relying on a fixed model, it introduces a self-evolving framework that can adjust its context in real-time while keeping the core model parameters unchanged. It does this through three key components: Episodic Memory, which learns from real actions; Semantic Memory, which identifies useful rules from past mistakes; and Selective Foresight, which filters out low-confidence predictions. This means that the AI can continuously refine its understanding and improve its decision-making process.

In practical terms, this leads to a significant boost in the accuracy of predictions and the success rate of the AI's actions. By allowing the model to revise its context based on new experiences, WorldEvolver not only enhances predictive fidelity but also improves planning performance, making it a valuable tool for anyone building long-horizon decision-making systems.

Novelty
8.0/10

WorldEvolver introduces a novel framework for self-evolving world models that enhances predictive accuracy and decision-making.

Reliability
8.0/10

The evaluation on multiple benchmarks and the integration of various memory modules support the claims made.

Deep reliability assessment

The methodology supports that deployment-time context revision can improve next-observation prediction and sometimes improve agent success in two controlled text-game environments with frozen agents and models. The broader claim that this is a generally reliable recipe for deployed world models is overextended: the paper does not test web, code, robotics, multimodal settings, or cases where confidence estimates are unavailable or poorly calibrated.

Reproducibility

Partial. The evaluation environments and benchmarks are public: ALFWorld, ScienceWorld, Word2World, and AgentBoard are cited as available research benchmarks, and the paper says prompts and implementation details are in appendices, but no code repository is mentioned in the provided text.

Discussion questions

  1. 1.The paper's core design choice is to revise external memory and prompt context rather than update model weights. For production agents, would you prefer this auditable but context-window-consuming approach, or would you rather risk lightweight fine-tuning or model editing for more compact adaptation?
  2. 2.Selective Foresight depends on token-level confidence correlating with prediction correctness. Has anyone here seen confidence or logprob signals fail badly in agent systems, and would that make you distrust this filtering mechanism?
  3. 3.The strongest gains are in ALFWorld and ScienceWorld, both text environments with relatively structured transitions. Does that eval setting tell us enough about real agent deployments like browser automation, code agents, or ops workflows, where observations are messier and state is partially hidden?
  4. 4.RAWM-ϕ and ITP-I often underperform the no-world-model baseline, while WORLDEVOLVER does better. Is that a fair baseline comparison, or should the real baseline be a simpler memory-augmented ReAct agent that retrieves past transitions directly without pretending to predict the future?
  5. 5.Planning success improves modestly in some cells and even remains below the no-world-model baseline for GPT-5.4-mini in parts of Table 2. What level of success-rate gain would make you add this extra world-model loop to an agent system you were shipping?

Key figure

Figure 1 contrasts frozen, offline-tuned, and self-evolving world models, showing WORLDEVOLVER as a frozen model-agent setup that updates deployment-time memory using mismatches between predicted and observed outcomes.

Benchmark results

AgentBoard / ALFWorldsuccess rate: 26.12vs ReAct without World Model using Gemma-4-26B-A4B+2.24 percentage points
AgentBoard / ScienceWorldsuccess rate: 52.22vs ReAct without World Model using Gemma-4-26B-A4B+7.78 percentage points
AgentBoard / ALFWorldsuccess rate: 50.75vs ReAct without World Model using GPT-5.4-mini+1.50 percentage points
AgentBoard / ScienceWorldsuccess rate: 63.33vs RAWM-ϕ using GPT-5.4-mini with ReAct+5.55 percentage points
AgentBoard / ALFWorldsuccess rate: 27.61vs ReflAct without World Model using Gemma-4-26B-A4B+1.49 percentage points
AgentBoard / ScienceWorldsuccess rate: 50vs ReflAct without World Model using Gemma-4-26B-A4B+7.78 percentage points