Run setup:
speak setupIf that fails, try forcing a reinstall:
speak setup --forceClean up stale socket and restart:
speak daemon kill
speak healthKill any lingering audio processes:
pkill afplayFor long documents, use auto-chunking:
speak long-document.md --auto-chunk --output output.wavIf it still times out, increase the timeout:
speak document.md --timeout 600 # 10 minutesInstall sox:
brew install soxTry the full-precision model:
speak "Hello" --model mlx-community/chatterbox-turbo-fp16Or adjust temperature (lower = more consistent, higher = more expressive):
speak "Hello" --temp 0.3 # More consistent
speak "Hello" --temp 0.7 # More expressiveUse a smaller model:
speak "Hello" --model mlx-community/chatterbox-turbo-4bitOr stop other memory-intensive applications.
Run a comprehensive health check:
speak healthThis checks:
- Python environment
- Required packages
- Server status
- Audio device availability
- Disk space
View today's log:
cat ~/.chatter/logs/speak_$(date +%Y-%m-%d).logEnable verbose output for debugging:
speak "Hello" --verboseOr set debug log level in config:
# ~/.chatter/config.toml
log_level = "debug"If all else fails, reset the environment:
# Stop daemon
speak daemon kill
# Remove environment
rm -rf ~/.chatter/env
# Reinstall
speak setupThis preserves your config file and voice presets.
# Show all commands
speak --help
# Show help for a specific command
speak setup --help
speak concat --help