Pneumetron.
  • News
  • Tools
  • Infrastructure
  • Get the Workflow
Read News
Pneumetron.Qwen-AgentWorld-35B-A3B: A Native Language World Model for Agentic Environment Simulation
Share
Skip to article content
  1. Home
  2. ›
  3. News
  4. ›
  5. ai research
  6. ›
  7. Qwen-AgentWorld-35B-A3B: A Native Language World Model for Agentic Environment Simulation
ai research·July 4, 2026·Updated Jul 19

Qwen-AgentWorld-35B-A3B: A Native Language World Model for Agentic Environment Simulation

BY PNEUMETRON|6 MIN READ · 1,064 WORDS6 MIN READ
Tools
Share

In This Article

  • What Changed
  • Technical Details
  • Benchmark Analysis
  • Developer Implications
  • Bottom Line

Qwen-AgentWorld-35B-A3B introduces a novel approach to agentic environment simulation, functioning as a native language world model. It unifies seven interaction domains within a single model, predicting environment states through long chain-of-thought reasoning. The model's architecture and training pipeline are designed for generalizable, scalable, and controllable simulation, offering an agent foundation model for diverse tasks.

What Changed

Qwen-AgentWorld-35B-A3B represents a significant development in language world models (LWMs) by being explicitly designed as a "native world model" from its initial training stages. Unlike models that adapt general-purpose LLMs for environment simulation post-hoc, Qwen-AgentWorld integrates environment modeling as its core training objective from the Continual Pre-Training (CPT) stage. This fundamental shift enables the model to simulate agentic environments by predicting the next environment state based on an agent's actions and interaction history, utilizing long chain-of-thought reasoning.

This model unifies seven distinct agent interaction domains: MCP (tool calling), Search, Terminal, SWE (software engineering), Android, Web, and OS. This comprehensive coverage spans both text and graphical user interface (GUI) interaction environments, a notable consolidation within a single model. The training pipeline involves a three-stage process: CPT for environment knowledge injection, Supervised Fine-Tuning (SFT) to activate next-state-prediction reasoning, and Reinforcement Learning (RL) using GSPO to sharpen simulation fidelity. This structured approach aims to produce a generalizable, scalable, and controllable simulator capable of zero-shot generalization to out-of-distribution (OOD) environments.

Technical Details

Qwen-AgentWorld-35B-A3B is a Causal Language Model built upon the Qwen3.5-35B-A3B-Base architecture. It features a total of 35 billion parameters, with 3 billion activated during inference. The model's hidden dimension is 2048, and it utilizes a padded token embedding of 248320. The architecture comprises 40 layers, with a hidden layout structured as 10 blocks, each containing three Gated DeltaNet layers followed by a Mixture of Experts (MoE) layer, and one Gated Attention layer followed by an MoE layer.

Key architectural components include:

  • Gated DeltaNet: Employs 32 linear attention heads for V and 16 for QK, each with a head dimension of 128.
  • Gated Attention: Features 16 attention heads for Q and 2 for KV, with a head dimension of 256. It also incorporates a Rotary Position Embedding Dimension of 64.
  • Mixture of Experts: Consists of 256 experts, with 8 routed experts and 1 shared expert activated. Each expert has an intermediate dimension of 512.

The model supports a substantial context length of 262,144 tokens, crucial for multi-turn environment simulation. Deployment is compatible with popular inference frameworks such as Hugging Face Transformers, vLLM, and SGLang. For vLLM, the --language-model-only flag is required due to the model architecture including visual component definitions while the checkpoint only contains language model weights. The model's inference process defaults to a thinking mode (<think>...</think>) to reason about environment state transitions before generating predicted observations.

Benchmark Analysis

Qwen-AgentWorld-35B-A3B was evaluated on AgentWorldBench, an open-ended evaluation rubric that scores predicted environment observations across five dimensions: Format, Factuality, Consistency, Realism, and Quality, normalized to a 0-100 scale. The model's performance is detailed below, alongside other prominent models:

ModelMCPSearchTerm.SWEAndroidWebOSOverall
GPT-5.470.1037.2653.6966.2960.0051.8068.5858.25
Claude Opus 4.854.9335.1459.1864.1061.5054.6666.6256.59
Claude Opus 4.669.9029.3057.5164.5561.7451.4270.2057.80
Gemini 3.1 Pro59.0730.2152.4759.0761.4052.8366.9254.57
Claude Sonnet 4.670.0028.7956.9864.5258.0350.7863.1756.04
DeepSeek-V4-Pro63.2727.6151.2659.4455.1750.3263.7052.97
GLM-5.167.6022.4647.3252.0759.1051.5059.1351.31
Kimi K2.665.2327.4852.5458.7758.9350.2060.8053.42
MiniMax-M2.755.8227.3041.6237.4452.4050.5257.7346.12
Qwen3.5-35B-A3B57.8725.9846.1347.5853.1847.1056.2747.73
Qwen3.5-397B-A17B68.3130.8155.3064.4454.9048.5560.8554.74
Qwen3.6-Plus55.2821.9450.5859.0857.6550.7860.3350.81
Qwen-AgentWorld-35B-A3B64.7936.6953.9665.6358.1749.5565.9256.39
Qwen-AgentWorld-397B-A17B68.2437.8257.7368.4960.2050.9867.8958.71

Qwen-AgentWorld-35B-A3B achieved an overall score of 56.39. While not leading in all categories, it demonstrates competitive performance across the seven domains, particularly in Search (36.69) and SWE (65.63), where it outperforms several other models including its base Qwen3.5-35B-A3B. The larger Qwen-AgentWorld-397B-A17B variant shows stronger overall performance (58.71) and leads in Search and SWE categories.

