Profile B: Voxtral HF + translation

June 12, 2026 ยท View on GitHub

wlk

WLK: Ultra-low-latency, self-hosted speech-to-text pipeline

WhisperLiveKit Demo

PyPI Version PyPI Downloads Python Versions Hugging Face models License

Powered by Leading Research:

Why not just run a simple Whisper model on every audio batch? Whisper is designed for complete utterances, not real-time chunks. Processing small segments loses context, cuts off words mid-syllable, and produces poor transcription. WhisperLiveKit uses state-of-the-art simultaneous speech research for intelligent buffering and incremental processing.

Architecture

Architecture

The backend supports multiple concurrent users. Voice Activity Detection reduces overhead when no voice is detected.

Installation & Quick Start

pip install whisperlivekit

Quick Start


# Start the server โ€” open http://localhost:8000 and start talking
wlk --model base --language en


# Auto-pull model and start server
wlk run whisper:tiny

# Transcribe a file (no server needed)
wlk transcribe meeting.wav

# Generate subtitles
wlk transcribe --format srt podcast.mp3 -o podcast.srt

# Manage models
wlk models                             # See what's installed
wlk pull large-v3                      # Download a model
wlk rm large-v3                        # Delete a model

# Benchmark speed and accuracy
wlk bench

API Compatibility

WhisperLiveKit exposes multiple APIs so you can use it as a drop-in replacement:

# OpenAI-compatible REST API
curl http://localhost:8000/v1/audio/transcriptions -F file=@audio.wav

# Works with the OpenAI Python SDK
client = OpenAI(base_url="http://localhost:8000/v1", api_key="unused")

# Deepgram-compatible WebSocket (use any Deepgram SDK)
# Just point your Deepgram client at localhost:8000

# Native WebSocket for real-time streaming
ws://localhost:8000/asr

See docs/API.md for the complete API reference.

  • See here for the list of all available languages.
  • Check the troubleshooting guide for step-by-step fixes collected from recent GPU setup/env issues.
  • For HTTPS requirements, see the Parameters section for SSL configuration options.

Optional Dependencies

Featureuv syncpip install -e
Apple Silicon MLX Whisper backenduv sync --extra mlx-whisperpip install -e ".[mlx-whisper]"
Voxtral (MLX backend, Apple Silicon)uv sync --extra voxtral-mlxpip install -e ".[voxtral-mlx]"
CPU PyTorch stackuv sync --extra cpupip install -e ".[cpu]"
CUDA 12.9 PyTorch stackuv sync --extra cu129pip install -e ".[cu129]"
Translationuv sync --extra translationpip install -e ".[translation]"
Sentence tokenizeruv sync --extra sentence_tokenizerpip install -e ".[sentence_tokenizer]"
Voxtral (HF backend)uv sync --extra voxtral-hfpip install -e ".[voxtral-hf]"
Qwen3-ASR vLLM (CUDA)uv sync --extra qwen3-vllmpip install -e ".[qwen3-vllm]"
Qwen3-ASR vLLM Metal (Apple Silicon)Install vLLM with the official vllm-metal script first, then uv sync --extra qwen3-vllm-metalInstall vLLM with the official vllm-metal script first, then pip install -e ".[qwen3-vllm-metal]"
Speaker diarization (Sortformer / NeMo)uv sync --extra diarization-sortformerpip install -e ".[diarization-sortformer]"
[Not recommended] Speaker diarization with Diartuv sync --extra diarization-diartpip install -e ".[diarization-diart]"

Supported GPU profiles:

# Profile A: Sortformer diarization
uv sync --extra cu129 --extra diarization-sortformer

# Profile B: Voxtral HF + translation
uv sync --extra cu129 --extra voxtral-hf --extra translation

# Profile C: Qwen3-ASR vLLM
uv sync --extra qwen3-vllm

qwen3-vllm uses vLLM's CUDA wheel stack and must be installed in a separate environment from cu129. voxtral-hf / qwen3-vllm-metal and diarization-sortformer are also intentionally incompatible extras and must be installed in separate environments.

See Parameters & Configuration below on how to use them.

Speed vs Accuracy โ€” English

Speed vs Accuracy โ€” French

Benchmarks use 6 minutes of public LibriVox audiobook recordings per language (30s + 60s + 120s + 180s), with ground truth from Project Gutenberg. Fully reproducible with python scripts/run_scatter_benchmark.py. We are actively looking for benchmark results on other hardware (NVIDIA GPUs, different Apple Silicon chips, cloud instances). If you run the benchmarks on your machine, please share your results via an issue or PR!

Use it to capture audio from web pages.

Go to chrome-extension for instructions.

WhisperLiveKit Demo

Voxtral Backend

