Inference Notes · Paper Deep Reads

中文

← All notes

Qwen3.8-Omni: Towards Native Omni-Modal Agents

Qwen Team · Not reported

ProblemHow to enable omni models to perform long-horizon multimodal productivity tasks, such as video editing and analysis, without incurring prohibitive token costs from processing full-length videos.

VerdictDemonstrates that wrapping an omni-model in a native agent harness drastically reduces token consumption for long videos while improving reasoning, though the model still lags behind Gemini 3.8 Flash on several agentic and video reasoning tasks, and some core multilingual translation capabilities regress slightly.

AgentInference
PublishedNot reported · arXiv 2609.25611 · Code
Read2026-09-23
TrustHigh confidence in mechanism and benchmark wins; medium confidence in exact cost reduction claims due to missing hardware/serving ablation.
CoverageFull LaTeX source, all 24 files incl. appendix given in full; 0 of 7 figures viewed by the reader
Read byGemini 3.1 Pro · independently audited

1. Task

What problem is being solved: Existing omni models struggle to support complex, long-horizon multimodal productivity workflows (like video editing and film generation) because processing long video inputs natively is cost-prohibitive in terms of tokens, and existing agent harnesses lack support for streaming inputs. Why it matters and why it is hard: Long-form videos have massive token counts. Passing a full video directly into a model context wastes tokens on irrelevant frames. Also, real-time multimodal interaction requires strict latency control while simultaneously handling memory, tools, and sub-agents. Prior approaches and gaps: Previous agentic systems focus mostly on text-based software engineering or GUI interaction, treating vision/audio purely as static, one-off perception. They do not dynamically navigate a video's temporal axis or selectively gather audiovisual evidence on demand.

2. Core idea

Instead of passively ingesting full-length videos and audio in a single prompt (which explodes the token budget), Qwen3.8-Omni-Flash operates as an active, natively multimodal agent. It uses specialized plugins to first abstract long audiovisual inputs into text summaries, and then lazily loads or retrieves specific fine-grained segments on demand, enabling complex video reasoning within a 1-million-token context efficiently.

3. Mechanism + mental model

  1. Architecture: The "Thinker" LLM (a sparse MoE backbone based on Qwen3.8-Next with a 1M token context window) processes unified tokens from three parallel encoders: Vision, general AuT (for acoustic/linguistic features at 6.25 Hz), and Spatial AuT (for multi-channel spatial cues).
  2. Training: The model undergoes a four-stage pretraining pipeline to align encoders and adapt to Qwen Sparse Attention (QSA). Post-training relies on Multi-Teacher Distillation to consolidate domain-specialized capabilities (reasoning, coding, audio), followed by unified Reinforcement Learning that optimizes for multi-turn task outcomes and interaction stability.
  3. Agentic Execution: Given a long video, the agent invokes Qwen-MM-Plugins to generate coarse abstractions (via Omni-Caption or Omni-Video2Note). It then plans its approach and uses Omni-Memory to selectively query and load only the necessary audio/video segments for detailed analysis, shifting from static processing to active evidence gathering.
  4. Real-Time Streaming: The "Talker" module receives high-level representations from the Thinker and autoregressively predicts multi-codebook sequences (RVQ) via a Multi-Token Prediction (MTP) module. A causal Code2Wav decoder then incrementally synthesizes this into a 48kHz waveform, enabling ultra-low-latency responses before the full text is generated. Mental model: Long multimodal context is simply too token-heavy for dense processing; therefore, an omni-model must act as an investigator that abstracts the full timeline and lazy-loads only the necessary evidence snippets on demand.

4. Metrics / data

5. vs. baseline

6. Open source

7. Key numbers, verified

Claim Where (§/Tab/Fig) Actual condition Holds? (✅/⚠️/❌) Note
>25% average score increase over Qwen3.5-Omni-Plus Abstract Across 29 evaluations ⚠️ Individual improvements are massive, but the explicit 25% average is not derived in tables.
API input cost reduced >98% (audio), 93% (video) Abstract / §1 vs Qwen3.5-Omni-Plus ⚠️ Claimed in text, but no cost/pricing measurement tables provided.
Strong coding and agent text performance Tab 1 SWE-bench Pro Scores 63.3, beating Qwen3.8-Flash (62.5) and Claude-Opus (53.4).
Best performance on long video understanding Tab 2 LVBench Scores 76.9, beating Qwen3.8-Flash and Claude-Opus-4.6 (Max). (Gemini 3.8 Flash is not evaluated on this benchmark).
Massive multi-speaker ASR improvement Tab 3 AliMeeting Test (DER) Achieves 3.4 DER, drastically better than Qwen3.5-Omni-Plus (88.1).
Outperforms on multimodal tool use Tab 5 WildClawBench-MM ⚠️ Scores 71.0 vs Gemini 3.8 Flash (58.9), but Gemini wins on other agentic benchmarks in the same table (AgenticVBench, OmniGAIA).
Agentic execution improves AV understanding Tab 6 LVOmniBench (Qwen Code vs Static) Score jumps from 63.3 to 73.6, taking the lead from Gemini on this dataset, though Gemini still leads on OmniVideoBench and Video-MME-v2.
Reduces token consumption for long video Tab 7 OmniVideoBench Drops from 145,736 to 79,117 tokens per query while improving accuracy. (Authors note this doesn't guarantee reduced end-to-end latency/cost).
Ultra-low latency for real-time interaction Tab 8 TTFC for Audio input Achieves ~1s TTFC and ~0.15 RTF for audio. For AV inputs, TTFC rises to 1.21-1.35s.

8. What the abstract doesn't say

9. Reachability + takeaways

10. Confidence + next steps

11. Audit