Developer Implications

Developers working on agentic AI systems, particularly those requiring robust environment simulation, can leverage Qwen-AgentWorld-35B-A3B as a foundational component. The model's native world model design and comprehensive domain coverage streamline the development of agents that interact with complex, multi-modal environments. The ability to simulate diverse environments—from Linux terminals and web browsing to software engineering tasks—within a single model reduces the need for specialized models or complex integration efforts.

The model's compatibility with standard inference frameworks like Hugging Face Transformers, vLLM, and SGLang ensures ease of deployment and integration into existing ML pipelines. The provided quickstart guides for API serving and direct inference, along with domain-specific system prompt templates, offer clear pathways for immediate implementation. Developers can use the recommended sampling parameters (temperature=0.6, top_p=0.95, top_k=20) and an adequate output length (up to 32,768 tokens) to optimize simulation fidelity. The AgentWorldBench evaluation framework is also available for developers to assess and fine-tune their agent's interactions within simulated environments.

Bottom Line

Qwen-AgentWorld-35B-A3B establishes a new paradigm for agentic environment simulation through its native language world model approach. By embedding environment modeling as a core training objective and unifying seven distinct interaction domains, it offers a versatile and robust simulator. Its architecture, featuring a Gated DeltaNet, Gated Attention, and a Mixture of Experts, combined with a substantial context length, supports detailed and long chain-of-thought reasoning for predicting environment states. The model's performance on AgentWorldBench indicates its capability across various domains, positioning it as a significant tool for developers building and evaluating general-purpose AI agents.

Pneumetron

PR
WRITTEN BY•SYSTEM AGENT

PNEUMETRON EDITORIAL TEAM

Rajini Ravindra holds an M.A. in History from Mysore University (KSOU). Currently a homemaker, she spends her free time exploring AI and automation, and oversees editorial review for Pneumetron.

PROCESS:Pneumetron's pipeline pairs AI-assisted drafting with human editorial review before publishing — our goal is to make staying informed easier for students and professionals, not to replace real reporting.

Source Material:hf_model ↗
Source Attribution

This article was generated by Pneumetron's autonomous intelligence pipeline from verified source materials.

Open Source Document at hf_model ↗
Share this article
Share
Stay Informed

Never miss a signal.

Subscribe to the Pneumetron Intelligence Digest — automated briefings covering AI, science, technology, and world events.

← Previous
DeepReinforce AI Unveils Ornith-1.0: A Self-Improving Open-Source Model Family for Agentic Coding
Next →
Task-Agnostic Pretraining (TAP) Boosts VLA Model Efficiency and Robustness

More from ai research

View All →
AI Research11h ago

Beyond Eviction: New Techniques Restore Lost Context in Compressed KV Caches

Researchers have introduced RestoreKV and ResKV, two novel methods designed to mitigate the performance degradation inherent in aggressive KV cache compression by reconstructing lost attention information rather than simply discarding tokens.

BY PNEUMETRON1 MIN READ
Read more
AI Research21h ago

AURORA-LM: Bridging the Gap Between Continuous Latents and Text Generation

AURORA-LM introduces a novel continuous-latent diffusion approach for language modeling, decoupling text representation from distribution learning. By utilizing a Query-based Encoder-Decoder and Block-causal Diffusion Transformer, it aims to overcome the limitations of discrete tokenization in generative AI.

BY PNEUMETRON1 MIN READ
Read more
AI Research1d ago

Real-Time Video Editing at 30 FPS: JoyAI-Video-Edit Debuts Autoregressive Diffusion

JoyAI-Video-Edit introduces a 16B-parameter autoregressive diffusion framework capable of real-time, open-ended video editing. By leveraging chunk-wise adaptation and specialized distillation techniques, the system achieves 720p output at 30 FPS on a single Nvidia B200 GPU.

BY PNEUMETRON1 MIN READ
Read more
AI Research1d ago

UniWorld-Design Shifts Image Generation from Pixels to Semantic Layers

UniWorld-Design introduces a layer-native framework that treats RGBA semantic layers as the atomic unit of image generation, enabling more precise editing and composition than traditional pixel-based models. By separating rendering from structure, the system allows for recursive decomposition and instruction-addressable editing.

BY PNEUMETRON1 MIN READ
Read more
Sponsorship Slot · 728 × 90

In This Article

  • What Changed
  • Technical Details
  • Benchmark Analysis
  • Developer Implications
  • Bottom Line

Most Read

01
Entertainment·Jul 23
Royal Return: Anne Hathaway Confirms Breakthrough for 'The Princess Diaries 3'
02
AI Research·Jul 13
Proactive Memory Agents Combat Behavioral State Decay in Long-Horizon AI Tasks
03
AI Research·Jul 21
FlowMimic: Streamlining Video Editing via Pixel-Pair Temporal Warped Flow Fields
04
AI Research·Jul 17
Unsloth Releases Qwen3.6-27B-NVFP4: Enhanced Throughput and Agentic Coding for Developers
05
AI Research·Jul 19
Moonshot AI's Kimi CLI Evolves into Kimi Code CLI: A Next-Gen Terminal AI Agent
Daily Digest

Get top AI & tech signals delivered to your inbox every morning.

Subscribe →
Sponsorship Slot300 × 250
Follow Signals
X / TWITTERXLINKEDINLIINSTAGRAMIGYOUTUBEYTTELEGRAMTG
News Categories
TechnologyAI ResearchPoliticsSportsHealthBusinessScienceEntertainmentWorld
Pneumetron.

© 2026 Pneumetron. All systems automated.

  • About
  • Tools
  • Privacy
  • Terms
  • Contact
  • Advertise
  • Automate your own news site →