WhisperLiveKit supports Voxtral Mini, a 4B-parameter speech model from Mistral AI that natively handles 100+ languages with automatic language detection. Whisper also supports auto-detection (--language auto), but Voxtral's per-chunk detection is more reliable and does not bias towards English.

# Apple Silicon (native MLX, recommended)
pip install -e ".[voxtral-mlx]"
wlk --backend voxtral-mlx

# Linux/GPU (HuggingFace transformers)
pip install transformers torch
wlk --backend voxtral

Voxtral uses its own streaming policy and does not use LocalAgreement or SimulStreaming. See BENCHMARK.md for performance numbers.

Usage Examples

Command-line Interface: Start the transcription server with various options:

# Large model and translate from french to danish
wlk --model large-v3 --language fr --target-language da

# Diarization and server listening on */80
wlk --host 0.0.0.0 --port 80 --model medium --diarization --language fr

# Voxtral multilingual (auto-detects language)
wlk --backend voxtral-mlx

Python API Integration: Check basic_server for a more complete example of how to use the functions and classes.

import asyncio
from contextlib import asynccontextmanager

from fastapi import FastAPI, WebSocket, WebSocketDisconnect
from fastapi.responses import HTMLResponse

from whisperlivekit import AudioProcessor, TranscriptionEngine, parse_args

transcription_engine = None

@asynccontextmanager
async def lifespan(app: FastAPI):
    global transcription_engine
    transcription_engine = TranscriptionEngine(model_size="medium", diarization=True, lan="en")
    yield

app = FastAPI(lifespan=lifespan)

async def handle_websocket_results(websocket: WebSocket, results_generator):
    async for response in results_generator:
        await websocket.send_json(response)
    await websocket.send_json({"type": "ready_to_stop"})

@app.websocket("/asr")
async def websocket_endpoint(websocket: WebSocket):
    global transcription_engine

    # Create a new AudioProcessor for each connection, passing the shared engine
    audio_processor = AudioProcessor(transcription_engine=transcription_engine)    
    results_generator = await audio_processor.create_tasks()
    results_task = asyncio.create_task(handle_websocket_results(websocket, results_generator))
    await websocket.accept()
    while True:
        message = await websocket.receive_bytes()
        await audio_processor.process_audio(message)        

Frontend Implementation: The package includes an HTML/JavaScript implementation here. You can also import it using from whisperlivekit import get_inline_ui_html & page = get_inline_ui_html()

Parameters & Configuration

ParameterDescriptionDefault
--modelWhisper model size. List and recommandations heresmall
--model-pathLocal .pt file/directory or Hugging Face repo ID containing the Whisper model. Overrides --model. Recommandations hereNone
--languageList here. If you use auto, the model attempts to detect the language automatically, but it tends to bias towards English.auto
--target-languageIf sets, translates using NLLW. 200 languages available. If you want to translate to english, you can also use --direct-english-translation. The STT model will try to directly output the translation.None
--diarizationEnable speaker identificationFalse
--backend-policyStreaming strategy: 1/simulstreaming uses AlignAtt SimulStreaming, 2/localagreement uses the LocalAgreement policysimulstreaming
--backendASR backend selector. auto picks MLX on macOS (if installed), otherwise Faster-Whisper, otherwise vanilla Whisper. Options: mlx-whisper, faster-whisper, whisper, openai-api (LocalAgreement only), voxtral-mlx (Apple Silicon), voxtral (HuggingFace), qwen3-vllm, qwen3-vllm-metal (Apple Silicon)auto
--no-vacDisable Voice Activity Controller. NOT ADVISEDFalse
--no-vadDisable Voice Activity Detection. NOT ADVISEDFalse
--warmup-fileAudio file path for model warmupjfk.wav
--hostServer host addresslocalhost
--portServer port8000
--ssl-certfilePath to the SSL certificate file (for HTTPS support)None
--ssl-keyfilePath to the SSL private key file (for HTTPS support)None
--forwarded-allow-ipsIp or Ips allowed to reverse proxy the whisperlivekit-server. Supported types are IP Addresses (e.g. 127.0.0.1), IP Networks (e.g. 10.100.0.0/16), or Literals (e.g. /path/to/socket.sock)None
--cors-originsComma-separated list of allowed CORS origins. Empty disables CORS; use * to allow all origins.empty
--pcm-inputraw PCM (s16le) data is expected as input and FFmpeg will be bypassed. Frontend will use AudioWorklet instead of MediaRecorderFalse
--lora-pathPath or Hugging Face repo ID for LoRA adapter weights (e.g., qfuxa/whisper-base-french-lora). Only works with native Whisper backend (--backend whisper)None
Translation optionsDescriptionDefault
--nllb-backendtransformers or ctranslate2transformers
--nllb-size600M or 1.3B600M
Diarization optionsDescriptionDefault
--diarization-backenddiart or sortformersortformer
--disable-punctuation-split[NOT FUNCTIONAL IN 0.2.15 / 0.2.16] Disable punctuation based splits. See #214False
--segmentation-modelHugging Face model ID for Diart segmentation model. Available modelspyannote/segmentation-3.0
--embedding-modelHugging Face model ID for Diart embedding model. Available modelspyannote/embedding
SimulStreaming backend optionsDescriptionDefault
--disable-fast-encoderDisable Faster Whisper or MLX Whisper backends for the encoder (if installed). Inference can be slower but helpful when GPU memory is limitedFalse
--custom-alignment-headsUse your own alignment heads, useful when --model-dir is used. Use scripts/determine_alignment_heads.py to extract them.
None
--frame-thresholdAlignAtt frame threshold (lower = faster, higher = more accurate)25
--beamsNumber of beams for beam search (1 = greedy decoding)1
--decoderForce decoder type (beam or greedy)auto
--audio-max-lenMaximum audio buffer length (seconds)30.0
--audio-min-lenMinimum audio length to process (seconds)0.0
--cif-ckpt-pathPath to CIF model for word boundary detectionNone
--never-fireNever truncate incomplete wordsFalse
--init-promptInitial prompt for the modelNone
--static-init-promptStatic prompt that doesn't scrollNone
--max-context-tokensMaximum context tokensDepends on model used, but usually 448.
WhisperStreaming backend optionsDescriptionDefault
--confidence-validationUse confidence scores for faster validationFalse
--buffer_trimmingBuffer trimming strategy (sentence or segment)segment

