Views
No views yet


| Tier | Languages |
|---|---|
| Tier 1 | English, Mandarin Chinese, Japanese |
| Tier 2 | Korean, Russian, Italian, Portuguese, French, Spanish, Vietnamese, German, Hebrew, Dutch |
| Tier 3 | Swedish, Hindi, Tamil, Telugu, Thai, Norwegian, Bengali, Tagalog, Arabic, Danish, Indonesian, Polish, Ukrainian, Romanian, Finnish, Hungarian, Lithuanian, Estonian, Slovak, Croatian, Latvian |
Platform Support: Linux only (x86_64). Requires NVIDIA GPU with CUDA toolkit matching your driver version (nvidia-smito check).
1git clone https://github.com/Zyphra/ZONOS2.git
2cd ZONOS2
3uv syncuv run python -m minisgl --model-path Zyphra/ZONOS2 --tts-default-voices-dir ./default_voices/uv run always uses the project environment, so no venv activation is needed.http://localhost:1919 by default. TTS mode is auto-detected for zonos2 models.
--tts-default-voices-dir <folder> pre-populates the web UI with voice-clone
speakers from disk; the folder is scanned recursively for speaker audio
(.wav, .mp3, .flac, .m4a, .ogg, .opus, .aac, .webm) and saved
embeddings (.npy, .npz). The newest voice is selected automatically on
startup.1curl -X POST http://localhost:1919/tts/generate \
2 -H "Content-Type: application/json" \
3 -d '{"text": "Hello world", "stream": true}' \
4 --output output.pcm
5
6# Convert to WAV
7ffmpeg -f f32le -ar 44100 -ac 1 -i output.pcm output.wavhttp://localhost:1919/ in your browser.TTSLLM:1from minisgl.message import TTSSamplingParams
2from minisgl.tts import TTSLLM
3
4tts = TTSLLM(model_path="Zyphra/ZONOS2")
5
6results = tts.generate(
7 ["Hello from the offline Python API.", "Batched prompts work too."],
8 TTSSamplingParams(seed=42),
9)
10
11for i, result in enumerate(results):
12 print(f"frames={len(result['audio_tokens'])}, eos_frame={result['eos_frame']}")
13 tts.save_audio(result["audio"], f"output_{i}.wav")@misc{zyphra2025zonos,
title = {Zonos V2 Technical Report},
author = {Gabriel Clark, Sofian Mejjoute, Mohamed Osman, George Close, Beren Millidge},
year = {2026},
}