Alibaba Qwen released Qwen-AgentWorld, a "language world model" that serves as a unified entry point for AI Agents. The core idea: a world model that lives entirely in language (no visual generation) is the right abstraction layer for Agents — it predicts "what will happen next" in textual form, and Agents can use this prediction for planning.

The technical details: Qwen-AgentWorld is a 70B-parameter model trained on a mixture of game transcripts, robotic task logs, web navigation traces, and synthetic "language world" data. The model takes a "current state description" (e.g., "the user is on a checkout page with item X in the cart") and predicts the "next state" (e.g., "the user clicks 'pay', the order is confirmed, a confirmation email is sent"). The prediction is in natural language, not in a structured format.

The unified entry point: any Agent can use Qwen-AgentWorld for "what-if" reasoning. For example, a shopping Agent can ask "what happens if the user adds item Y to the cart?", and Qwen-AgentWorld predicts the consequences. The Agent can then use this prediction to plan its next action.

The benchmark: on the WebArena benchmark (web navigation), Agents using Qwen-AgentWorld for planning score 23% higher than Agents without. The biggest improvement is on "long-horizon" tasks, where the Agent must plan 10+ steps ahead.

The bigger takeaway: "language world models" may be a more efficient alternative to "visual world models." Visual world models (Sora, Veo) generate pixels, which is expensive. Language world models generate text, which is much cheaper and can still capture the "what happens next" structure. For Agent applications, language world models are a much better fit — they can be queried cheaply, and the output is directly consumable by LLMs.