Qwen3-TTS-Instruct-Flash
复制成功!
立即体验加入对比
语音合成
概述
语音合成
Qwen3-TTS-Flash模型是通义实验室最新推出的实时语音合成大模型,Instruct模型可通过自然语言进行合成效果的处理,确保在不同语境下,合成情感、表达高度贴合的语音。目前支持25个音色的中英文Instruct调节。该模型为2026年01月26日快照版本模型。
输入
文本
输出
音频
功能
定价
- 语音合成¥0.8每万字符
速率限制
- RPM每分钟请求数180
API 参考
获取 API Key复制成功!
1234567891011121314151617
import os
import dashscope
dashscope.base_http_api_url = 'https://dashscope.aliyuncs.com/api/v1'
text = "Dear listeners, hello everyone. Welcome to the evening news."
response = dashscope.MultiModalConversation.call(
model="qwen3-tts-instruct-flash-2026-01-26",
api_key=os.getenv("DASHSCOPE_API_KEY"),
text=text,
voice="Cherry",
instructions='The speaking speed is fast and there is a distinct upward inflection, which is suitable for introducing fashionable products.',
optimize_instructions=True,
stream=False
)
print(response)