LingBot-World: Enter the AI-Generated Matrix
LingBot-World from Ant Group is the first high-performance real-time world model released as open source. AI generates worlds in real-time based on keyboard input - we analyze this revolutionary project.

Video generation AI (Sora, Runway, etc.) has been impressive, but with a fatal limitation: we could only watch. But what if you could walk into that screen?
LingBot-World, released by the Robbyant team (Ant Group), is not just a video generator. It's the first high-performance real-time world model released as open source.
When you press keyboard keys (W, A, S, D), the AI draws the corresponding world in real-time. Just like a game engine. Today we dive deep into this revolutionary project.
Evolution from "Dreamer" to "Simulator"
Previous video AI models were "Dreamers" that only learned statistical patterns of pixels without understanding the physics of the world. LingBot-World aims to be a "Simulator" that understands causality and interaction.
The model's three key weapons are:
Real-time Interaction (Playable)
Generates 16fps video with sub-second latency based on keyboard input. It's not just making videos—it's like playing a game.
Long-term Memory
Turn the camera away and come back—the building that was there is still there. Maintains consistency in videos up to 10 minutes long.
Fully Open Source
While competitors like Genie 3 and Mirage 2 are closed, LingBot-World released both code and model weights.
How Was It Built? (The Secret Sauce)
Researchers used a 3-stage evolution process based on the Wan2.2 (14B) model to create this "Matrix."
Stage 1: Data Engine
Mixed real video with synthetic data from Unreal Engine (UE) and gameplay data. The key was mapping "W, A, S, D" inputs to camera movements.
Stage 2: MoE (Mixture-of-Experts)
Combined 'high-noise expert' and 'low-noise expert' models to capture both the big picture and details simultaneously.
Stage 3: Distillation
Compressed the heavy diffusion model into a high-speed model that can infer in just a few steps for real-time operation.
"The Missing Object Is Still There" (Emergent Memory)
The most impressive part is "Emergent 3D Consistency." In the paper's experiments, when showing a landmark like Stonehenge, turning the camera elsewhere for 60 seconds, and returning—Stonehenge remains intact without collapsing.
Without explicitly telling the AI 3D coordinates, it learned the concept of "Object Permanence"—that objects in the world don't disappear—from learning countless video data.
Available Models
| Model | Control Type | Resolution | Status |
|---|---|---|---|
| LingBot-World-Base (Cam) | Camera Poses | 480P, 720P | Released |
| LingBot-World-Base (Act) | Actions | - | Coming Soon |
Limitations and Future
It's not perfect yet:
- Hardware: 8 GPUs recommended (torchrun --nproc_per_node=8). Not feasible on consumer GPUs.
- Interaction limits: Walking and looking around works well, but complex object manipulation lacks precision.
However, LingBot-World has opened "an era where anyone can create and explore their own virtual world." We look forward to how this technology will change games, robot training, and content creation.
Resources
- Paper: Advancing Open-source World Models
- GitHub: https://github.com/robbyant/lingbot-world
- Hugging Face: lingbot-world-base-cam
Note: This model recommends enterprise-grade GPU environments (8x GPUs).
Subscribe to Newsletter
Related Posts

Paper of the Week #3 — Half the FLOPs Is Not Half the Time
One integer halves a fine-grained MoE's expert compute (arXiv 2609.04575) and its Table 5 replicates on one A100 to within a point. The paper never reports time, so I measured it: nothing in HF transformers, nothing at batch 1 in the vLLM you run today, 1.35x at batch 8. Plus the OLMoE control and the iso-cost harness control promised in issue #2.

The paper stopped at half the experts. A quarter loses four points instead of thirty, and a model trained without renormalization tells you why.
Two cells arXiv:2609.04575 never ran: k₁=2 and k₁=3 on Qwen3.6-35B-A3B, and the whole k₂ trick on OLMoE, which was trained without renormalization. The second one is a clean test of the paper's mechanism.

One integer halves MoE expert compute. We measured the speed the paper didn't: free at batch 8, not at batch 1.
We reproduced Table 5 of arXiv:2609.04575 on one A100 and measured the throughput the paper leaves out: nothing in HF transformers, nothing at batch 1 in stock vLLM, 1.35× at batch 8.