logo
0
0
Login

Qwen3-Omni

Chat

Overview

Introduction

Qwen3-Omni is the natively end-to-end multilingual omni-modal foundation models. It processes text, images, audio, and video, and delivers real-time streaming responses in both text and natural speech. We introduce several architectural upgrades to improve performance and efficiency. Key features:

  • State-of-the-art across modalities: Early text-first pretraining and mixed multimodal training provide native multimodal support. While achieving strong audio and audio-video results, unimodal text and image performance does not regress. Reaches SOTA on 22 of 36 audio/video benchmarks and open-source SOTA on 32 of 36; ASR, audio understanding, and voice conversation performance is comparable to Gemini 2.5 Pro.

  • Multilingual: Supports 119 text languages, 19 speech input languages, and 10 speech output languages.

    • Speech Input: English, Chinese, Korean, Japanese, German, Russian, Italian, French, Spanish, Portuguese, Malay, Dutch, Indonesian, Turkish, Vietnamese, Cantonese, Arabic, Urdu.
    • Speech Output: English, Chinese, French, German, Russian, Italian, Spanish, Portuguese, Japanese, Korean.
  • Novel Architecture: MoE-based Thinker–Talker design with AuT pretraining for strong general representations, plus a multi-codebook design that drives latency to a minimum.

  • Real-time Audio/Video Interaction: Low-latency streaming with natural turn-taking and immediate text or speech responses.

  • Flexible Control: Customize behavior via system prompts for fine-grained control and easy adaptation.

  • Detailed Audio Captioner: Qwen3-Omni-30B-A3B-Captioner is now open source: a general-purpose, highly detailed, low-hallucination audio captioning model that fills a critical gap in the open-source community.

Model Architecture

Cookbooks for Usage Cases

Qwen3-Omni supports a wide range of multimodal application scenarios, covering various domain tasks involving audio, image, video, and audio-visual modalities. Below are several cookbooks demonstrating the usage cases of Qwen3-Omni and these cookbooks include our actual execution logs. You can first follow the QuickStart guide to download the model and install the necessary inference environment dependencies, then run and experiment locally—try modifying prompts or switching model types, and enjoy exploring the capabilities of Qwen3-Omni!

CategoryCookbookDescriptionOpen
AudioSpeech RecognitionSpeech recognition, supporting multiple languages and long audio.Open In Colab
Speech TranslationSpeech-to-Text / Speech-to-Speech translation.Open In Colab
Music AnalysisDetailed analysis and appreciation of any music, including style, genre, rhythm, etc.Open In Colab
Sound AnalysisDescription and analysis of various sound effects and audio signals.Open In Colab
Audio CaptionAudio captioning, detailed description of any audio input.Open In Colab
Mixed Audio AnalysisAnalysis of mixed audio content, such as speech, music, and environmental sounds.Open In Colab
VisualOCROCR for complex images.Open In Colab
Object GroundingTarget detection and grounding.Open In Colab
Image QuestionAnswering arbitrary questions about any image.Open In Colab
Image MathSolving complex mathematical problems in images, highlighting the capabilities of the Thinking model.Open In Colab
Video DescriptionDetailed description of video content.Open In Colab
Video NavigationGenerating navigation commands from first-person motion videos.Open In Colab
Video Scene TransitionAnalysis of scene transitions in videos.Open In Colab
Audio-VisualAudio Visual QuestionAnswering arbitrary questions in audio-visual scenarios, demonstrating the model's ability to model temporal alignment between audio and video.Open In Colab
Audio Visual InteractionInteractive communication with the model using audio-visual inputs, including task specification via audio.Open In Colab
Audio Visual DialogueConversational interaction with the model using audio-visual inputs, showcasing its capabilities in casual chat and assistant-like behavior.Open In Colab
AgentAudio Function CallUsing audio input to perform function calls, enabling agent-like behaviors.Open In Colab
Downstream Task Fine-tuningOmni CaptionerIntroduction and capability demonstration of Qwen3-Omni-30B-A3B-Captioner, a downstream fine-tuned model based on Qwen3-Omni-30B-A3B-Instruct, illustrating the strong generalization ability of the Qwen3-Omni foundation model.Open In Colab

QuickStart

Model Description and Download

Below is the description of all Qwen3-Omni models. Please select and download the model that fits your needs.