For diarization using Diart, you need to accept user conditions here for the pyannote/segmentation model, here for the pyannote/segmentation-3.0 model and here for the pyannote/embedding model. Then, login to HuggingFace: huggingface-cli login

๐Ÿš€ Deployment Guide

To deploy WhisperLiveKit in production:

  1. Server Setup: Install production ASGI server & launch with multiple workers

    pip install uvicorn gunicorn
    gunicorn -k uvicorn.workers.UvicornWorker -w 4 your_app:app
    
  2. Frontend: Host your customized version of the html example & ensure WebSocket connection points correctly

  3. Nginx Configuration (recommended for production):

    server {
       listen 80;
       server_name your-domain.com;
        location / {
            proxy_pass http://localhost:8000;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
            proxy_set_header Host $host;
    }}
    
  4. HTTPS Support: For secure deployments, use "wss://" instead of "ws://" in WebSocket URL

๐Ÿ‹ Docker

Deploy the application easily using Docker with GPU or CPU support.

Prerequisites

  • Docker installed on your system
  • For GPU support: NVIDIA Docker runtime installed

Quick Start

With GPU acceleration (recommended):

docker build -t wlk .
docker run --gpus all -p 8000:8000 --name wlk wlk

CPU only:

docker build -f Dockerfile.cpu -t wlk --build-arg EXTRAS="cpu" .
docker run -p 8000:8000 --name wlk wlk

Advanced Usage

Custom configuration:

# Example with custom model and language
docker run --gpus all -p 8000:8000 --name wlk wlk --model large-v3 --language fr

Compose (recommended for cache + token wiring):

# GPU Sortformer profile
docker compose up --build wlk-gpu-sortformer

# GPU Voxtral profile
docker compose up --build wlk-gpu-voxtral

# CPU service
docker compose up --build wlk-cpu

Memory Requirements

  • Large models: Ensure your Docker runtime has sufficient memory allocated

Customization

  • --build-arg Options:
    • EXTRAS="cu129,diarization-sortformer" - GPU Sortformer profile extras.
    • EXTRAS="cu129,voxtral-hf,translation" - GPU Voxtral profile extras.
    • EXTRAS="cpu,diarization-diart,translation" - CPU profile extras.
    • Hugging Face cache + token are configured in compose.yml using a named volume and HF_TKN_FILE (default: ./token).

Testing & Benchmarks

# Quick benchmark with the CLI
wlk bench
wlk bench --backend faster-whisper --model large-v3
wlk bench --languages all --json results.json

# Install test dependencies for full suite
pip install -e ".[test]"

# Run unit tests (no model download required)
pytest tests/ -v

# Speed vs Accuracy scatter plot (all backends, compute-aware + unaware)
python scripts/create_long_samples.py        # generate ~90s test samples (cached)
python scripts/run_scatter_benchmark.py      # English (both modes)
python scripts/run_scatter_benchmark.py --lang fr  # French

Use Cases

Capture discussions in real-time for meeting transcription, help hearing-impaired users follow conversations through accessibility tools, transcribe podcasts or videos automatically for content creation, transcribe support calls with speaker identification for customer service...