Skip to content

Commit 144fd6e

Browse files
authored
[Bugfix][Doc]Specify Qwen3-TTS model name for each task type (vllm-project#1036)
Signed-off-by: Kyle Huang <yellowsea@gmail.com>
1 parent 20e7310 commit 144fd6e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

examples/online_serving/qwen3_tts/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,14 @@ python openai_speech_client.py \
4141

4242
# VoiceDesign: Describe the voice style
4343
python 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
4950
python 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 \

examples/online_serving/qwen3_tts/openai_speech_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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}")

0 commit comments

Comments
 (0)