openvoice_realtime_conversation.mp4
π Report Bug Β· β¨ Request Feature Β· π‘οΈ Report Vulnerability Β· π Wiki
- Crypto: 0x02030569e866e22C9991f55Db0445eeAd2d646c8
- GitHub Sponsors: github.com/sponsors/w4ffl35
- Patreon: patreon.com/c/w4ffl35
βοΈ Get notified when the packaged version releases
| Feature | Description |
|---|---|
| π£οΈ Voice Chat | Real-time conversations with LLMs using espeak, SpeechT5, or OpenVoice TTS |
| π€ Custom AI Agents | Configurable personalities, moods, and RAG-enhanced knowledge |
| π¨ Visual Workflows | Drag-and-drop LangGraph workflow builder with runtime execution |
| πΌοΈ Image Generation | Stable Diffusion (SD 1.5, SDXL) and FLUX models with drawing tools, LoRA, inpainting, and filters |
| π Privacy First | Runs locally with no external APIs by default, configurable guardrails |
| β‘ Fast Generation | ~2s inference on RTX 2080s with GPU acceleration |
| Language | TTS | LLM | STT | GUI |
|---|---|---|---|---|
| English | β | β | β | β |
| Japanese | β | β | β | β |
| Spanish/French/Chinese/Korean | β | β | β | β |
| Minimum | Recommended | |
|---|---|---|
| OS | Ubuntu 22.04, Windows 10 | Ubuntu 22.04 (Wayland) |
| CPU | Ryzen 2700K / i7-8700K | Ryzen 5800X / i7-11700K |
| RAM | 16 GB | 32 GB |
| GPU | NVIDIA RTX 3060 | NVIDIA RTX 4090 |
| Storage | 22 GB (with models) | 100 GB+ |
GUI Mode:
xhost +local:docker && docker compose run --rm airunnerHeadless API Server:
docker compose run --rm --service-ports airunner --headlessNote:
--service-portsis required to expose port 8080 for the API.
The headless server exposes an HTTP API on port 8080 with endpoints:
GET /health- Health check and service statusPOST /llm- LLM inferencePOST /art- Image generation
Python 3.13+ required. We recommend using pyenv and venv.
-
Install system dependencies:
sudo apt update && sudo apt install -y \ build-essential cmake git curl wget \ nvidia-cuda-toolkit pipewire libportaudio2 libxcb-cursor0 \ espeak espeak-ng-espeak qt6-qpa-plugins qt6-wayland \ mecab libmecab-dev mecab-ipadic-utf8 libxslt-dev mkcert -
Create data directory:
mkdir -p ~/.local/share/airunner -
Install AI Runner:
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128 pip install airunner[all_dev]
-
Run:
airunner
For detailed instructions, see the Installation Wiki.
AI Runner downloads essential TTS/STT models automatically. LLM and image models must be configured:
| Category | Model | Size |
|---|---|---|
| LLM (default) | Llama 3.1 8B Instruct (4bit) | ~4 GB |
| Image | Stable Diffusion 1.5 | ~2 GB |
| Image | SDXL 1.0 | ~6 GB |
| Image | FLUX.1 Dev/Schnell (GGUF) | 8-12 GB |
| TTS | OpenVoice / SpeechT5 | 654 MB - 4 GB |
| STT | Whisper Tiny | 155 MB |
LLM Providers: Local (HuggingFace), Ollama, OpenRouter, OpenAI
Art Models: Place your models in ~/.local/share/airunner/art/models/
| Command | Description |
|---|---|
airunner |
Launch GUI |
airunner-setup |
Download models |
airunner-build-ui |
Rebuild UI from .ui files |
airunner-tests |
Run test suite |
airunner-generate-cert |
Generate SSL certificate |
AI Runner's local server uses HTTPS by default. Certificates are auto-generated in ~/.local/share/airunner/certs/.
For browser-trusted certificates, install mkcert:
sudo apt install libnss3-tools
mkcert -installEffective February 1, 2026, the Colorado AI Act (SB 24-205) regulates high-risk AI systems.
Your Responsibility: If you use AI Runner for decisions with legal or significant effects on individuals (employment screening, loan eligibility, insurance, housing), you may be classified as a deployer of a high-risk AI system and must:
- Implement a risk management policy
- Complete impact assessments
- Provide consumer notice and appeal mechanisms
- Report algorithmic discrimination to the Colorado Attorney General
AI Runner's Design: Local-first operation, configurable guardrails, and no external data transmission by default help support compliant use.
# Run headless-safe tests
pytest src/airunner/utils/tests/
# Run display-required tests (Qt/GUI)
xvfb-run -a pytest src/airunner/utils/tests/xvfb_required/See CONTRIBUTING.md and the Development Wiki.
Support development on GitHub Sponsors.