Model NameDescription
Qwen3-Omni-30B-A3B-InstructThe Instruct model of Qwen3-Omni-30B-A3B, containing both thinker and talker, supporting audio, video, and text input, with audio and text output. For more information, please read the Qwen3-Omni Technical Report.
Qwen3-Omni-30B-A3B-ThinkingThe Thinking model of Qwen3-Omni-30B-A3B, containing the thinker component, equipped with chain-of-thought reasoning, supporting audio, video, and text input, with text output. For more information, please read the Qwen3-Omni Technical Report.
Qwen3-Omni-30B-A3B-CaptionerA downstream audio fine-grained caption model fine-tuned from Qwen3-Omni-30B-A3B-Instruct, which produces detailed, low-hallucination captions for arbitrary audio inputs. It contains the thinker, supporting audio input and text output. For more information, you can refer to the model's cookbook.

During loading in Hugging Face Transformers or vLLM, model weights will be automatically downloaded based on the model name. However, if your runtime environment is not conducive to downloading weights during execution, you can refer to the following commands to manually download the model weights to a local directory:

# Download through ModelScope (recommended for users in Mainland China) pip install -U modelscope modelscope download --model Qwen/Qwen3-Omni-30B-A3B-Instruct --local_dir ./Qwen3-Omni-30B-A3B-Instruct modelscope download --model Qwen/Qwen3-Omni-30B-A3B-Thinking --local_dir ./Qwen3-Omni-30B-A3B-Thinking modelscope download --model Qwen/Qwen3-Omni-30B-A3B-Captioner --local_dir ./Qwen3-Omni-30B-A3B-Captioner # Download through Hugging Face pip install -U "huggingface_hub[cli]" huggingface-cli download Qwen/Qwen3-Omni-30B-A3B-Instruct --local-dir ./Qwen3-Omni-30B-A3B-Instruct huggingface-cli download Qwen/Qwen3-Omni-30B-A3B-Thinking --local-dir ./Qwen3-Omni-30B-A3B-Thinking huggingface-cli download Qwen/Qwen3-Omni-30B-A3B-Captioner --local-dir ./Qwen3-Omni-30B-A3B-Captioner

Transformers Usage

Installation

The Hugging Face Transformers code for Qwen3-Omni has been successfully merged, but the PyPI package has not yet been released. Therefore, you need to install it from source using the following command. We strongly recommend that you create a new Python environment to avoid environment runtime issues.

# If you already have transformers installed, please uninstall it first, or create a new Python environment # pip uninstall transformers pip install git+https://github.com/huggingface/transformers pip install accelerate

We offer a toolkit to help you handle various types of audio and visual input more conveniently, providing an API-like experience. This includes support for base64, URLs, and interleaved audio, images, and videos. You can install it using the following command and make sure your system has ffmpeg installed:

pip install qwen-omni-utils -U

Additionally, we recommend using FlashAttention 2 when running with Hugging Face Transformers to reduce GPU memory usage. However, if you are primarily using vLLM for inference, this installation is not necessary, as vLLM includes FlashAttention 2 by default.

pip install -U flash-attn --no-build-isolation

Also, you should have hardware that is compatible with FlashAttention 2. Read more about it in the official documentation of the FlashAttention repository. FlashAttention 2 can only be used when a model is loaded in torch.float16 or torch.bfloat16.

Code Snippet

Here is a code snippet to show you how to use Qwen3-Omni with transformers and qwen_omni_utils:

