Qwen3 TTS Flash
Qwen
qwen/qwen3-tts-flash
Fast natural speech synthesis
Context Window
—
Max Output
—
About this model
Fast natural speech synthesis
Access it through Chuizi.AI with a single ck- API key — no separate upstream provider account needed.
Highlights
Fast TTS
Natural voice
Low cost
Bailian routing
Best For
Voice assistantsShort narrationSupport voicePrototyping
2026-01-01
Capabilities
TTS
Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0 |
| Output / 1M | $0 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.audio.speech.create( model="qwen/qwen3-tts-flash", voice="alloy", input="Hello! Welcome to chuizi.ai.", ) response.stream_to_file("output.mp3")