Download Latest Version Voicebox_aarch64.app.tar.gz (383.2 MB)
Email in envelope

Get an email when there's a new version of Voicebox

Home / v0.2.3
Name Modified Size InfoDownloads / Week
Parent folder
latest.json 2026-03-15 4.6 kB
Voicebox_x64.app.tar.gz.sig 2026-03-15 408 Bytes
Voicebox_x64.app.tar.gz 2026-03-15 429.2 MB
Voicebox_0.2.3_x64.dmg 2026-03-15 429.8 MB
voicebox-server-cuda.part01.exe 2026-03-15 711.2 MB
voicebox-server-cuda.manifest 2026-03-15 66 Bytes
voicebox-server-cuda.part00.exe 2026-03-15 1.9 GB
voicebox-server-cuda.sha256 2026-03-15 92 Bytes
Voicebox_0.2.3_x64-setup.nsis.zip.sig 2026-03-15 424 Bytes
Voicebox_0.2.3_x64-setup.nsis.zip 2026-03-15 387.3 MB
Voicebox_0.2.3_x64-setup.exe.sig 2026-03-15 420 Bytes
Voicebox_0.2.3_x64-setup.exe 2026-03-15 387.3 MB
Voicebox_0.2.3_x64_en-US.msi.zip.sig 2026-03-15 424 Bytes
Voicebox_0.2.3_x64_en-US.msi.sig 2026-03-15 420 Bytes
Voicebox_0.2.3_x64_en-US.msi.zip 2026-03-15 388.7 MB
Voicebox_0.2.3_x64_en-US.msi 2026-03-15 388.7 MB
Voicebox_aarch64.app.tar.gz.sig 2026-03-15 408 Bytes
Voicebox_aarch64.app.tar.gz 2026-03-15 384.8 MB
Voicebox_0.2.3_aarch64.dmg 2026-03-15 385.4 MB
README.md 2026-03-15 2.9 kB
v0.2.3 source code.tar.gz 2026-03-15 51.5 MB
v0.2.3 source code.zip 2026-03-15 51.8 MB
Totals: 22 Items   5.9 GB 4

The "it works in dev but not in prod" release. This version fixes a series of PyInstaller bundling issues that prevented model downloading, loading, generation, and progress tracking from working in production builds.

Model Downloads Now Actually Work

The v0.2.1/v0.2.2 builds could not download or load models that weren't already cached from a dev install. This release fixes the entire chain:

  • Chatterbox, Chatterbox Turbo, and LuxTTS all download, load, and generate correctly in bundled builds
  • Real-time download progress — byte-level progress bars now work in production. The root cause: huggingface_hub silently disables tqdm progress bars based on logger level, which prevented our progress tracker from receiving byte updates. We now force-enable the internal counter regardless.
  • Fixed Python 3.12.0 code.replace() bug — the macOS build was on Python 3.12.0, which has a known CPython bug that corrupts bytecode when PyInstaller rewrites code objects. This caused NameError: name 'obj' is not defined crashes during scipy/torch imports. Upgraded to Python 3.12.13.

PyInstaller Fixes

  • Collect all inflect files — typeguard's @typechecked decorator calls inspect.getsource() at import time, which needs .py source files, not just bytecode. Fixes LuxTTS "could not get source code" error.
  • Collect all perth files — bundles the pretrained watermark model (hparams.yaml, .pth.tar) needed by Chatterbox at runtime
  • Collect all piper_phonemize files — bundles espeak-ng-data/ (phoneme tables, language dicts) needed by LuxTTS for text-to-phoneme conversion
  • Set ESPEAK_DATA_PATH in frozen builds so the espeak-ng C library finds the bundled data instead of looking at /usr/share/espeak-ng-data/
  • Collect all linacodec files — fixes inspect.getsource error in Vocos codec
  • Collect all zipvoice files — fixes source code lookup in LuxTTS voice cloning
  • Copy metadata for requests, transformers, huggingface-hub, tokenizers, safetensors, tqdm — fixes importlib.metadata lookups in frozen binary
  • Add hidden imports for chatterbox, chatterbox_turbo, luxtts, zipvoice backends
  • Add multiprocessing.freeze_support() to fix resource_tracker subprocess crash in frozen binary
  • --noconsole now only applied on Windows — macOS/Linux need stdout/stderr for Tauri sidecar log capture
  • Hardened sys.stdout/sys.stderr devnull redirect to test writability, not just None check

Updater

  • Fixed updater artifact generation with v1Compatible for tauri-action signature files
  • Updated tauri-action to v0.6 to fix updater JSON and .sig generation

Other Fixes

  • Full traceback logging on all backend model loading errors (was just str(e) before)
Source: README.md, updated 2026-03-15