Qwen3 TTS Instruct Flash
Qwen
qwen/qwen3-tts-instruct-flash
Qwen3 TTS Instruct — instruction-controlled speech synthesis
Context Window
—
Max Output
—
Capabilities
TTS
Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.0000 |
| Output / 1M | $0.0000 |
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-instruct-flash", voice="alloy", input="Hello! Welcome to chuizi.ai.", ) response.stream_to_file("output.mp3")