-
Notifications
You must be signed in to change notification settings - Fork 372
Open
Description
The "Download a TTS Model" section on the TTS instructions page is wrong:
export SPEACHES_BASE_URL="http://localhost:8000"
# Listing all available TTS models
uvx speaches-cli registry ls --task text-to-speech | jq '.data | [].id'
# Downloading a TTS model
uvx speaches-cli model download speaches-ai/Kokoro-82M-v1.0-ONNX
# Check that the model has been installed
uvx speaches-cli model ls --task text-to-speech | jq '.data | map(select(.id == "speaches-ai/Kokoro-82M-v1.0-ONNX"))'
Should be:
export SPEACHES_BASE_URL="http://localhost:8000"
# Listing all available TTS models
uvx speaches-cli registry ls --task text-to-speech | jq -r '.data[]?.id'
# Downloading a TTS model
uvx speaches-cli model download speaches-ai/Kokoro-82M-v1.0-ONNX
# Check that the model has been installed
uvx speaches-cli model ls --task text-to-speech \
| jq -r '.data[]? | select(.id | contains("Kokoro-82M-v1.0-ONNX")) | .id'
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels