# Qwen AgentWorld 35B-A3B: Language World Models for General AI Agents

Qwen-AgentWorld-35B-A3B: a 35B-parameter MoE model with only ~3B active parameters, trained to simulate agentic environments across 7 domains. Outperforms Claude Sonnet 4.6 on agent benchmarks.

## What Is Qwen-AgentWorld?

**Qwen-AgentWorld** introduces a new class of AI models: **language world models for general agents**. Published by Qwen (Alibaba) on June 23, 2026, it represents a fundamental shift from models that just "talk" to models that can **simulate and reason about agent environments**.

The core innovation is a **language world model** that simulates agentic environments through long chain-of-thought reasoning across **seven unified domains**. Instead of just generating text, Qwen-AgentWorld generates *world states* — simulating how an environment would change in response to agent actions.

This is the first language world model capable of such multi-domain simulation, published on arXiv (2606.24597) and released on Hugging Face under a permissive license.

## The Architecture: MoE for Agent Simulation

Qwen-AgentWorld ships in two variants, both using **Mixture of Experts (MoE)** architecture for efficiency:

| **Variant** | **Total Params** | **Active Params** | **Context** | **Use Case**|
--- | --- | --- | --- | ---
| **35B-A3B** | 35 billion | ~3 billion | 256K | General agents, local deployment|
| **397B-A17B** | 397 billion | ~17 billion | 256K | Maximum capability, cloud deployment|

The MoE design means that while the model has billions of total parameters, only a small subset is active per token. This delivers **frontier-level agent capability at a fraction of the compute cost** — 3B active parameters instead of the 35B total, a 12× efficiency gain.

## The Seven Domains

Qwen-AgentWorld simulates agent environments across seven unified domains, enabling a general-purpose agent model:

-
- **Web browsing** — Simulating web pages, interactions, and navigation

-
- **File systems** — File operations, directory structures, and content management

-
- **Code execution** — Programming environments, syntax, and execution semantics

-
- **Databases** — Query languages, data structures, and transaction semantics

-
- **APIs** — HTTP protocols, request/response patterns, and authentication

-
- **Multi-agent coordination** — Inter-agent communication and task delegation

-
- **Tool use** — External tool invocation, parameter passing, and result handling

Each domain has its own "world rules" that the model learns to simulate. This allows the agent to **plan and execute complex multi-step workflows** with realistic understanding of how each environment responds to its actions.

## Performance: Beats Claude Sonnet 4.6

According to the Qwen blog and Hugging Face listing, Qwen-AgentWorld-35B-A3B **outperforms Claude Sonnet 4.6 on agent benchmarks** (56.04% score), a remarkable achievement for a model with only 3B active parameters.

Key benchmark highlights:

-
- **AgentBench** — Significantly outperforms models 10× larger in total parameters

-
- **WebArena** — Strong performance in simulated web navigation tasks

-
- **ToolBench** — Effective multi-tool coordination and sequential reasoning

-
- **GAIA** — Solid generalist agent performance across diverse tasks

The 3B-active-parameter design makes this model **self-hostable on consumer hardware** — a capability that most frontier agent models lack.

## Why This Matters for Local AI

Qwen-AgentWorld represents a growing trend in local AI: **specialized, self-hostable models that compete with frontier systems on targeted tasks**.

Key advantages for local deployment:

-
- **3B active parameters** — Can run on GPUs with 8-12GB VRAM

-
- **Open weights** — Full weights available on Hugging Face

-
- **256K context** — Handles complex multi-step agent workflows

-
- **No API dependency** — Self-hosted means no rate limits or costs

-
- **Agent-native** — Designed from the ground up for agentic workflows

# Qwen-AgentWorld example (pseudo-code)
# Model simulates environment responses
from transformers import AutoModel

model = AutoModel.from_pretrained("Qwen/Qwen-AgentWorld-35B-A3B")
# Agent: navigate web page, click button, read result
response = model.simulate(
environment="web",
action="click(button_id='submit')",
expected_outcome="form_submitted"
)
# Returns: {"page_state": "...", "new_links": [...], "errors": []}

## The Research Paper

The full paper **"Qwen-AgentWorld: Language World Models for General Agents"** by Zuo et al. was published on arXiv (2606.24597) on June 23, 2026. Key contributions include:

-
- **Hybrid rubric-and-rule rewards** — A novel training approach combining human preferences with environment rules

-
- **Multi-domain world simulation** — First model to simulate 7 distinct agent domains

-
- **Scalable MoE for agents** — Demonstrating that MoE works well for simulation tasks, not just language

### Key Takeaways

• Qwen-AgentWorld is the first language world model for general agents

• 35B total params, only ~3B active (MoE) — runs on consumer GPUs

• Simulates 7 domains: web, files, code, databases, APIs, multi-agent, tools

• Outperforms Claude Sonnet 4.6 on agent benchmarks (56.04%)

• Open weights on Hugging Face — self-hostable for local AI

## Related Articles

[**Sakana Fugu**](/sakana-ai-fugu-japan-ai-model.html) — Japan's orchestration model for routing across frontier LLMs
[**Best AI Models for Hermes Agent**](/top-ai-models-for-hermes-agent-local-and-cloud.html) — Local and cloud deployment options
