Awesome Text World Models for LLM-based Agents
June 9, 2026 · View on GitHub
A curated list of papers on Text World Models (TWMs) for LLM-based agents — transition models over textual states that, given a state and a candidate action, predict the resulting webpage, terminal output, API response, or user reply, thereby supporting planning, efficient learning, and principled evaluation.
This list accompanies our survey Bridging the Agent-World Gap: Text World Models for LLM-based Agents and is organized around the agent lifecycle: Building → Training-Time → Inference-Time → Evaluation.
🤗 Contributions are welcome! If a paper or repository is missing, incorrect, or has been updated, please open an issue or pull request.
📫 Contact us via emails: liyixia@me.com
📃Please cite our paper if you find our survey or repository helpful!
@misc{li2026textworldmodels,
title={Bridging the Agent-World Gap: Text World Models for LLM-based Agents},
author={Yixia Li and Hongru Wang and Peng Lai and Zhiwen Ruan and He Zhu and Youxin Zhu and Ganlong Zhao and Minda Hu and Yun Chen and Sibei Yang and Peng Li and Jeff Z. Pan and Jia Pan and Guanhua Chen and Yang Liu and Guanbin Li},
year={2026},
eprint={2606.09032},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2606.09032},
}
📰 News
- [2026/06] 🎉 Our survey paper is now available on arXiv: Bridging the Agent-World Gap: Text World Models for LLM-based Agents!
🗺️ Overview
The text world model lifecycle. A world model is first constructed via learning, prompting, or code generation; then used to train agents through synthetic rollouts and guide them via lookahead at inference time; and finally evaluated for fidelity and utility.
📑 Table of Contents
- 🏗️ 3. Building Text World Models
- 🎓 4. Training-Time World Models
- 🔮 5. Inference-Time World Models
- 📊 6. Evaluation
🏗️ 3. Building Text World Models
How a text world model is constructed: by learning (fine-tuning an LLM into a WM), by prompting (eliciting dynamics from a frozen LLM), or by programmatic synthesis (generating executable code as the WM).
3.1 Learning-Based Construction
Fine-tuning a base LLM into a world model via supervised learning on trajectories or reinforcement learning.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Making Large Language Models into World Models with Precondition and Effect Knowledge | 2025 | COLING 2025 | Paper | - |
| From Word to World: Can Large Language Models be Implicit Text-based World Models? | 2025 | arXiv | Paper | Code |
| CWM: An Open-Weights LLM for Research on Code Generation with World Models | 2025 | arXiv | Paper | Code |
| Agent Learning via Early Experience | 2025 | arXiv | Paper | - |
| RLVR-World: Training World Models with Reinforcement Learning | 2025 | arXiv | Paper | Code |
| WebWorld: A Large-Scale World Model for Web Agent Training | 2026 | arXiv | Paper | - |
| Reinforcement World Model Learning for LLM-based Agents | 2026 | arXiv | Paper | - |
| Self-Improving World Modelling with Latent Actions (SWIRL) | 2026 | arXiv | Paper | Code |
| Beyond State Consistency: Behavior Consistency in Text-Based World Models | 2026 | arXiv | Paper | Code |
| Computer-Using World Model | 2026 | arXiv | Paper | - |
3.2 Prompt-Based Construction
Turning a frozen LLM into a world model through in-context exemplars, retrieval, or self-evolving memory — without parameter updates.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Large Language Models as Commonsense Knowledge for Large-Scale Task Planning (LLM-MCTS) | 2023 | NeurIPS 2023 | Paper | Code |
| TRAD: Enhancing LLM Agents with Step-Wise Thought Retrieval and Aligned Decision | 2024 | SIGIR 2024 | Paper | Code |
| Is Your LLM Secretly a World Model of the Internet? Model-Based Planning for Web Agents (WebDreamer) | 2025 | TMLR | Paper | Code |
| Evo-Memory: Benchmarking LLM Agent Test-time Learning with Self-Evolving Memory | 2025 | arXiv | Paper | - |
| R-WoM: Retrieval-augmented World Model For Computer-use Agents | 2026 | arXiv | Paper | - |
| Aligning Agentic World Models via Knowledgeable Experience Learning (WorldMind) | 2026 | arXiv | Paper | Code |
| Steve-Evolving: Open-World Embodied Self-Evolution via Fine-Grained Diagnosis and Dual-Track Knowledge Distillation | 2026 | arXiv | Paper | Code |
| Test-Time Adaptation for LLM Agents via Environment Interaction | 2026 | ICLR 2026 | Paper | Code |
3.3 Programmatic Construction (Code as World Model)
Prompting an LLM to emit PDDL, Python, HTML, or DSL programs that an executor runs as the world model; and scaling up environment synthesis.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Code World Models for General Game Playing | 2025 | arXiv | Paper | - |
| Towards General Agentic Intelligence via Environment Scaling (AgentScaler) | 2025 | arXiv | Paper | - |
| Web World Models | 2025 | arXiv | Paper | Code |
| Code2World: A GUI World Model via Renderable Code Generation | 2026 | arXiv | Paper | Code |
| SWE-World: Building Software Engineering Agents in Docker-Free Environments | 2026 | arXiv | Paper | Code |
| AutoWebWorld: Synthesizing Infinite Verifiable Web Environments via Finite State Machines | 2026 | arXiv | Paper | Code |
| CLI-Gym: Scalable CLI Task Generation via Agentic Environment Inversion | 2026 | arXiv | Paper | Code |
| Agent World Model: Infinity Synthetic Environments for Agentic Reinforcement Learning | 2026 | arXiv | Paper | Code |
| EnvScaler: Scaling Tool-Interactive Environments for LLM Agent via Programmatic Synthesis | 2026 | arXiv | Paper | Code |
| ScaleEnv: Scaling Environment Synthesis from Scratch for Generalist Interactive Tool-Use Agent Training | 2026 | arXiv | Paper | - |
| daVinci-Env: Open SWE Environment Synthesis at Scale | 2026 | arXiv | Paper | Code |
🎓 4. Training-Time World Models
How world models support agents at training time: by internalizing dynamics into agent parameters, by serving as training environments, or by simulating users.
4.1 Internalizing World Models into Agent Parameters
Folding world-model predictions into the agent's own weights, as a warm-start or within the reasoning trace.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Internalizing World Models via Self-Play Finetuning for Agentic RL (SPA) | 2025 | arXiv | Paper | Code |
| Agent Learning via Early Experience | 2025 | arXiv | Paper | - |
| Dyna-Think: Synergizing Reasoning, Acting, and World Model Simulation in AI Agents | 2025 | arXiv | Paper | - |
| Reinforcement World Model Learning for LLM-based Agents | 2026 | arXiv | Paper | - |
| Dyna-Mind: Learning to Simulate from Experience for Better AI Agents | 2026 | ICLR 2026 | Paper | - |
4.2 World Models as Training Environments
Using a world model to synthesize trajectories offline, serve as an online RL environment, or co-evolve with the agent.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| WebSynthesis: World-Model-Guided MCTS for Efficient WebUI-Trajectory Synthesis | 2025 | arXiv | Paper | - |
| Simulating Environments with Reasoning Models for Agent Training (Simia) | 2025 | arXiv | Paper | - |
| Towards General Agentic Intelligence via Environment Scaling (AgentScaler) | 2025 | arXiv | Paper | - |
| SPICE: Self-Play In Corpus Environments Improves Reasoning | 2025 | arXiv | Paper | - |
| WebEvolver: Enhancing Web Agent Self-Improvement with Co-evolving World Model | 2025 | EMNLP 2025 | Paper | Code |
| Scaling Agent Learning via Experience Synthesis (DreamGym) | 2026 | ICLR 2026 | Paper | - |
| DeepAgent: A General Reasoning Agent with Scalable Toolsets | 2026 | WWW 2026 | Paper | Code |
| DynaWeb: Model-Based Reinforcement Learning of Web Agents | 2026 | arXiv | Paper | - |
4.3 User Simulation for Agent Training
Modeling the human user as a world model to train multi-turn, proactive, and personalized agents.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| UserRL: Training Interactive User-Centric Agent via Reinforcement Learning | 2025 | arXiv | Paper | Code |
| Training Proactive and Personalized LLM Agents | 2025 | arXiv | Paper | Code |
| Echo-N1: Affective RL Frontier | 2025 | arXiv | Paper | - |
| HER: Human-like Reasoning and Reinforcement Learning for LLM Role-playing | 2026 | arXiv | Paper | Code |
| HumanLM: Simulating Users with State Alignment Beats Response Imitation | 2026 | arXiv | Paper | - |
| Flipping the Dialogue: Training and Evaluating User Language Models (UserLM) | 2026 | ICLR 2026 | Paper | - |
| Learning Personalized Agents from Human Feedback (PAHF) | 2026 | arXiv | Paper | - |
| Cold-Start Personalization via Training-Free Priors from Structured World Models (Pep) | 2026 | arXiv | Paper | - |
| OpenClaw-RL: Train Any Agent Simply by Talking | 2026 | arXiv | Paper | Code |
🔮 5. Inference-Time World Models
How world models guide agents at inference time, as a simulator for lookahead/search or as a verifier of proposed actions.
5.1 World Model as Simulator: Shallow Lookahead
Imagining the immediate consequence of each candidate action and picking the best.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Web Agents with World Models: Learning and Leveraging Environment Dynamics in Web Navigation (WMA) | 2025 | ICLR 2025 | Paper | - |
| Is Your LLM Secretly a World Model of the Internet? Model-Based Planning for Web Agents (WebDreamer) | 2025 | TMLR | Paper | Code |
| SimuRA: A World-Model-Driven Simulative Reasoning Architecture for General Goal-Oriented Agents | 2025 | arXiv | Paper | - |
| WALL-E: World Alignment by NeuroSymbolic Learning improves World Model-based LLM Agents | 2025 | NeurIPS 2025 | Paper | Code |
5.2 World Model as Simulator: Deep Tree Search
Using the world model as a transition function for multi-step rollouts and search (e.g., MCTS).
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Large Language Models as Commonsense Knowledge for Large-Scale Task Planning (LLM-MCTS) | 2023 | NeurIPS 2023 | Paper | Code |
| Reasoning with Language Model is Planning with World Model (RAP) | 2023 | EMNLP 2023 | Paper | Code |
| Language Agent Tree Search Unifies Reasoning, Acting, and Planning in Language Models (LATS) | 2024 | ICML 2024 | Paper | Code |
| Agent Q: Advanced Reasoning and Learning for Autonomous AI Agents | 2024 | arXiv | Paper | - |
| Improving LLM Agent Planning with In-Context Learning via Atomic Fact Augmentation and Lookahead Search | 2025 | ICML 2025 Workshop | Paper | - |
| Code World Models for General Game Playing | 2025 | arXiv | Paper | - |
| Synthesizing World Models for Bilevel Planning (TheoryCoder) | 2025 | TMLR | Paper | - |
5.3 World Model as Verifier
The world model predicts the consequence of a proposed action, and a judge accepts it or sends it back for revision.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| From Word to World: Can Large Language Models be Implicit Text-based World Models? | 2025 | arXiv | Paper | Code |
| SWE-World: Building Software Engineering Agents in Docker-Free Environments | 2026 | arXiv | Paper | Code |
| Computer-Using World Model | 2026 | arXiv | Paper | - |
| Can We Predict Before Executing Machine Learning Agents? (FOREAGENT) | 2026 | arXiv | Paper | Code |
| Budget-Constrained Agentic Large Language Models: Intention-Based Planning for Costly Tool Use (INTENT) | 2026 | arXiv | Paper | - |
| World-Model-Augmented Web Agents with Action Correction (WAC) | 2026 | arXiv | Paper | - |
📊 6. Evaluation
How text world models are evaluated — both the fidelity of the world model itself and its use as an evaluation environment for agents.
6.1 Evaluating World Models Themselves
Measuring prediction accuracy, consistency, and task-driven utility of the world model.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Can Language Models Serve as Text-Based World Simulators? (ByteSized32) | 2024 | ACL 2024 | Paper | Code |
| From Word to World: Can Large Language Models be Implicit Text-based World Models? | 2025 | arXiv | Paper | Code |
| WorldPrediction: A Benchmark for High-level World Modeling and Long-horizon Procedural Planning | 2025 | ICML 2025 Workshop | Paper | Code |
| Text2World: Benchmarking Large Language Models for Symbolic World Model Generation | 2025 | arXiv | Paper | Code |
| The Safety Challenge of World Models for Embodied AI Agents: A Review | 2025 | arXiv | Paper | - |
| LLM-Based World Models Can Make Decisions Solely, But Rigorous Evaluations are Needed | 2026 | TMLR | Paper | Code |
| What Do LLM Agents Know About Their World? Task2Quiz: A Paradigm for Studying Environment Understanding | 2026 | arXiv | Paper | Code |
| Beyond State Consistency: Behavior Consistency in Text-Based World Models | 2026 | arXiv | Paper | Code |
6.2 Benchmark Design (WM as Evaluation Environment)
Using world models to construct benchmarks and interactive evaluation environments for agents.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| τ²-Bench: Evaluating Conversational Agents in a Dual-Control Environment | 2025 | arXiv | Paper | Code |
| MobileWorldBench: Towards Semantic World Modeling For Mobile Agents | 2025 | arXiv | Paper | Code |
| AutoEnv: Automated Environments for Measuring Cross-Environment Agent Learning | 2025 | arXiv | Paper | Code |
| LLMs as World Models: Data-Driven and Human-Centered Pre-Event Simulation for Disaster Impact Assessment | 2025 | EMNLP 2025 | Paper | - |
| RECODE-H: A Benchmark for Research Code Development with Interactive Human Feedback | 2026 | ICLR 2026 | Paper | Code |
| LifeSim: Long-Horizon User Life Simulator for Personalized Assistant Evaluation | 2026 | arXiv | Paper | Code |
6.3 Simulator Validity
Studying how faithfully a world-model simulator reflects the real environment or real users.
| Title | Year | Venue | Paper | Code |
|---|---|---|---|---|
| Large Emotional World Model | 2025 | arXiv | Paper | - |
| IDRBench: Interactive Deep Research Benchmark | 2026 | arXiv | Paper | - |
| Interactive Benchmarks | 2026 | arXiv | Paper | Code |
📝 Citation
If you find this survey and repository useful for your research, please consider citing:
@misc{li2026textworldmodels,
title={Bridging the Agent-World Gap: Text World Models for LLM-based Agents},
author={Yixia Li and Hongru Wang and Peng Lai and Zhiwen Ruan and He Zhu and Youxin Zhu and Ganlong Zhao and Minda Hu and Yun Chen and Sibei Yang and Peng Li and Jeff Z. Pan and Jia Pan and Guanhua Chen and Yang Liu and Guanbin Li},
year={2026},
eprint={2606.09032},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2606.09032},
}
🙌 Contributing
This list is maintained alongside the survey. To add or update an entry:
| Title | Year | Venue | Paper | Code |
|-------|------|-------|-------|------|
| **Paper Title** | 2025 | Conference/Journal Name | [Paper](https://arxiv.org/abs/xxxx.xxxxx) | [Code](https://github .com/username/repo) |
Pull requests and issues are warmly welcomed!