- Add run_customvoice_server.py: OpenAI-compatible TTS server for Qwen3-TTS CustomVoice models with speaker-based voice selection and per-request language/instruct/max_new_tokens overrides - Add customvoice_voices.json: voice config for 9 built-in speakers across English, Chinese, Japanese, and Korean - Add benchmark_api.py: API benchmarking tool reporting TTFA, total time, RTF, and speed multiplier across short/medium/long sentences - Refactor run_voicedesign_server.py: extract _request_generation_params() helper, add per-request language/instruct/max_new_tokens override support, and wire DEFAULT_MAX_NEW_TOKENS to --max-seq-len arg - Add faster-qwen3-tts.code-workspace for VS Code project config Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
48 lines
807 B
JSON
48 lines
807 B
JSON
{
|
|
"Ryan": {
|
|
"speaker": "Ryan",
|
|
"language": "English",
|
|
"instruct": ""
|
|
},
|
|
"Aiden": {
|
|
"speaker": "Aiden",
|
|
"language": "English",
|
|
"instruct": ""
|
|
},
|
|
"Vivian": {
|
|
"speaker": "Vivian",
|
|
"language": "Chinese",
|
|
"instruct": ""
|
|
},
|
|
"Serena": {
|
|
"speaker": "Serena",
|
|
"language": "Chinese",
|
|
"instruct": ""
|
|
},
|
|
"Uncle_Fu": {
|
|
"speaker": "Uncle_Fu",
|
|
"language": "Chinese",
|
|
"instruct": ""
|
|
},
|
|
"Dylan": {
|
|
"speaker": "Dylan",
|
|
"language": "Chinese",
|
|
"instruct": ""
|
|
},
|
|
"Eric": {
|
|
"speaker": "Eric",
|
|
"language": "Chinese",
|
|
"instruct": ""
|
|
},
|
|
"Ono_Anna": {
|
|
"speaker": "Ono_Anna",
|
|
"language": "Japanese",
|
|
"instruct": ""
|
|
},
|
|
"Sohee": {
|
|
"speaker": "Sohee",
|
|
"language": "Korean",
|
|
"instruct": ""
|
|
}
|
|
}
|