This repository hosts the downloadable runtime files for Higgs Audio v3 Studio, a Windows desktop app for local Higgs Audio v3 TTS, voice cloning, speech continuation, and multi-speaker generation.
GitHub app repository: https://github.com/Saganaki22/Higgs-Audio-v3-Studio
This repository is not the original upstream model release. It provides GGUF model builds, the Windows CUDA engine DLL package, checksums, and a manifest used by the desktop app downloader.
Higgs Audio v3 Studio is a Rust/Tauri desktop application that runs a ported native C++/CUDA implementation of Higgs Audio v3 locally.
The app provides:
Use the desktop app from GitHub releases:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio/releases
Source code:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio
The app expects this Hugging Face repository layout:
/
├─ manifest.json
├─ checksums/
│ └─ SHA256SUMS.txt
├─ engines/
│ ├─ audiocpp_engine.dll
│ ├─ cublas64_13.dll
│ ├─ cublasLt64_13.dll
│ ├─ MSVCP140.dll
│ ├─ VCOMP140.DLL
│ ├─ VCRUNTIME140.dll
│ └─ VCRUNTIME140_1.dll
└─ models/
├─ higgs-q4_k_m/
│ └─ q4_k_m.gguf
├─ higgs-q5_k/
│ └─ q5_k.gguf
├─ higgs-q6_k/
│ └─ q6_k.gguf
├─ higgs-q8_0/
│ └─ q8_0.gguf
└─ higgs-bf16/
└─ bf16.gguf
| File | Purpose |
|---|---|
manifest.json | App downloader manifest with file names, sizes, hashes, and recommended model metadata |
checksums/SHA256SUMS.txt | SHA256 checksums for engine package and model files |
engines/audiocpp_engine.dll | Windows CUDA engine DLL used by the Tauri desktop app |
engines/cublas64_13.dll | NVIDIA CUDA 13 cuBLAS runtime DLL required by the engine |
engines/cublasLt64_13.dll | NVIDIA CUDA 13 cuBLASLt runtime DLL required by cuBLAS |
engines/MSVCP140.dll | Microsoft C++ runtime DLL |
engines/VCOMP140.DLL | Microsoft OpenMP runtime DLL |
engines/VCRUNTIME140.dll | Microsoft Visual C++ runtime DLL |
engines/VCRUNTIME140_1.dll | Microsoft Visual C++ runtime DLL |
models/higgs-q4_k_m/q4_k_m.gguf | Smaller quantized model |
models/higgs-q5_k/q5_k.gguf | Balanced K-quant model |
models/higgs-q6_k/q6_k.gguf | Higher-quality K-quant model |
models/higgs-q8_0/q8_0.gguf | Recommended default model |
models/higgs-bf16/bf16.gguf | Highest-fidelity BF16 model |
| Model | Recommended VRAM | Notes |
|---|---|---|
q4_k_m | 8 GB | Smaller model for lower VRAM systems |
q5_k | 9 GB | Balanced K-quant option |
q6_k | 10 GB | Higher-quality K-quant option |
q8_0 | 12 GB | Recommended default quality/speed balance |
bf16 | 16 GB | Highest-fidelity testing model |
The prebuilt engine package is intended for:
0.2.31 or newer recommendedThe engines/ folder contains the app engine DLL plus the CUDA/MSVC runtime DLLs the current Windows engine build needs.
Important:
nvcuda.dll is not included and should not be uploaded here.nvcuda.dll comes from the NVIDIA display driver.Download Engine DLLs button.The app can use either:
Higgs Audio v3 Studio checks the Windows loader dependencies before loading the engine.
The current validator checks for:
nvcuda.dllcublas64_13.dllcublasLt64_13.dllMSVCP140.dllVCOMP140.DLLVCRUNTIME140.dllVCRUNTIME140_1.dllIf a runtime DLL is missing, users can press Download Engine DLLs in the app to download the files from this repository.
If nvcuda.dll is missing, users need to install or update their NVIDIA driver.
The desktop app uses a ported native C++/CUDA inference engine instead of running the original Python pipeline directly.
At a high level:
audiocpp_engine.dll.Main runtime layers:
Tauri UI
↓
Rust backend / local API / queue
↓
C ABI engine wrapper
↓
Ported C++ Higgs Audio v3 runtime
↓
ggml / CUDA backend
↓
GGUF Higgs model files
The current app and engine include several production-focused improvements:
.hspkcacheThe GGUF builds in this repository are provided so users can choose a quality/VRAM tradeoff from inside the app.
q4_k_m: smallest supported Higgs model option in this repoq5_k: middle option between Q4 and Q6q6_k: higher-quality K-quant option below Q8q8_0: recommended default for most users with enough VRAMbf16: highest-fidelity build, largest VRAM requirementThe app keeps the small model assets/config files bundled with the installer/portable package where possible, while the large GGUF weights are downloaded separately from this Hugging Face repository.
Higgs Audio v3 Studio includes a local API server.
Supported API capabilities include:
For API examples and current endpoint details, see the GitHub README:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio#http-api-streaming-and-command-centre
Recommended path:
Download Engine DLLs.GitHub releases:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio/releases
If placing files manually, keep the engine package together:
engines/
├─ audiocpp_engine.dll
├─ cublas64_13.dll
├─ cublasLt64_13.dll
├─ MSVCP140.dll
├─ VCOMP140.DLL
├─ VCRUNTIME140.dll
└─ VCRUNTIME140_1.dll
Do not upload or redistribute nvcuda.dll. It belongs to the NVIDIA driver.
Checksums are provided in:
checksums/SHA256SUMS.txt
The desktop app and users can use this file to verify downloaded runtime/model files.
Do not use Higgs Audio v3 Studio, Higgs Audio v3, or any voice cloning workflow to impersonate people without consent, create deceptive or malicious voices, defraud people, bypass identity checks, harass others, or cause harm.
Only generate speech when you have the rights and consent required for the source voice, transcript, and intended output use.
This project depends on the upstream Higgs Audio v3 model work by Boson AI.
Upstream model:
https://huggingface.co/bosonai/higgs-audio-v3-tts-4b
Desktop app and ported runtime repository:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio
Whisper.cpp:
https://github.com/ggml-org/whisper.cpp
NVIDIA CUDA runtime components are provided under NVIDIA's CUDA Toolkit license terms.
Microsoft Visual C++ runtime components are provided under Microsoft's Visual Studio / Visual C++ Redistributable license terms.
@misc{bosonai_higgs_audio_tts_v3_2026,
title = {Higgs TTS 3: Conversational Speech for Voice AI from Boson AI},
author = {Boson AI},
year = {2026},
howpublished = {https://huggingface.co/bosonai/higgs-tts-3-4b},
}
The Higgs Audio v3 / Higgs TTS 3 model weights and upstream model assets are governed by the Boson Higgs TTS 3 Research and Non-Commercial License.
The desktop app and native port code are maintained separately on GitHub:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio
Check all upstream licenses before redistributing weights, using generated audio commercially, or packaging this project into another product.
34 commits
This repository hosts the downloadable runtime files for Higgs Audio v3 Studio, a Windows desktop app for local Higgs Audio v3 TTS, voice cloning, speech continuation, and multi-speaker generation.
GitHub app repository: https://github.com/Saganaki22/Higgs-Audio-v3-Studio
This repository is not the original upstream model release. It provides GGUF model builds, the Windows CUDA engine DLL package, checksums, and a manifest used by the desktop app downloader.
Higgs Audio v3 Studio is a Rust/Tauri desktop application that runs a ported native C++/CUDA implementation of Higgs Audio v3 locally.
The app provides:
Use the desktop app from GitHub releases:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio/releases
Source code:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio
The app expects this Hugging Face repository layout:
/
├─ manifest.json
├─ checksums/
│ └─ SHA256SUMS.txt
├─ engines/
│ ├─ audiocpp_engine.dll
│ ├─ cublas64_13.dll
│ ├─ cublasLt64_13.dll
│ ├─ MSVCP140.dll
│ ├─ VCOMP140.DLL
│ ├─ VCRUNTIME140.dll
│ └─ VCRUNTIME140_1.dll
└─ models/
├─ higgs-q4_k_m/
│ └─ q4_k_m.gguf
├─ higgs-q5_k/
│ └─ q5_k.gguf
├─ higgs-q6_k/
│ └─ q6_k.gguf
├─ higgs-q8_0/
│ └─ q8_0.gguf
└─ higgs-bf16/
└─ bf16.gguf
| File | Purpose |
|---|---|
manifest.json | App downloader manifest with file names, sizes, hashes, and recommended model metadata |
checksums/SHA256SUMS.txt | SHA256 checksums for engine package and model files |
engines/audiocpp_engine.dll | Windows CUDA engine DLL used by the Tauri desktop app |
engines/cublas64_13.dll | NVIDIA CUDA 13 cuBLAS runtime DLL required by the engine |
engines/cublasLt64_13.dll | NVIDIA CUDA 13 cuBLASLt runtime DLL required by cuBLAS |
engines/MSVCP140.dll | Microsoft C++ runtime DLL |
engines/VCOMP140.DLL | Microsoft OpenMP runtime DLL |
engines/VCRUNTIME140.dll | Microsoft Visual C++ runtime DLL |
engines/VCRUNTIME140_1.dll | Microsoft Visual C++ runtime DLL |
models/higgs-q4_k_m/q4_k_m.gguf | Smaller quantized model |
models/higgs-q5_k/q5_k.gguf | Balanced K-quant model |
models/higgs-q6_k/q6_k.gguf | Higher-quality K-quant model |
models/higgs-q8_0/q8_0.gguf | Recommended default model |
models/higgs-bf16/bf16.gguf | Highest-fidelity BF16 model |
| Model | Recommended VRAM | Notes |
|---|---|---|
q4_k_m | 8 GB | Smaller model for lower VRAM systems |
q5_k | 9 GB | Balanced K-quant option |
q6_k | 10 GB | Higher-quality K-quant option |
q8_0 | 12 GB | Recommended default quality/speed balance |
bf16 | 16 GB | Highest-fidelity testing model |
The prebuilt engine package is intended for:
0.2.31 or newer recommendedThe engines/ folder contains the app engine DLL plus the CUDA/MSVC runtime DLLs the current Windows engine build needs.
Important:
nvcuda.dll is not included and should not be uploaded here.nvcuda.dll comes from the NVIDIA display driver.Download Engine DLLs button.The app can use either:
Higgs Audio v3 Studio checks the Windows loader dependencies before loading the engine.
The current validator checks for:
nvcuda.dllcublas64_13.dllcublasLt64_13.dllMSVCP140.dllVCOMP140.DLLVCRUNTIME140.dllVCRUNTIME140_1.dllIf a runtime DLL is missing, users can press Download Engine DLLs in the app to download the files from this repository.
If nvcuda.dll is missing, users need to install or update their NVIDIA driver.
The desktop app uses a ported native C++/CUDA inference engine instead of running the original Python pipeline directly.
At a high level:
audiocpp_engine.dll.Main runtime layers:
Tauri UI
↓
Rust backend / local API / queue
↓
C ABI engine wrapper
↓
Ported C++ Higgs Audio v3 runtime
↓
ggml / CUDA backend
↓
GGUF Higgs model files
The current app and engine include several production-focused improvements:
.hspkcacheThe GGUF builds in this repository are provided so users can choose a quality/VRAM tradeoff from inside the app.
q4_k_m: smallest supported Higgs model option in this repoq5_k: middle option between Q4 and Q6q6_k: higher-quality K-quant option below Q8q8_0: recommended default for most users with enough VRAMbf16: highest-fidelity build, largest VRAM requirementThe app keeps the small model assets/config files bundled with the installer/portable package where possible, while the large GGUF weights are downloaded separately from this Hugging Face repository.
Higgs Audio v3 Studio includes a local API server.
Supported API capabilities include:
For API examples and current endpoint details, see the GitHub README:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio#http-api-streaming-and-command-centre
Recommended path:
Download Engine DLLs.GitHub releases:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio/releases
If placing files manually, keep the engine package together:
engines/
├─ audiocpp_engine.dll
├─ cublas64_13.dll
├─ cublasLt64_13.dll
├─ MSVCP140.dll
├─ VCOMP140.DLL
├─ VCRUNTIME140.dll
└─ VCRUNTIME140_1.dll
Do not upload or redistribute nvcuda.dll. It belongs to the NVIDIA driver.
Checksums are provided in:
checksums/SHA256SUMS.txt
The desktop app and users can use this file to verify downloaded runtime/model files.
Do not use Higgs Audio v3 Studio, Higgs Audio v3, or any voice cloning workflow to impersonate people without consent, create deceptive or malicious voices, defraud people, bypass identity checks, harass others, or cause harm.
Only generate speech when you have the rights and consent required for the source voice, transcript, and intended output use.
This project depends on the upstream Higgs Audio v3 model work by Boson AI.
Upstream model:
https://huggingface.co/bosonai/higgs-audio-v3-tts-4b
Desktop app and ported runtime repository:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio
Whisper.cpp:
https://github.com/ggml-org/whisper.cpp
NVIDIA CUDA runtime components are provided under NVIDIA's CUDA Toolkit license terms.
Microsoft Visual C++ runtime components are provided under Microsoft's Visual Studio / Visual C++ Redistributable license terms.
@misc{bosonai_higgs_audio_tts_v3_2026,
title = {Higgs TTS 3: Conversational Speech for Voice AI from Boson AI},
author = {Boson AI},
year = {2026},
howpublished = {https://huggingface.co/bosonai/higgs-tts-3-4b},
}
The Higgs Audio v3 / Higgs TTS 3 model weights and upstream model assets are governed by the Boson Higgs TTS 3 Research and Non-Commercial License.
The desktop app and native port code are maintained separately on GitHub:
https://github.com/Saganaki22/Higgs-Audio-v3-Studio
Check all upstream licenses before redistributing weights, using generated audio commercially, or packaging this project into another product.
34 commits