Close Menu
NCIJ Network NCIJ Network
    What's Hot

    A common budget that makes common sense – POLITICO

    September 18, 2026

    Google DeepMind launches institute to widen the AGI debate

    September 18, 2026

    Alibaba Qwen Releases Qwen3.8-Omni-Flash: A 1M-Context Omni-Modal Model Built Around Agentic Audio-Video Understanding and Tool Use

    September 18, 2026
    Facebook X (Twitter) Instagram
    Trending
    • A common budget that makes common sense – POLITICO
    • Google DeepMind launches institute to widen the AGI debate
    • Alibaba Qwen Releases Qwen3.8-Omni-Flash: A 1M-Context Omni-Modal Model Built Around Agentic Audio-Video Understanding and Tool Use
    • Critical Orkes Conductor Vulnerability Exploited in Attacks
    • Bitcoin May Have Bottomed at $58K, Analysts Say
    • James Webb reveals Chariklo’s mysterious rings are changing faster than expected
    • California Adopts New Limits to Rein in Dairy Manure Pollution and Its ‘Outsized’ Groundwater Impacts
    • Slowly then all at once: this emboldened Celtic alliance could spell the end of the UK | Simon Jenkins
    • About
      • Our Team
      • Editorial Policy
      • Editorial Independence
      • International Support
    • Trust & Standards
      • AI Usage Policy
      • Conflict of Interest Policy
      • Corrections Policy
      • Ethics Policy
      • Fact-Checking Policy
      • Source Protection
    • Get Involved
      • Guide for Sources
      • Support Independent Journalism
    • Legal
      • Cookie Policy
      • Privacy Policy
      • Terms of Use
    Facebook X (Twitter) Instagram
    NCIJ Network NCIJ Network
    Friday, September 18
    • Home
    • World
    • Ai
    • Business
    • Politics
    • Health
    • Crypto
    • Science
    • Technology
    • Cybersecurity
    • Defense & Security
    • Economy
    • Energy
    • Europe
    • More
      • Fact Check
      • Investigations
      • Opinion & Analysis
      • Environment
    NCIJ Network NCIJ Network
    Home»Artificial Intelligence

    Alibaba Qwen Releases Qwen3.8-Omni-Flash: A 1M-Context Omni-Modal Model Built Around Agentic Audio-Video Understanding and Tool Use

    NCIJ NETWNCIJ NETWORKBy NCIJ NETWNCIJ NETWORKSeptember 18, 2026 Artificial Intelligence No Comments5 Mins Read
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Alibaba’s Qwen team has released Qwen3.8-Omni-Flash. They called it its first omni-modal model built around agentic capabilities. It accepts text, images, audio, and video, and it returns text. Audio-video understanding, reasoning, and tool use sit inside one model. The stated workflow is simple: understand the content, plan the task, execute with tools, deliver the result.

    Is it deployable? Yes, as a hosted API today. It is live on QwenCloud, Alibaba Cloud Model Studio, and Qwen Studio. No open weights were announced at launch, so self-hosting is not an option.

    What is Qwen3.8-Omni-Flash

    The Qwen3.8-Omni-Flash is built on the Qwen3.8-Flash-Next architecture. That base model shipped with open weights in August 2026.

    The context window is 1M tokens. QwenCloud lists 991K max input and 131K max output. Max reasoning length is 262K tokens.

    Output is text only. The Model Studio docs point developers to Qwen3.5-Omni when they need generated speech. Thinking is on by default, with reasoning_effort set to xhigh. Setting it to none disables thinking.

    The API follows both the DashScope and OpenAI protocols. It works with Chat Completions and the Responses API. Function calling, web search, structured outputs, context caching, and batch calls are supported.

    Agentic Perception for Long Video

    Most video models read a long file from start to finish. That holds even when the answer sits in 3 minutes of footage.

    Qwen research team describes a different path. The agent starts from the question. It decides what to watch and hear. It then gathers evidence over several coarse-to-fine rounds. Compute and tokens go to the segments that matter.

    The research team reports the result on OmniVideoBench. Accuracy rises from 63.4 to 67.8. Token use drops from 145,736 to 79,117. That is about 45.7% fewer tokens.

    Reported Benchmarks

    All figures here come from Qwen. Independent results were not available at publication.

    • Across 29 evaluations, the average score improves more than 25% over Qwen3.5-Omni-Plus.
    • WildClawBench-MM improves by 36.5 points. AgenticVBench improves by 22.3 points.
    • UniClawBench reaches 69.6.
    • LongAudioSpan gains 8.3 points. OmniVideoBench gains 9.6 points.
    • OmniCap-IF CSR and ISR improve by 8.5 and 14.1 points.

    The research team states that audio-visual performance is close to Gemini 3.8 Flash. It also claims overall audio performance above Gemini 3.8 Flash. The X post summarizes the agent gains as +19.5 points on average across WildClawBench-MM and UniClawBench.

    🚀 Meet Qwen3.8-Omni-Flash, Qwen’s first omni-modal model built around agentic capabilities!

    Native audio-video understanding, reasoning, and tool use come together in one model: understand the content, plan the task, execute with tools, and deliver the result.

    Highlights: 🥳
    -… pic.twitter.com/iJypeohw7y

    — Qwen (@Alibaba_Qwen) September 18, 2026

    Pricing and Input Limits

    QwenCloud lists $0.15 per 1M input tokens and $0.47 per 1M output tokens. Implicit cache hits cost $0.016 per 1M tokens.

    The research team reports large cost cuts against Qwen3.5-Omni-Plus. Audio input costs over 98% less per hour. Audio-visual input costs over 93% less per hour. The X post puts the video input reduction at about 89%.

    Key limits from the Model Studio docs:

    • Video files up to 2 hours and 2 GB by URL.
    • Audio files up to 3 hours.
    • Audio input in 113 languages and dialects.
    • Stable results with video sampled at up to 15 fps.
    • Two-channel stereo and four-channel FOA spatial audio through use_multichannel.
    • Availability in 6 regions: Beijing, Singapore, Hong Kong, Tokyo, Frankfurt, and Virginia.

    Calling it takes a few lines with the OpenAI SDK:

    import os
    from openai import OpenAI
    
    client = OpenAI(
        api_key=os.environ["DASHSCOPE_API_KEY"],
        base_url=os.environ["DASHSCOPE_BASE_URL"],
    )
    completion = client.chat.completions.create(
        model="qwen3.8-omni-flash",
        messages=[{"role": "user", "content": [
            {"type": "video_url", "video_url": {"url": os.environ["VIDEO_URL"]}},
            {"type": "text", "text": "List the key moments with timestamps."},
        ]}],
        modalities=["text"],
        stream=True,
    )
    for chunk in completion:
        if chunk.choices and chunk.choices[0].delta.content:
            print(chunk.choices[0].delta.content, end="")

    The model returns text, so tools do the media work. Qwen team is open-sourcing 2 projects to support that.

    Qwen-MM-Plugins is live under Apache-2.0. Its tagline is ‘Make any agent harness multimodal-native.’ Each capability installs as a Skill plus an optional MCP server. The guided installer supports Claude Code, CodeBuddy, Codex, Qoder, OpenClaw, Qwen Code, and Gemini CLI.

    The Omni capabilities map to the launch demos:

    • omni-memory builds an audio-visual memory of a long video.
    • omni-video2note converts a tutorial video into an illustrated PDF.
    • omni-chatcut covers Music-to-MV, movie commentary, and speaker-preserving video translation.

    A core plugin lets the main model read local images and video frames natively. The README notes one current gap. Most harnesses cannot feed audio to the main model natively yet. Audio is routed through the API for now.

    Interactive Explainer

    1MContext agentic Alibaba AudioVideo Built model OmniModal Qwen Qwen3.8OmniFlash Releases tool Understanding
    NCIJ NETWNCIJ NETWORK
    • Website

    Keep Reading

    Salesforce Agentforce: Bridging the Enterprise AI Gap from ‘Vibe Coding’ to Battle-Tested Orchestration

    Microsoft Open-Sources TauGrid: A Kubernetes-Native Stack for GPU AI Workloads

    Anthropic Launches Claude Code Projects in Beta: Parallel Cloud Sessions That Keep Running After You Close Your Laptop

    Lidl deploys driverless truck for store deliveries in Germany

    CISA Releases Cyber Decoy Guidance to Strengthen Critical Infrastructure Defenses

    Adecco Group rolls out Agentforce Coworker to 27,000 staff

    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    A common budget that makes common sense – POLITICO

    September 18, 2026

    Google DeepMind launches institute to widen the AGI debate

    September 18, 2026

    Alibaba Qwen Releases Qwen3.8-Omni-Flash: A 1M-Context Omni-Modal Model Built Around Agentic Audio-Video Understanding and Tool Use

    September 18, 2026

    Critical Orkes Conductor Vulnerability Exploited in Attacks

    September 18, 2026
    Latest Posts

    ADNOC, SLB roll out AI-powered tool across over 120 rigs to enhance drilling ops

    August 4, 2026

    Mining threat persists in Raja Ampat, Indonesia’s ‘Amazon of the Seas’

    August 4, 2026

    Smoke Streams Across Eastern Washington

    August 4, 2026

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    NCIJ Network is an independent digital news platform delivering trusted investigative journalism, European and global news, in-depth analysis, and fact-based reporting with accuracy, transparency, and integrity.

    Facebook X (Twitter) Instagram Pinterest YouTube

    A common budget that makes common sense – POLITICO

    September 18, 2026

    Google DeepMind launches institute to widen the AGI debate

    September 18, 2026

    Alibaba Qwen Releases Qwen3.8-Omni-Flash: A 1M-Context Omni-Modal Model Built Around Agentic Audio-Video Understanding and Tool Use

    September 18, 2026

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Type above and press Enter to search. Press Esc to cancel.