Qwen3.8-Omni: Towards Native Omni-Modal Agents
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.
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
- 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).
- 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.
- Agentic Execution: Given a long video, the agent invokes
Qwen-MM-Pluginsto generate coarse abstractions (viaOmni-CaptionorOmni-Video2Note). It then plans its approach and usesOmni-Memoryto selectively query and load only the necessary audio/video segments for detailed analysis, shifting from static processing to active evidence gathering. - 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
- Benchmarks:
- Text: SWE-bench Pro, DeepSWE 1.1, LiveCodeBench v6, GPQA, etc.
- Vision: MathVision, LVBench, AndroidWorld, ClawEval-MM, CharXiv (RQ), etc.
- Audio: AliMeeting Test, FLEURS, OmniLingua, WenetSpeech, etc.
- Audio-Visual: Video-MME-v2, LVOmniBench, OmniVChat-Bench, DailyOmni, etc.
- Agentic: WildClawBench-MM, AgenticVBench, OmniGAIA.
- Metrics: Accuracy, Pass@3, WER/CER/DER/cpWER ($\downarrow$), token consumption ($\downarrow$), Time-to-first-audio-chunk (TTFC), Real-time factor (RTF).
- Models and sizes: Qwen3.8-Omni-Flash (size not reported), Qwen3.5-Omni-Plus, Qwen3.8-Flash, Qwen3.8-27B, Gemini 3.8 Flash, Seed 2.0 Lite, Muse Spark 1.2, Claude-Opus-4.6 (Max), DeepSeek-V4-Flash-0731.
- Hardware: Not reported.
- Serving stack/harness: Qwen-MM-Plugins, Qwen-Live-Harness, Claude Code, mini-SWE-agent, OpenClaw.
- Workload: Not reported beyond the standard benchmark evaluation suites.
5. vs. baseline
- Headline Gains: Claimed >25% increase in average score across 29 evaluations and >93% reduction in API input costs compared to its predecessor, Qwen3.5-Omni-Plus.
- Agentic AV Understanding: Moving from static to agentic (Qwen Code) execution improves LVOmniBench accuracy from 63.3 to 73.6, surpassing Gemini 3.8 Flash (70.7) which was previously in the lead.
- Comparisons matched? Generally yes. Most agentic baselines were run by the authors using consistent harnesses (e.g., Claude Code, mini-SWE-agent), with explicit exceptions noted (e.g., officially published scores for Claude-Opus-4.6 on SWE-bench Pro).
6. Open source
- Code:
Qwen-MM-Plugins(multimodal productivity tools) andQwen-Live-Harness(real-time agent framework) are publicly released (GitHub links provided). - Weights / Data: Not mentioned in the paper.
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
- Regime boundaries: In the agentic setting (Qwen Code), Gemini 3.8 Flash still edges out Qwen3.8-Omni-Flash on some video reasoning tasks like OmniVideoBench (70.1 vs 67.8) and Video-MME-v2 (72.7 vs 71.3).
- Accuracy costs / Trade-offs: Multilingual ASR and translation suffered slight regressions. On FLEURS-ASR, the error rate increased to 9.3 (from 7.2 in Qwen3.5-Omni-Plus), and FLEURS-S2TT dropped slightly (31.8 vs 32.2), showing that multi-speaker and agentic gains came with a minor hit to pure transcription/translation baseline accuracy.
- Hardware & Serving Confounds: Completely omitted. The paper does not report what GPUs are required, interconnects, or the overhead of running the multi-agent realtime harness.
- Cost: The 98% cost reduction claim relies solely on the theoretical reduction of dense token consumption, rather than an explicit evaluation of serving compute overhead or exact API pricing.
9. Reachability + takeaways
- Reachability: Medium. The open-source
Qwen-MM-PluginsandQwen-Live-Harnessmake the agentic video-fetching workflow re-implementable, but model weights are not explicitly open-sourced, meaning researchers would likely rely on API access or substitute other open models. - Takeaways (Your inference): The shift from "static processing" to "agentic evidence gathering" is a massive unlock for video LLMs. Just like RAG solved context limits for text, utilizing tools to abstract videos into text summaries and fetch specific spatial/temporal crops on demand solves the token-explosion problem for long videos. The autoresearch workflow (using the omni-model to train a smaller 3B model) is also a highly transferable pattern for self-improving systems.
10. Confidence + next steps
- Confidence:
- Mechanism: High. The architecture and agentic loops are well-explained.
- Reported gains: Medium. The benchmark wins are robust, but the headline "cost reduction" percentages are unsupported by detailed ablation.
- Generality: High. Extremely thorough evaluation across text, vision, audio, AV, and agent capabilities.
- Next steps: Worth reproducing the agentic evidence gathering pattern using existing open-source Vision-Language Models (e.g., LLaVA) wrapped in a custom agent harness. Read next: the Qwen3.5-Omni Thinker paper for the base architecture, or recent work on agentic multimodal frameworks. Open questions: What is the hardware cost to serve the 6.25 Hz Audio encoder alongside the 1M token LLM context?
11. Audit
- Section 1 (Task): Rewritten to clearly state the problem of token cost in long video processing and the lack of streaming support in agent harnesses, rather than just summarizing the solution.
- Section 7 (LVBench): Fixed a hallucination. The original note claimed it beat Gemini 3.8 Flash on LVBench, but Gemini is not present in that table. Corrected to mention Claude-Opus-4.6 (Max).
- Section 7 (WildClawBench-MM): Downgraded to ⚠️. The model wins on WildClawBench-MM, but Gemini 3.8 Flash wins on other agentic benchmarks (AgenticVBench, OmniGAIA) in the same table.
- Section 7 (LVOmniBench): Clarified that while Qwen takes the lead on LVOmniBench in the agentic setting, Gemini 3.8 Flash still maintains the lead on OmniVideoBench and Video-MME-v2 under the same setting.
- Section 7 (OmniVideoBench): Added the paper's caveat that the reduction in token consumption does not necessarily translate to reduced end-to-end latency or monetary cost due to agentic overhead.
- Section 7 (Real-time latency): Added the caveat that TTFC for audio-video inputs is higher (1.21-1.35s) than for audio-only inputs (~1s).
- Unverifiable: The explicit 25% average score increase across 29 evaluations and the 98%/93% API input cost reductions are claimed in the text but not explicitly derived or broken down in the tables.