Text to Audio (TTS)
API Compatibility
The LocalAI TTS API is compatible with the OpenAI TTS API and the Elevenlabs API.
LocalAI API
The /tts endpoint can also be used to generate speech from text.
Usage
Input: input, model
For example, to generate an audio file, you can send a POST request to the /tts endpoint with the instruction as the request body:
Returns an audio/wav file.
Voice Library
Administrators can manage reusable voice-cloning references from Operate β Voice Library in the LocalAI WebUI. The library replaces per-model filesystem and YAML setup for supported cloning backends:
- Select Create voice and upload or record a clear reference clip.
- Enter the exact words spoken in the clip. The transcript is sent to backends that require reference text.
- Confirm that you have permission to clone the voice, then save the profile.
- Open Text to Speech, choose a model marked Cloning ready, and select the saved voice.
The browser converts uploads and recordings to mono, 24 kHz, 16-bit PCM WAV so the same profile works across compatible backends. Clips must be between 1 and 120 seconds and no larger than 50 MiB; 6-30 seconds of clean, single-speaker audio is recommended. Profile audio is private biometric source material: LocalAI stores it below its configured data path, serves previews only to authenticated TTS users, and never returns its filesystem path.
Voice profile API
The WebUI uses the following endpoints. Creating and deleting profiles requires administrator access; listing profiles and playing previews requires access to the TTS feature.
| Method | Endpoint | Purpose |
|---|---|---|
GET | /api/voice-profiles | List saved profiles and their public metadata. |
POST | /api/voice-profiles | Create a profile from multipart form data or JSON with base64 audio. |
GET | /api/voice-profiles/{id}/audio | Stream the authenticated WAV preview, including range requests. |
DELETE | /api/voice-profiles/{id} | Permanently delete a profile. |
For example, an administrator can create a profile without the WebUI:
The response includes an opaque voice reference such as localai://voice-profiles/550e8400-e29b-41d4-a716-446655440000. Pass that value as voice to either TTS-compatible endpoint:
LocalAI resolves the opaque reference only for models that advertise voice-cloning support. Existing named speakers, backend-specific voice IDs, and explicit model YAML voice configuration remain available for models and advanced workflows that do not use the library.
The Voice Library uses the same server-side capability resolver for installed models and gallery recommendations. Administrators can inspect the currently configured galleries without maintaining a separate backend list:
Each returned model includes a non-null voice_cloning contract. Variant checks are applied before the model is returned, so TTS-only CustomVoice, VoiceDesign, or preset-prompt variants are not offered as reference-audio models. When the WebUI detects that no compatible model is installed, it uses this response to offer direct installation.
Model configuration
Voice Library support is automatic for known backends and model variants. A custom model can override that detection with tts.voice_cloning:
tts.voice_cloning has three states:
| Value | Behavior |
|---|---|
| omitted | Detect support from the backend plus name, parameters.model, and compatibility options. This is recommended for gallery models. |
true | Advertise Voice Library support for a custom-named variant of a backend that LocalAI already knows can clone voices. This cannot add cloning to an unsupported backend. |
false | Hide the model from Voice Library compatibility results and reject localai://voice-profiles/... references for it. Backend-specific named voices and manual reference paths remain available. |
The older options: ["voice_cloning:true"] and options: ["voice_cloning:false"] spellings remain accepted for compatibility. Prefer tts.voice_cloning; generic options may be forwarded to a backend, whereas the typed field is consumed only by LocalAI.
Reference selection follows this order:
- A request
voice, including a savedlocalai://voice-profiles/...URI. - The model’s
tts.voicedefault. - The model’s
tts.audio_pathreference-audio fallback. - A backend-specific default voice or option.
When a saved profile is selected, LocalAI supplies both its private WAV and exact transcript for that request. It does not rewrite the model YAML or copy the recording into the model directory.
Supported backend and model variants
| Backend | Automatically compatible variants |
|---|---|
chatterbox, faster-qwen3-tts, fish-speech, moss-tts-cpp, neutts, omnivoice-cpp, pocket-tts, voxcpm | Reference-audio cloning models served by these dedicated backends. |
qwen-tts, qwen3-tts-cpp, vllm-omni | Base or VoiceClone variants. CustomVoice and VoiceDesign variants are not raw reference-audio models. |
vibevoice-cpp | 1.5B reference-WAV variants. The realtime 0.5B preset-prompt model is excluded. |
coqui | XTTS and YourTTS variants. |
crispasr | F5-TTS variants. ASR, Piper, Orpheus, and other CrispASR model families are excluded. |
This table describes the built-in resolver, not a frontend allowlist. Gallery entries and installed configs are evaluated by the server, and tts.voice_cloning can make a verified custom filename explicit.
Streaming TTS
LocalAI supports streaming TTS generation, allowing audio to be played as it’s generated. This is useful for real-time applications and reduces latency.
To enable streaming, add "stream": true to your request:
The audio will be streamed chunk-by-chunk as it’s generated, allowing playback to start before generation completes. This is particularly useful for long texts or when you want to minimize perceived latency.
You can also pipe the streamed audio directly to audio players like aplay (Linux) or save it to a file:
Note: Streaming TTS is currently supported by the voxcpm backend. Other backends will fall back to non-streaming mode if streaming is not supported.
Backends
πΈ Coqui
Required: Don’t use LocalAI images ending with the -core tag,. Python dependencies are required in order to use this backend.
Coqui works without any configuration, to test it, you can run the following curl command:
You can use the env variable COQUI_LANGUAGE to set the language used by the coqui backend.
You can also use config files to configure tts models (see section below on how to use config files).
Piper
To install the piper audio models manually:
- Download Voices from https://github.com/rhasspy/piper/releases/tag/v0.0.2
- Extract the
.tar.tgzfiles (.onnx,.json) insidemodels - Run the following command to test the model is working
To use the tts endpoint, run the following command. You can specify a backend with the backend parameter. For example, to use the piper backend:
Note:
aplayis a Linux command. You can use other tools to play the audio file.- The model name is the filename with the extension.
- The model name is case sensitive.
- LocalAI must be compiled with the
GO_TAGS=ttsflag.
Transformers-musicgen
LocalAI also has experimental support for transformers-musicgen for the generation of short musical compositions. Currently, this is implemented via the same requests used for text to speech:
Future versions of LocalAI will expose additional control over audio generation beyond the text prompt.
ACE-Step
ACE-Step 1.5 is a music generation model that can create music from text descriptions, lyrics, or audio samples. It supports both simple text-to-music and advanced music generation with metadata like BPM, key scale, and time signature.
Setup
Install the ace-step-turbo model from the Model gallery or run local-ai models install ace-step-turbo.
Usage
ACE-Step supports two modes: Simple mode (text description + vocal language) and Advanced mode (caption, lyrics, BPM, key, and more).
Simple mode:
Advanced mode (using the /v1/sound-generation endpoint):
Music and sound generation API (/v1/sound-generation)
The /v1/sound-generation endpoint is compatible with the ElevenLabs sound generation API and can produce music, sound effects, and other audio content. It responds with a binary audio file and the appropriate Content-Type header (for example audio/wav, audio/mpeg, audio/flac, or audio/ogg). The request body is JSON and supports two usage modes.
Simple mode:
| Parameter | Type | Required | Description |
|---|---|---|---|
model_id | string | Yes | Model identifier (for example ace-step-turbo) |
text | string | Yes | Audio description or prompt |
instrumental | bool | No | Generate instrumental audio (no vocals) |
vocal_language | string | No | Language code for vocals (for example bn, ja) |
Advanced mode:
| Parameter | Type | Required | Description |
|---|---|---|---|
model_id | string | Yes | Model identifier (for example ace-step-turbo) |
text | string | Yes | Text prompt or description |
duration_seconds | float | No | Target duration in seconds |
prompt_influence | float | No | Temperature / prompt influence parameter |
do_sample | bool | No | Enable sampling |
think | bool | No | Enable extended thinking for generation |
caption | string | No | Caption describing the audio |
lyrics | string | No | Lyrics for the generated audio |
bpm | int | No | Beats per minute |
keyscale | string | No | Musical key/scale (for example Ab major) |
language | string | No | Language code |
vocal_language | string | No | Vocal language (fallback if language is empty) |
timesignature | string | No | Time signature (for example 4) |
instrumental | bool | No | Generate instrumental audio (no vocals) |
Error responses: 400 for a missing or invalid model or request parameters, and 500 for a backend error during sound generation.
Configuration
You can configure ACE-Step models with various options:
VibeVoice
VibeVoice-Realtime is a real-time text-to-speech model that generates natural-sounding speech from precomputed voice presets.
Setup
Install the vibevoice model in the Model gallery or run local-ai models install vibevoice.
Usage
Use the tts endpoint by specifying the vibevoice backend:
Voice presets
The Python vibevoice realtime 0.5B model uses .pt voice preset files. You can configure a model with a specific preset:
Note
The realtime 0.5B preset model is not advertised to the Voice Library because it does not accept a raw reference WAV per request. For Voice Library profiles, use a vibevoice-cpp 1.5B reference-WAV model; LocalAI detects the 1.5B variant automatically, or a custom name can set tts.voice_cloning: true.
Then you can use the model:
OmniVoice
OmniVoice (omnivoice-cpp backend) is a native C++ / GGML text-to-speech engine. It supports voice cloning (from reference audio plus its transcript), voice design (steering the voice with attribute keywords such as gender, age, pitch, style, volume, and emotion), and streaming synthesis. Output is 24kHz mono audio and it covers 646 languages.
Setup
Install the omnivoice-cpp model in the Model gallery or run local-ai models install omnivoice-cpp. A higher-quality BF16 variant is available as omnivoice-cpp-hq (the default omnivoice-cpp ships Q8_0 GGUFs).
Usage
Use the speech endpoint by specifying the omnivoice-cpp backend:
Voice cloning
Pass a reference audio file via the voice parameter and its transcript via the ref_text generation parameter:
You can also pin a default cloned voice in the model config so callers do not have to pass it on every request. Both tts.voice and tts.audio_path are honored as the reference audio (a per-request voice overrides them); paths are resolved relative to the model directory:
Voice design
Steer the synthesized voice with attribute keywords (gender, age, pitch, style, volume, emotion) by passing an instructions string per request:
Configuration
The backend loads the base GGUF from parameters.model and its tokenizer from the tokenizer: option. A few optional generation knobs are available as options:
A per-request seed can also be supplied through the params map alongside ref_text.
Pocket TTS
Pocket TTS is a lightweight text-to-speech model designed to run efficiently on CPUs. It supports voice cloning through HuggingFace voice URLs or local audio files.
Setup
Install the pocket-tts model in the Model gallery or run local-ai models install pocket-tts.
Usage
Use the tts endpoint by specifying the pocket-tts backend:
Voice cloning
Pocket TTS supports voice cloning through built-in voice names, HuggingFace URLs, or local audio files. You can configure a model with a specific voice:
To make a reference recording the model-wide fallback, use tts.audio_path. The gallery model is detected automatically; tts.voice_cloning is only needed when you want an explicit declaration:
You can also pre-load a default voice for faster first generation:
Then you can use the model:
Qwen3-TTS
Qwen3-TTS is a high-quality text-to-speech model that supports three modes: custom voice (predefined speakers), voice design (natural language instructions), and voice cloning (from reference audio).
Setup
Install the qwen-tts model in the Model gallery or run local-ai models install qwen-tts.
C++ / GGML gallery variants
For a native backend, install one of the Base variants qwen3-tts-cpp, qwen3-tts-cpp-0.6b-base-q4, qwen3-tts-cpp-1.7b-base, or qwen3-tts-cpp-1.7b-base-q4. These variants accept saved Voice Library profiles and are advertised automatically. Gallery entries containing customvoice or voicedesign provide their respective Qwen modes but are intentionally excluded from raw reference-audio cloning.
A private Qwen C++ Base conversion with an opaque filename can declare the capability explicitly. The tokenizer GGUF can sit beside the talker GGUF for automatic discovery:
Usage
Use the tts endpoint by specifying the qwen-tts backend:
Language
You can hint the synthesis language with the language request field:
Supported languages: en (English), zh (Chinese), ru (Russian), ja (Japanese), ko (Korean), de (German), fr (French), es (Spanish), it (Italian), pt (Portuguese).
The value is matched case-insensitively and accepts a few forms for convenience:
- the two-letter code (
fr,FR) - a locale/region form, whose region is ignored (
fr-FR,pt_BR,zh-Hansβfr/pt/zh) - the English full name (
french,Portuguese)
If the field is omitted or the value isn’t one of the supported languages, the backend defaults to English.
Custom Voice Mode
Qwen3-TTS supports predefined speakers. You can specify a speaker using the voice parameter:
Available speakers:
- Chinese: Vivian, Serena, Uncle_Fu, Dylan, Eric
- English: Ryan, Aiden
- Japanese: Ono_Anna
- Korean: Sohee
Voice Design Mode
Voice Design allows you to create custom voices using natural language instructions. Configure the model with an instruct option:
Then use the model:
Per-request instructions
Instead of (or in addition to) the static YAML instruct option, you can pass an
instructions string per request. It maps to the OpenAI
instructions field
and takes precedence over the YAML option when set, falling back to it when empty. This lets
a single model config serve a different emotion (CustomVoice) or a different designed voice
(VoiceDesign) on every request - useful for roleplay/narration clients that need many voices:
Backends that do not support style/voice instructions simply ignore the field.
You can also pass backend-specific generation parameters per request via the LocalAI
params extension (a string-to-string map; values are coerced to the backend’s expected
types). For example, with the Chatterbox backend:
Voice Clone Mode
Voice Clone allows you to clone a voice from reference audio. Configure the model with an AudioPath and optional ref_text:
You can also use URLs or base64 strings for the reference audio. The backend automatically detects the mode based on available parameters (AudioPath β VoiceClone, instruct option β VoiceDesign, voice parameter β CustomVoice).
Then use the model:
Multi-Voice Clone Mode
Qwen3-TTS also supports loading multiple voices for voice cloning, allowing you to select different voices at request time. Configure multiple voices using the voices option:
The voices option accepts a JSON array where each voice entry must have:
name: The voice identifier (used in API requests)audio: Path to the reference audio file (relative to model directory or absolute)ref_text: Path to the reference text file for the audio it is paired with
Then use the model with voice selection:
Voice Selection Priority:
voiceparameter in the API request (highest priority)voiceoption in the model configuration- Error if voice is not found among configured voices
Error Handling: If you request a voice that doesn’t exist in the voices list, the API will return an error with a list of available voices:
Backward Compatibility:
The multi-voice mode is backward compatible with existing single-voice configurations. Models using audio_path in the tts section will continue to work as before.
You can also use a config-file to specify TTS models and their parameters.
In the following example, a custom config loads xtts_v2 with a default cloning reference and language.
For XTTS/YourTTS, tts.audio_path is the default cloning reference and a saved Voice Library profile overrides it per request. Other Coqui model families are not advertised as Voice Library-compatible unless they match the supported variant rules or are explicitly verified with tts.voice_cloning: true.
With this config, you can now use the following curl command to generate a text-to-speech audio file:
Response format
To provide some compatibility with OpenAI API regarding response_format, ffmpeg must be installed (or a docker image including ffmpeg used) to leverage converting the generated wav file before the api provide its response.
Warning regarding a change in behaviour. Before this addition, the parameter was ignored and a wav file was always returned, with potential codec errors later in the integration (like trying to decode a mp3 file from a wav, which is the default format used by OpenAI)
Supported format thanks to ffmpeg are wav, mp3, aac, flac, opus, defaulting to wav if an unknown or no format is provided.
If a response_format is added in the query (other than wav) and ffmpeg is not available, the call will fail.