You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,13 +62,17 @@ The `vox` CLI can list, download, verify, repair, and remove known local models:
62
62
```sh
63
63
./build/bin/vox model list
64
64
./build/bin/vox model download qwen3-asr-1.7b
65
+
./build/bin/vox model download kokoro-tts
66
+
./build/bin/vox model download qwen3-tts
65
67
./build/bin/vox model verify qwen3-asr-1.7b
66
68
./build/bin/vox model repair qwen3-asr-1.7b
67
69
```
68
70
69
71
Model verification checks that expected files exist, are non-empty, and do not
70
72
have leftover partial downloads. Checksums are reported when metadata is
71
-
available; the current bundled manifests rely on file presence and size.
73
+
available; the current bundled manifests rely on file presence and size. Common
74
+
aliases such as `kokoro`, `cosyvoice`, and `qwen3-tts` resolve to their
75
+
canonical model entries.
72
76
73
77
### Whisper ASR
74
78
@@ -142,7 +146,7 @@ CosyVoice3 remains the default TTS engine.
142
146
Download the minimum baked-voice CosyVoice3 GGUF set:
143
147
144
148
```sh
145
-
scripts/download-cosyvoice3-tts-gguf.sh
149
+
./build/bin/vox model downloadcosyvoice3-tts
146
150
```
147
151
148
152
That creates:
@@ -159,7 +163,7 @@ Pass the LLM GGUF with `--tts-model`. The runtime auto-discovers sibling flow, H
159
163
Kokoro-82M is available with `--tts-engine kokoro`:
160
164
161
165
```sh
162
-
scripts/download-kokoro-tts-gguf.sh
166
+
./build/bin/vox model downloadkokoro-tts
163
167
```
164
168
165
169
On Windows PowerShell:
@@ -180,7 +184,7 @@ Pass the Kokoro model with `--tts-model`. The runtime auto-discovers `kokoro-voi
180
184
Qwen3-TTS 0.6B is available with `--tts-engine qwen3-tts`. The recommended quick-test path is CustomVoice Q8_0 because it has built-in speakers and does not need a reference WAV:
Pass the talker GGUF with `--tts-model`. The runtime auto-discovers `qwen3-tts-tokenizer-12hz.gguf` in the same directory, or use `--tts-codec-model PATH`. CustomVoice speakers include `aiden`, `dylan`, `eric`, `ono_anna`, `ryan`, `serena`, `sohee`, `uncle_fu`, and `vivian`; use `dylan` or `eric` for Chinese output tests. The Base variant can also be downloaded with `scripts/download-qwen3-tts-gguf.sh models/tts/qwen3-tts-0.6b-base base q8_0`; it requires `--tts-voice-model` pointing to a baked voice GGUF or a reference WAV plus `--tts-ref-text`.
203
+
Pass the talker GGUF with `--tts-model`. The runtime auto-discovers `qwen3-tts-tokenizer-12hz.gguf` in the same directory, or use `--tts-codec-model PATH`. CustomVoice speakers include `aiden`, `dylan`, `eric`, `ono_anna`, `ryan`, `serena`, `sohee`, `uncle_fu`, and `vivian`; use `dylan` or `eric` for Chinese output tests. The Base variant can also be downloaded with `./build/bin/vox model download qwen3-tts-0.6b-base`; it requires `--tts-voice-model` pointing to a baked voice GGUF or a reference WAV plus `--tts-ref-text`.
0 commit comments