Alibaba’s Tongyi Lab has launched Qwen-Audio-3.0-TTS, a production-oriented text-to-speech system that ships in two distinct tiers — Flash and Plus — covering 16 languages. The model is delivered exclusively as a hosted service through Alibaba Cloud Model Studio rather than as downloadable weights, marking a clear bet on API-first deployment for voice synthesis workloads.
Two tiers, one model family
Flash is optimized for real-time interaction, with first-packet latency around 300 milliseconds, making it suitable for voice agents and live assistants where response speed is critical. Plus prioritizes generation quality, targeting audiobooks, narration, and dubbing where naturalness and timbre fidelity matter more than raw speed. Both variants share the same underlying architecture but are tuned for different points on the latency-quality curve.
The API is accessed over a bidirectional WebSocket streaming protocol and supports PCM, WAV, MP3, and Opus output at sample rates up to 48 kHz. Alibaba provides the DashScope SDK alongside raw WebSocket examples in Python, Java, Go, C#, PHP, and Node.js, with service regions in Singapore and Beijing.
Technical foundation
Two design decisions anchor the system. A 12.5 Hz low-frame-rate speech tokenizer reduces autoregressive decoding cost by generating fewer tokens per second of audio, directly cutting inference latency. A five-stage progressive training pipeline coordinates the language model and flow-matching components through independent pretraining, joint high-quality data annealing, and separate reinforcement learning stages for the LM and the flow-matching module. The research team reports that this pipeline improves content consistency, prosodic naturalness, voice fidelity, perceptual quality, and robustness against noisy reference audio.
The model also handles one-pass long-form synthesis up to three minutes, hard text-normalization cases, and vocoder super-resolution for 48 kHz output.
Multilingual coverage across 16 languages
Qwen-Audio-3.0-TTS supports Arabic, Chinese, English, French, German, Indonesian, Italian, Japanese, Korean, Malay, Portuguese, Russian, Spanish, Tagalog, Thai, and Vietnamese. Seven of these languages are new additions compared to the prior CosyVoice-3.0 line. The model also covers 20 Chinese dialect regions.
On multilingual intelligibility, the family achieves the best word or character error rate in 10 of the 16 languages. Flash delivers the lowest average WER at 3.87, while Plus follows closely at 3.96. On speaker similarity, Plus ranks first across all 16 languages with an average of 82.75, with Flash at 80.44. A curated preset voice library spanning all 16 supported languages is also included, so teams can ship a voice without cloning one first.
Inline tag control for fine-grained expression
The system embeds 86 inline tags directly inside the target text for localized control at the phrase and word level. These are split into two categories. Control tags such as [excited]codecodecode, [sad]codecodecode, [whispers]codecodecode, and [asmr]codecodecode set an emotion or style that persists until the next tag. Rich-language tags such as [laughing]codecodecode, [gasp]codecodecode, and [clears throat]codecodecode insert a single vocal effect without changing the surrounding tone. A worked example from the documentation: [excited]What a beautiful day today![laughing]Let's go out and have fun together!codecodecode These emotion and rich-language tags are supported only in unidirectional streaming mode.
Leaderboard standing and trade-offs
Qwen-Audio-3.0-TTS-Plus took the top quality spot on the Artificial Analysis Speech Arena for Provider Voices, posting an Elo near 1,236, narrowly ahead of Simba 3.2 at 1,234 and clear of Gemini 3.1 Flash TTS at 1,214 and Sonic 3.5 at 1,207. The lead over Simba 3.2 sits inside overlapping confidence intervals, effectively a statistical tie at the very top.
Two trade-offs are worth stating plainly. Throughput is modest: Plus generates about 16 characters per second, below Simba 3.2 at 30.2 and Sonic 3.5 at 120. Price is competitive: the listed rate is $27.59 per 1 million characters, roughly a third of what ElevenLabs and MiniMax charge for the tiers it outranks. Rankings and pricing shift frequently, so confirmation is advisable before planning around them.
What this means for developers
Qwen-Audio-3.0-TTS gives development teams a production-grade hosted TTS option that leads the independent quality leaderboard at a significantly lower price point than Western incumbents. The Flash tier is a strong candidate for real-time voice agents, while the Plus tier suits high-fidelity content generation. The key constraint is that the model is API-only — teams that require self-hosted or offline inference should look to the open-weight Qwen3-TTS line, which is Apache-2.0 licensed and architecturally distinct. Developers can begin experimenting immediately through Alibaba Cloud Model Studio using the provided SDKs and WebSocket examples across six programming languages.