qwen3-tts: switch default to -CustomVoice variant; chatterbox: fix paralinguistic tag list in README
qwen3-tts: deploy was using the -Base checkpoint, which sounds like
the right one ("supports voice cloning") but the upstream wrapper's
only synthesis path goes through generate_custom_voice. The -Base
variant doesn't expose that, so every request — including ones with
the wrapper's listed built-in voices like Ryan/Vivian — errored with
"does not support generate_custom_voice". The -CustomVoice variant
exposes both the cloning machinery and the preset voices, and is
what the wrapper actually needs.
The .env.example comments had the variant labels backward; fixed in
this commit. Live host already updated to -CustomVoice via direct
.env edit (model downloaded on container restart).
chatterbox README listed [whisper] and [breath] as supported tags —
those are in the base Chatterbox tag set but NOT in the Turbo set
that's actually loaded. Replaced with the canonical 9-tag list
verified against /api/model-info: laugh, chuckle, sigh, gasp, cough,
clear throat, sniff, groan, shush.
This commit is contained in:
@@ -30,12 +30,16 @@ real-time voice-agent use cases.
|
||||
- **Zero-shot voice cloning from ~5 s reference** (base Chatterbox
|
||||
needs ~10 s; Turbo cuts that in half).
|
||||
- **Native paralinguistic tags inline in text** — drop these into your
|
||||
prompt and the model honors them:
|
||||
prompt and the model honors them. Turbo ships exactly **9** tags
|
||||
(verified against the live model at `/api/model-info`):
|
||||
```
|
||||
[laugh] [cough] [sigh] [gasp] [whisper] [breath]
|
||||
[laugh] [chuckle] [sigh] [gasp] [cough] [clear throat] [sniff] [groan] [shush]
|
||||
```
|
||||
Different shape from IndexTTS-2's 8-vector emotion control: cleaner
|
||||
for "say it like this" markup directly in the prompt.
|
||||
Note: base Chatterbox docs list `[whisper]` and `[breath]` — those
|
||||
are NOT in the Turbo set, ignore them or you'll burn time wondering
|
||||
why nothing happens. Different shape from IndexTTS-2's 8-vector
|
||||
emotion control: cleaner for "say it like this" markup directly in
|
||||
the prompt.
|
||||
- **Mandatory PerTh watermark** on outputs (Resemble policy, cannot
|
||||
be disabled). Non-issue for internal use; mention it if you ever
|
||||
ship Chatterbox-generated audio externally.
|
||||
|
||||
Reference in New Issue
Block a user