File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
examples/online_serving/qwen3_tts Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -41,12 +41,14 @@ python openai_speech_client.py \
4141
4242# VoiceDesign: Describe the voice style
4343python openai_speech_client.py \
44+ --model Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign \
4445 --task-type VoiceDesign \
4546 --text " 哥哥,你回来啦" \
4647 --instructions " 体现撒娇稚嫩的萝莉女声,音调偏高"
4748
4849# Base: Voice cloning
4950python openai_speech_client.py \
51+ --model Qwen/Qwen3-TTS-12Hz-1.7B-Base \
5052 --task-type Base \
5153 --text " Hello, this is a cloned voice" \
5254 --ref-audio /path/to/reference.wav \
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ def run_tts_generation(args) -> None:
9090 if args .x_vector_only :
9191 payload ["x_vector_only_mode" ] = True
9292
93+ print (f"Model: { args .model } " )
9394 print (f"Task type: { args .task_type or 'CustomVoice' } " )
9495 print (f"Text: { args .text } " )
9596 print (f"Voice: { args .voice } " )
You can’t perform that action at this time.
0 commit comments