OneVL: One-Step Latent Reasoning and Planning with Vision-Language Explanation
OneVL matches the speed of answer-only driving models while beating verbose chain-of-thought accuracy — by forcing latent reasoning to predict future video frames.

The Thesis
Most self-driving AI stacks face a painful tradeoff: slower models that reason step-by-step in plain language are more accurate, but too slow for real-time use. OneVL proposes a middle path — compress the reasoning into a small bundle of hidden 'latent tokens' that are generated in a single parallel pass rather than one word at a time. The key innovation is that these latent tokens are trained to simultaneously reconstruct language explanations AND predict what the road will look like in the near future, which the authors argue forces the model to internalize genuine causal structure about traffic dynamics rather than just linguistic patterns. On four benchmarks, OneVL is the first latent-reasoning method to beat explicit chain-of-thought accuracy while running at the same speed as a model that gives no reasoning at all. The catch: this is an academic benchmark paper from Xiaomi's embodied intelligence lab, and closed-loop driving performance on real hardware remains undemonstrated.
Catalyst
Vision-Language-Action models — systems that jointly process camera images, language instructions, and output control signals — have matured enough to serve as the backbone for this work, with open pretrained checkpoints making three-stage fine-tuning tractable. Separately, video generation research has produced lightweight token-based world models capable of predicting future frames at low cost, making the visual supervision decoder practical rather than prohibitively expensive to train.
What's New
Earlier latent Chain-of-Thought methods such as COCONUT compressed reasoning into hidden states supervised only by language reconstruction loss, meaning the latent space learned to encode linguistic abstractions of driving rather than the physical dynamics themselves. OneVL adds a second supervisory signal — a visual world model decoder that must predict future-frame tokens from the same latent bundle — forcing the representation to encode road geometry and agent motion trajectories. The authors claim this dual supervision is why their latent approach finally crosses the accuracy threshold that explicit token-by-token reasoning had previously held.
The Counter
The benchmark improvements are real but narrow in scope: every result is on perception-language QA tasks, not on the closed-loop driving metrics that actually determine whether a car stays on the road. Chain-of-thought reasoning in language models has repeatedly shown strong QA scores that fail to transfer to downstream control performance, and there is no evidence here that this pattern is broken. The visual world model decoder is a clever idea, but predicting future frame tokens during training is not the same as learning causal physics — it could just be learning temporal texture correlations that happen to be predictive in the training distribution. The three-stage training pipeline also introduces substantial complexity that may be difficult to reproduce outside a well-resourced lab with access to the exact same pretrained backbone. Finally, the latency advantage is benchmarked against autoregressive token decoding on the same hardware; production autonomous driving stacks use optimized C++ inference pipelines with specialized silicon, and the relative speed benefit of parallel prefilling may shrink considerably in that context.
Longs
None listed.
Shorts
- Suppliers of rule-based or modular perception-planning stacks (e.g., Mobileye's REM/RSS pipeline) whose moat depends on interpretable symbolic reasoning being necessary for safety — if end-to-end latent models prove reliable, that architectural argument weakens.
- Companies commercializing explicit chain-of-thought driving assistants, where verbose token generation is a core latency bottleneck, lose their differentiation if latent methods close the accuracy gap.
Enablers (Picks & Shovels)
- Open VLA pretrained checkpoints (Stanford)
- nuScenes and DriveLM benchmark datasets for autonomous driving evaluation
- Video tokenizer models (e.g., VQVAE-based frame encoders) used for future-frame prediction supervision
Private Watchlist
- Wayve (end-to-end neural driving, language-model-integrated stack)
- Waabi (transformer-based autonomous driving with world model components)
The Paper
Chain-of-Thought (CoT) reasoning has become a powerful driver of trajectory prediction in VLA-based autonomous driving, yet its autoregressive nature imposes a latency cost that is prohibitive for real-time deployment. Latent CoT methods attempt to close this gap by compressing reasoning into continuous hidden states, but consistently fall short of their explicit counterparts. We suggest that this is due to purely linguistic latent representations compressing a symbolic abstraction of the world, rather than the causal dynamics that actually govern driving. Thus, we present OneVL (One-step latent reasoning and planning with Vision-Language explanations), a unified VLA and World Model framework that routes reasoning through compact latent tokens supervised by dual auxiliary decoders. Alongside a language decoder that reconstructs text CoT, we introduce a visual world model decoder that predicts future-frame tokens, forcing the latent space to internalize the causal dynamics of road geometry, agent motion, and environmental change. A three-stage training pipeline progressively aligns these latents with trajectory, language, and visual objectives, ensuring stable joint optimization. At inference, the auxiliary decoders are discarded and all latent tokens are prefilled in a single parallel pass, matching the speed of answer-only prediction. Across four benchmarks, OneVL becomes the first latent CoT method to surpass explicit CoT, delivering state-of-the-art accuracy at answer-only latency, and providing direct evidence that tighter compression, when guided in both language and world-model supervision, produces more generalizable representations than verbose token-by-token reasoning. Project Page: https://xiaomi-embodied-intelligence.github.io/OneVL