import soundfile as sf from transformers import Qwen3OmniMoeForConditionalGeneration, Qwen3OmniMoeProcessor from qwen_omni_utils import process_mm_info MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Instruct" # MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Thinking" model = Qwen3OmniMoeForConditionalGeneration.from_pretrained( MODEL_PATH, dtype="auto", device_map="auto", attn_implementation="flash_attention_2", ) processor = Qwen3OmniMoeProcessor.from_pretrained(MODEL_PATH) conversation = [ { "role": "user", "content": [ {"type": "image", "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cars.jpg"}, {"type": "audio", "audio": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cough.wav"}, {"type": "text", "text": "What can you see and hear? Answer in one short sentence."} ], }, ] # Set whether to use audio in video USE_AUDIO_IN_VIDEO = True # Preparation for inference text = processor.apply_chat_template(conversation, add_generation_prompt=True, tokenize=False) audios, images, videos = process_mm_info(conversation, use_audio_in_video=USE_AUDIO_IN_VIDEO) inputs = processor(text=text, audio=audios, images=images, videos=videos, return_tensors="pt", padding=True, use_audio_in_video=USE_AUDIO_IN_VIDEO) inputs = inputs.to(model.device).to(model.dtype) # Inference: Generation of the output text and audio text_ids, audio = model.generate(**inputs, speaker="Ethan", thinker_return_dict_in_generate=True, use_audio_in_video=USE_AUDIO_IN_VIDEO) text = processor.batch_decode(text_ids.sequences[:, inputs["input_ids"].shape[1] :], skip_special_tokens=True, clean_up_tokenization_spaces=False) print(text) if audio is not None: sf.write( "output.wav", audio.reshape(-1).detach().cpu().numpy(), samplerate=24000, )

Here are some more advanced usage examples. You can expand the sections below to learn more.

Batch inference

The model can batch inputs composed of mixed samples of various types such as text, images, audio, and videos as input when return_audio=False is set. Here is an example.

from transformers import Qwen3OmniMoeForConditionalGeneration, Qwen3OmniMoeProcessor from qwen_omni_utils import process_mm_info MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Instruct" # MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Thinking" model = Qwen3OmniMoeForConditionalGeneration.from_pretrained( MODEL_PATH, dtype="auto", device_map="auto", attn_implementation="flash_attention_2", ) model.disable_talker() processor = Qwen3OmniMoeProcessor.from_pretrained(MODEL_PATH) # Conversation with image only conversation1 = [ { "role": "user", "content": [ {"type": "image", "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cars.jpg"}, {"type": "text", "text": "What can you see in this image? Answer in one sentence."}, ] } ] # Conversation with audio only conversation2 = [ { "role": "user", "content": [ {"type": "audio", "audio": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cough.wav"}, {"type": "text", "text": "What can you hear in this audio?"}, ] } ] # Conversation with pure text and system prompt conversation3 = [ { "role": "system", "content": [ {"type": "text", "text": "You are Qwen-Omni."} ], }, { "role": "user", "content": "Who are you?" } ] # Conversation with mixed media conversation4 = [ { "role": "user", "content": [ {"type": "image", "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cars.jpg"}, {"type": "audio", "audio": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cough.wav"}, {"type": "text", "text": "What can you see and hear? Answer in one sentence."} ], } ] # Combine messages for batch processing conversations = [conversation1, conversation2, conversation3, conversation4] # Set whether to use audio in video USE_AUDIO_IN_VIDEO = True # Preparation for batch inference text = processor.apply_chat_template(conversations, add_generation_prompt=True, tokenize=False) audios, images, videos = process_mm_info(conversations, use_audio_in_video=USE_AUDIO_IN_VIDEO) inputs = processor(text=text, audio=audios, images=images, videos=videos, return_tensors="pt", padding=True, use_audio_in_video=USE_AUDIO_IN_VIDEO) inputs = inputs.to(model.device).to(model.dtype) # Batch inference does not support returning audio text_ids, audio = model.generate(**inputs, return_audio=False, thinker_return_dict_in_generate=True, use_audio_in_video=USE_AUDIO_IN_VIDEO) text = processor.batch_decode(text_ids.sequences[:, inputs["input_ids"].shape[1] :], skip_special_tokens=True, clean_up_tokenization_spaces=False) print(text)
Use audio output or not

The model supports both text and audio outputs. If users do not need audio outputs, they can call model.disable_talker() after initializing the model. This option will save about 10GB of GPU memory, but the return_audio option for the generate function will only allow False.

model = Qwen3OmniMoeForConditionalGeneration.from_pretrained( "Qwen/Qwen3-Omni-30B-A3B-Instruct", dtype="auto", device_map="auto", attn_implementation="flash_attention_2", ) model.disable_talker()

For a more flexible experience, we recommend that users decide whether to return audio when the generate function is called. If return_audio is set to False, the model will only return text outputs, resulting in faster text responses.

model = Qwen3OmniMoeForConditionalGeneration.from_pretrained( "Qwen/Qwen3-Omni-30B-A3B-Instruct", dtype="auto", device_map="auto", attn_implementation="flash_attention_2", ) ... text_ids, _ = model.generate(..., return_audio=False)``` </details> <details> <summary>Change voice type of output audio</summary> Qwen3-Omni supports changing the voice of the output audio. The `"Qwen/Qwen3-Omni-30B-A3B-Instruct"` checkpoint supports three voice types as follows: | Voice Type | Gender | Description | |------------|--------|-------------| | Ethan | Male | A bright, upbeat voice with infectious energy and a warm, approachable vibe. | | Chelsie | Female | A honeyed, velvety voice that carries a gentle warmth and luminous clarity. | | Aiden | Male | A warm, laid-back American voice with a gentle, boyish charm. | Users can use the `speaker` parameter of the `generate` function to specify the voice type. By default, if `speaker` is not specified, the voice type is `Ethan`. ```python text_ids, audio = model.generate(..., speaker="Ethan")
text_ids, audio = model.generate(..., speaker="Chelsie")
text_ids, audio = model.generate(..., speaker="Aiden")

vLLM Usage

Installation

We strongly recommend using vLLM for inference and deployment of the Qwen3-Omni series models. Since our code is currently in the pull request stage, and audio output inference support for the Instruct model will be released in the near future, you can follow the commands below to install vLLM from source. Please note that we recommend you create a new Python environment to avoid runtime environment conflicts and incompatibilities. For more details on compiling vLLM from source, please refer to the vLLM official documentation.

git clone -b qwen3_omni https://github.com/wangxiongts/vllm.git cd vllm pip install -r requirements/build.txt pip install -r requirements/cuda.txt export VLLM_PRECOMPILED_WHEEL_LOCATION=https://wheels.vllm.ai/a5dd03c1ebc5e4f56f3c9d3dc0436e9c582c978f/vllm-0.9.2-cp38-abi3-manylinux1_x86_64.whl VLLM_USE_PRECOMPILED=1 pip install -e . -v --no-build-isolation # If you meet an "Undefined symbol" error while using VLLM_USE_PRECOMPILED=1, please use "pip install -e . -v" to build from source. # Install the Transformers pip install git+https://github.com/huggingface/transformers pip install accelerate pip install qwen-omni-utils -U pip install -U flash-attn --no-build-isolation

Inference

You can use the following code for vLLM inference. The limit_mm_per_prompt parameter specifies the maximum number of each modality's data allowed per message. Since vLLM needs to pre-allocate GPU memory, larger values will require more GPU memory; if OOM issues occur, try reducing this value. Setting tensor_parallel_size greater than one enables multi-GPU parallel inference, improving concurrency and throughput. In addition, max_num_seqs indicates the number of sequences that vLLM processes in parallel during each inference step. A larger value requires more GPU memory but enables higher batch inference speed. For more details, please refer to the vLLM official documentation. Below is a simple example of how to run Qwen3-Omni with vLLM:

import os import torch from vllm import LLM, SamplingParams from transformers import Qwen3OmniMoeProcessor from qwen_omni_utils import process_mm_info if __name__ == '__main__': # vLLM engine v1 not supported yet os.environ['VLLM_USE_V1'] = '0' MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Instruct" # MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Thinking" llm = LLM( model=MODEL_PATH, trust_remote_code=True, gpu_memory_utilization=0.95, tensor_parallel_size=torch.cuda.device_count(), limit_mm_per_prompt={'image': 3, 'video': 3, 'audio': 3}, max_num_seqs=8, max_model_len=32768, seed=1234, ) sampling_params = SamplingParams( temperature=0.6, top_p=0.95, top_k=20, max_tokens=16384, ) processor = Qwen3OmniMoeProcessor.from_pretrained(MODEL_PATH) messages = [ { "role": "user", "content": [ {"type": "video", "video": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/draw.mp4"} ], } ] text = processor.apply_chat_template( messages, tokenize=False, add_generation_prompt=True, ) audios, images, videos = process_mm_info(messages, use_audio_in_video=True) inputs = { 'prompt': text, 'multi_modal_data': {}, "mm_processor_kwargs": { "use_audio_in_video": True, }, } if images is not None: inputs['multi_modal_data']['image'] = images if videos is not None: inputs['multi_modal_data']['video'] = videos if audios is not None: inputs['multi_modal_data']['audio'] = audios outputs = llm.generate([inputs], sampling_params=sampling_params) print(outputs[0].outputs[0].text)

Here are some more advanced usage examples. You can expand the sections below to learn more.

Batch inference

Using vLLM enables fast batch inference, which can help you efficiently process large volumes of data or conduct benchmarking. Refer to the following code example:

import os import torch from vllm import LLM, SamplingParams from transformers import Qwen3OmniMoeProcessor from qwen_omni_utils import process_mm_info def build_input(processor, messages, use_audio_in_video): text = processor.apply_chat_template( messages, tokenize=False, add_generation_prompt=True, ) audios, images, videos = process_mm_info(messages, use_audio_in_video=use_audio_in_video) inputs = { 'prompt': text, 'multi_modal_data': {}, "mm_processor_kwargs": { "use_audio_in_video": use_audio_in_video, }, } if images is not None: inputs['multi_modal_data']['image'] = images if videos is not None: inputs['multi_modal_data']['video'] = videos if audios is not None: inputs['multi_modal_data']['audio'] = audios return inputs if __name__ == '__main__': # vLLM engine v1 not supported yet os.environ['VLLM_USE_V1'] = '0' MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Instruct" # MODEL_PATH = "Qwen/Qwen3-Omni-30B-A3B-Thinking" llm = LLM( model=MODEL_PATH, trust_remote_code=True, gpu_memory_utilization=0.95, tensor_parallel_size=torch.cuda.device_count(), limit_mm_per_prompt={'image': 3, 'video': 3, 'audio': 3}, max_num_seqs=8, max_model_len=32768, seed=1234, ) sampling_params = SamplingParams( temperature=0.6, top_p=0.95, top_k=20, max_tokens=16384, ) processor = Qwen3OmniMoeProcessor.from_pretrained(MODEL_PATH) # Conversation with image only conversation1 = [ { "role": "user", "content": [ {"type": "image", "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cars.jpg"}, {"type": "text", "text": "What can you see in this image? Answer in one sentence."}, ] } ] # Conversation with audio only conversation2 = [ { "role": "user", "content": [ {"type": "audio", "audio": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cough.wav"}, {"type": "text", "text": "What can you hear in this audio?"}, ] } ] # Conversation with pure text and system prompt conversation3 = [ { "role": "system", "content": [ {"type": "text", "text": "You are Qwen-Omni."} ], }, { "role": "user", "content": "Who are you? Answer in one sentence." } ] # Conversation with mixed media conversation4 = [ { "role": "user", "content": [ {"type": "image", "image": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cars.jpg"}, {"type": "audio", "audio": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/cookbook/asr_fr.wav"}, {"type": "text", "text": "What can you see and hear? Answer in one sentence."} ], } ] USE_AUDIO_IN_VIDEO = True # Combine messages for batch processing conversations = [conversation1, conversation2, conversation3, conversation4] inputs = [build_input(processor, messages, USE_AUDIO_IN_VIDEO) for messages in conversations] outputs = llm.generate(inputs, sampling_params=sampling_params) result = [outputs[i].outputs[0].text for i in range(len(outputs))] print(result)
vLLM Serve Usage

vLLM serve for Qwen3-Omni currently only supports the thinker model. The use_audio_in_video parameter is not available in vLLM serve; you can handle this by separately passing video and audio inputs for processing. You can start vLLM serve through the following command:

# Qwen3-Omni-30B-A3B-Instruct for single GPU vllm serve Qwen/Qwen3-Omni-30B-A3B-Instruct --port 8901 --host 127.0.0.1 --dtype bfloat16 --max-model-len 32768 --allowed-local-media-path / -tp 1 # Qwen3-Omni-30B-A3B-Instruct for multi-GPU (example on 4 GPUs) vllm serve Qwen/Qwen3-Omni-30B-A3B-Instruct --port 8901 --host 127.0.0.1 --dtype bfloat16 --max-model-len 65536 --allowed-local-media-path / -tp 4 # Qwen/Qwen3-Omni-30B-A3B-Thinking for single GPU vllm serve Qwen/Qwen3-Omni-30B-A3B-Thinking --port 8901 --host 127.0.0.1 --dtype bfloat16 --max-model-len 32768 --allowed-local-media-path / -tp 1 # Qwen/Qwen3-Omni-30B-A3B-Thinking for multi-GPU (example on 4 GPUs) vllm serve Qwen/Qwen3-Omni-30B-A3B-Thinking --port 8901 --host 127.0.0.1 --dtype bfloat16 --max-model-len 65536 --allowed-local-media-path / -tp 4

Then you can use the chat API as below (via curl, for example):

curl http://localhost:8901/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "messages": [ {"role": "system", "content": "You are a helpful assistant."}, {"role": "user", "content": [ {"type": "image_url", "image_url": {"url": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cars.jpg"}}, {"type": "audio_url", "audio_url": {"url": "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-Omni/demo/cough.wav"}}, {"type": "text", "text": "What can you see and hear? Answer in one sentence."} ]} ] }'

Usage Tips (Recommended Reading)

Minimum GPU memory requirements

ModelPrecision15s Video30s Video60s Video120s Video
Qwen3-Omni-30B-A3B-InstructBF1678.85 GB88.52 GB107.74 GB144.81 GB
Qwen3-Omni-30B-A3B-ThinkingBF1668.74 GB77.79 GB95.76 GB131.65 GB

Note: The table above presents the theoretical minimum memory requirements for inference with transformers and BF16 precision, tested with attn_implementation="flash_attention_2". The Instruct model includes both the thinker and talker components, whereas the Thinking model includes only the thinker part.

Prompt for Audio-Visual Interaction

When using Qwen3-Omni for audio-visual multimodal interaction, where the input consists of a video and its corresponding audio (with the audio serving as a query), we recommend using the following system prompt. This setup helps the model maintain high reasoning capability while better assuming interactive roles such as a smart assistant. Additionally, the text generated by the thinker will be more readable, with a natural, conversational tone and without complex formatting that is difficult to vocalize, leading to more stable and fluent audio output from the talker. You can customize the user_system_prompt field in the system prompt to include character settings or other role-specific descriptions as needed.

user_system_prompt = "You are Qwen-Omni, a smart voice assistant created by Alibaba Qwen." message = { "role": "system", "content": [ {"type": "text", "text": f"{user_system_prompt} You are a virtual voice assistant with no gender or age.\nYou are communicating with the user.\nIn user messages, “I/me/my/we/our” refer to the user and “you/your” refer to the assistant. In your replies, address the user as “you/your” and yourself as “I/me/my”; never mirror the user’s pronouns—always shift perspective. Keep original pronouns only in direct quotes; if a reference is unclear, ask a brief clarifying question.\nInteract with users using short(no more than 50 words), brief, straightforward language, maintaining a natural tone.\nNever use formal phrasing, mechanical expressions, bullet points, overly structured language. \nYour output must consist only of the spoken content you want the user to hear. \nDo not include any descriptions of actions, emotions, sounds, or voice changes. \nDo not use asterisks, brackets, parentheses, or any other symbols to indicate tone or actions. \nYou must answer users' audio or text questions, do not directly describe the video content. \nYou should communicate in the same language strictly as the user unless they request otherwise.\nWhen you are uncertain (e.g., you can't see/hear clearly, don't understand, or the user makes a comment rather than asking a question), use appropriate questions to guide the user to continue the conversation.\nKeep replies concise and conversational, as if talking face-to-face."} ] }

Best Practices for the Thinking Model

The Qwen3-Omni-30B-A3B-Thinking model is primarily designed for understanding and interacting with multimodal inputs, including text, audio, image, and video. To achieve optimal performance, we recommend that users include an explicit textual instruction or task description in each round of dialogue alongside the multimodal input. This helps clarify the intent and significantly enhances the model's ability to leverage its reasoning capabilities. For example:

messages = [ { "role": "user", "content": [ {"type": "audio", "audio": "/path/to/audio.wav"}, {"type": "image", "image": "/path/to/image.png"}, {"type": "video", "video": "/path/to/video.mp4"}, {"type": "text", "text": "Analyze this audio, image, and video together."}, ], } ]

Use audio in video

In multimodal interaction, user-provided videos are often accompanied by audio (such as spoken questions or sounds from events in the video). This information helps the model provide a better interactive experience. We provide the following options for users to decide whether to use the audio from a video.

# In data preprocessing audios, images, videos = process_mm_info(messages, use_audio_in_video=True)
# For Transformers text = processor.apply_chat_template(messages, add_generation_prompt=True, tokenize=False) inputs = processor(text=text, audio=audios, images=images, videos=videos, return_tensors="pt", padding=True, use_audio_in_video=True) text_ids, audio = model.generate(..., use_audio_in_video=True) # For vLLM text = processor.apply_chat_template(messages, add_generation_prompt=True, tokenize=False) inputs = { 'prompt': text, 'multi_modal_data': {}, "mm_processor_kwargs": { "use_audio_in_video": True, }, }

It is worth noting that during a multi-round conversation, the use_audio_in_video parameter must be set consistently across these steps; otherwise, unexpected results may occur.

Evaluation

Performance of Qwen3-Omni

Qwen3-Omni maintains state-of-the-art performance on text and visual modalities without degradation relative to same-size single-model Qwen counterparts. Across 36 audio and audio-visual benchmarks, it achieves open-source SOTA on 32 and sets the SOTA on 22, outperforming strong closed-source systems such as Gemini 2.5 Pro and GPT-4o.

Text -> Text
GPT-4o-0327Qwen3-235B-A22B
Non Thinking
Qwen3-30B-A3B-Instruct-2507Qwen3-Omni-30B-A3B-InstructQwen3-Omni-Flash-Instruct
General
Tasks
MMLU-Redux91.389.289.386.686.8
GPQA66.962.970.469.669.7
ReasoningAIME2526.724.761.365.065.9
ZebraLogic52.637.790.076.076.1
CodeMultiPL-E82.779.383.881.481.5
Alignment
Tasks
IFEval83.983.284.781.081.7
Creative Writing v384.980.486.080.681.8
WritingBench75.577.085.582.683.0
AgentBFCL-v366.568.065.164.465.0
Multilingual
Tasks
MultiIF70.470.267.964.064.7
PolyMATH25.527.043.137.939.3
Gemini-2.5-Flash
Thinking
Qwen3-235B-A22B
Thinking
Qwen3-30B-A3B-Thinking-2507Qwen3-Omni-30B-A3B-ThinkingQwen3-Omni-Flash-Thinking
General
Tasks
MMLU-Redux92.192.791.488.889.7
GPQA82.871.173.473.173.1
ReasoningAIME2572.081.585.073.774.0
LiveBench 2024112574.377.176.871.870.3
CodeMultiPL-E84.579.981.380.681.0
Alignment
Tasks
IFEval89.883.488.985.185.2
Arena-Hard v256.761.556.055.157.8
Creative Writing v385.084.684.482.583.6
WritingBench83.980.385.085.585.9
AgentBFCL-v368.670.872.463.264.5
Multilingual
Tasks
MultiIF74.471.976.472.973.2
PolyMATH49.854.752.647.148.7
Audio -> Text
Seed-ASRVoxtral-MiniVoxtral-SmallGPT-4o-TranscribeGemini-2.5-ProQwen2.5-OmniQwen3-Omni-30B-A3B-InstructQwen3-Omni-Flash-Instruct
EN & ZH ASR (wer)
Wenetspeech
net | meeting
4.66 | 5.6924.30 | 31.5320.33 | 26.0815.30 | 32.2714.43 | 13.475.91 | 7.654.69 | 5.894.62 | 5.75
Librispeech
clean | other
1.58 | 2.841.88 | 4.121.56 | 3.301.39 | 3.752.89 | 3.561.74 | 3.451.22 | 2.481.27 | 2.44
CV15-en-9.477.7910.019.897.616.055.94
CV15-zh-24.6719.309.848.005.134.314.28
Fleurs-en3.403.963.773.322.943.772.722.74
Fleurs-zh2.6912.227.982.442.712.542.202.19
Multilingual ASR (wer)
Fleurs-avg
(19 lang)
-15.678.094.485.5514.045.335.31
Lyric ASR (wer)
MIR-1K (vocal-only)6.4523.3318.7311.879.858.155.905.85
Opencpop-test2.9831.0116.067.936.492.841.542.02
S2TT (BLEU)
Fleurs-en2xx-30.3537.85-39.2529.2237.5036.22
Fleurs-xx2en-27.5432.81-35.4128.6131.0830.71
Fleurs-zh2xx-17.0322.05-26.6317.9725.1725.10
Fleurs-xx2zh-28.7534.82-37.5027.6833.1331.19
GPT-4o-AudioGemini-2.5-FlashGemini-2.5-ProQwen2.5-OmniQwen3-Omni-30B-A3B-InstructQwen3-Omni-30B-A3B-ThinkingQwen3-Omni-Flash-InstructQwen3-Omni-Flash-Thinking
VoiceBench
AlpacaEval95.696.194.389.994.896.495.496.8
CommonEval89.888.388.476.790.890.591.090.9
WildVoice91.692.193.477.791.690.592.390.9
SD-QA75.584.590.156.476.978.176.878.5
MMSU80.366.171.161.768.183.068.484.3
OpenBookQA89.256.992.380.989.794.391.495.0
BBH84.183.992.666.780.488.980.689.6
IFEval76.083.885.753.577.880.675.280.8
AdvBench98.798.998.199.299.397.299.498.9
Overall86.883.489.673.685.588.885.689.5
Audio Reasoning
MMAU-v05.15.2562.571.877.465.577.575.477.676.5
MMSU56.470.277.762.669.070.269.171.3
Best Specialist
Models
GPT-4o-AudioGemini-2.5-ProQwen2.5-OmniQwen3-Omni-30B-A3B-InstructQwen3-Omni-Flash-Instruct
RUL-MuchoMusic47.6 (Audio Flamingo 3)36.149.447.352.052.1
GTZAN
Acc.
87.9 (CLaMP 3)76.581.081.793.093.1
MTG Genre
Micro F1
35.8 (MuQ-MuLan)25.332.632.539.039.5
MTG Mood/Theme
Micro F1
10.9 (MuQ-MuLan)11.314.18.921.021.7
MTG Instrument
Micro F1
39.8 (MuQ-MuLan)34.233.022.640.540.7
MTG Top50
Micro F1
33.2 (MuQ-MuLan)25.026.121.636.736.9
MagnaTagATune
Micro F1
41.6 (MuQ)29.228.130.144.346.8
Vision -> Text
DatasetsGPT4-oGemini-2.0-FlashQwen2.5-VL
72B
Qwen3-Omni-30B-A3B
-Instruct
Qwen3-Omni-Flash
-Instruct
General Visual Question Answering
MMStar64.771.470.868.569.3
HallusionBench55.056.355.259.758.5
MM-MT-Bench7.76.77.67.47.6
Math & STEM
MMMU_val69.171.370.269.169.8
MMMU_pro51.956.151.157.057.6
MathVista_mini63.871.474.875.977.4
MathVision_full30.448.638.156.358.3
Documentation Understanding
AI2D84.686.788.785.286.4
ChartQA_test86.764.689.586.887.1
Counting
CountBench87.991.293.690.090.0
Video Understanding
Video-MME71.972.473.370.571.4
LVBench30.857.947.350.251.1
MLVU64.671.074.675.275.7
DatasetsGemini-2.5-flash-thinkingInternVL-3.5-241B-A28BQwen3-Omni-30B-A3B-ThinkingQwen3-Omni-Flash-Thinking
General Visual Question Answering
MMStar75.577.974.975.5
HallusionBench61.157.362.863.4
MM-MT-Bench7.88.08.0
Math & STEM
MMMU_val76.977.775.675.0
MMMU_pro65.860.560.8
MathVista_mini77.682.780.081.2
MathVision_full62.363.962.963.8
Documentation Understanding
AI2D_test88.687.386.186.8
ChartQA_test88.089.589.3
Counting
CountBench88.688.692.5
Video Understanding
Video-MME79.672.969.769.8
LVBench64.549.049.5
MLVU82.178.272.973.9
AudioVisual -> Text
DatasetsPrevious Open-source SoTAGemini-2.5-FlashQwen2.5-OmniQwen3-Omni-30B-A3B-InstructQwen3-Omni-Flash-Instruct
WorldSense47.150.945.454.054.1
DatasetsPrevious Open-source SoTAGemini-2.5-Flash-ThinkingQwen3-Omni-30B-A3B-ThinkingQwen3-Omni-Flash-Thinking
DailyOmni69.872.775.876.2
VideoHolmes55.649.557.357.3
Zero-shot Speech Generation
DatasetsModelPerformance
 Content Consistency
SEED
test-zh | test-en
Seed-TTSICL1.11 | 2.24
Seed-TTSRL1.00 | 1.94
MaskGCT2.27 | 2.62
E2 TTS1.97 | 2.19
F5-TTS1.56 | 1.83
Spark TTS1.20 | 1.98
CosyVoice 21.45 | 2.57
CosyVoice 30.71 | 1.45
Qwen2.5-Omni-7B1.42 | 2.33
Qwen3-Omni-30B-A3B1.07 | 1.39
Multilingual Speech Generation
LanguageContent ConsistencySpeaker Similarity
Qwen3-Omni-30B-A3BMiniMaxElevenLabsQwen3-Omni-30B-A3BMiniMaxElevenLabs
Chinese0.7162.25216.0260.7720.7800.677
English1.0692.1642.3390.7730.7560.613
German0.7771.9060.5720.7380.7330.614
Italian1.0671.5431.7430.7420.6990.579
Portuguese1.8721.8771.3310.7700.8050.711
Spanish1.7651.0291.0840.7440.7620.615
Japanese3.6313.51910.6460.7630.7760.738
Korean1.6701.7471.8650.7780.7760.700
French2.5054.0995.2160.6890.6280.535
Russian3.9864.2813.8780.7590.7610.676
Cross-Lingual Speech Generation
LanguageQwen3-Omni-30B-A3BCosyVoice3CosyVoice2
en-to-zh5.375.0913.5
ja-to-zh3.323.0548.1
ko-to-zh0.991.067.70
zh-to-en2.762.986.47
ja-to-en3.314.2017.1
ko-to-en3.344.1911.2
zh-to-ja8.297.0813.1
en-to-ja7.536.8014.9
ko-to-ja4.243.935.86
zh-to-ko5.1314.424.8
en-to-ko4.965.8721.9
ja-to-ko6.237.9221.5

Setting for Evaluation

  • Decoding Strategy: For the Qwen3-Omni series across all evaluation benchmarks, Instruct models use greedy decoding during generation without sampling. For Thinking models, the decoding parameters should be taken from the generation_config.json file in the checkpoint.
  • Benchmark-Specific Formatting: For the majority of evaluation benchmarks, they come with their own ChatML formatting to embed the question or prompt. It should be noted that all video data are set to fps=2 during evaluation.
  • Default Prompts: For tasks in certain benchmarks that do not include a prompt, we use the following prompt settings:
Task TypePrompt
Auto Speech Recognition (ASR) for Chinese请将这段中文语音转换为纯文本。
Auto Speech Recognition (ASR) for Other languagesTranscribe the audio into text.
Speech-to-Text Translation (S2TT)Listen to the provided <source_language> speech and produce a translation in <target_language> text.
Song Lyrics RecognitionTranscribe the song lyrics into text without any punctuation, separate lines with line breaks, and output only the lyrics without additional explanations.
  • System Prompt: No system prompt should be set for any evaluation benchmark.
  • Input Sequence: The question or prompt should be input as user text. Unless otherwise specified by the benchmark, the text should come after multimodal data in the sequence. For example:
messages = [ { "role": "user", "content": [ {"type": "audio", "audio": "/path/to/audio.wav"}, {"type": "image", "image": "/path/to/image.png"}, {"type": "video", "video": "/path/to/video.mp4"}, {"type": "text", "text": "Describe the audio, image and video."}, ], }, ]

About

No description, topics, or website provided.