Deine KI, deine Regeln
- Added optional Cloudflare Turnstile protection for public account creation, configured from backend environment variables and rendered only when enabled.
- Added Tailscale-friendly development hosting/origin support so Libre WebUI can be reached from another device during local development.
- Added Playwright e2e coverage for demo login, one-user mode, artifact detection/rendering, artifact resize behavior, cloud-model regression coverage, mobile sidebar behavior, and async locale loading.
- Set blue as the default accent color and polished the remaining auth, artifact demo, badge, icon, logo, and model-flow surfaces to follow the current design system.
- Improved artifact reliability for multi-file HTML, filename-qualified bundles, standalone full HTML documents, local file reference cleanup, and themed empty/fallback preview states.
- Made artifact pane resizing release pointer state correctly so the pane no longer feels stuck to the mouse after resize.
- Made code-block streaming smoother with requestAnimationFrame-coalesced updates, a lightweight streaming code renderer, lazy rich markdown rendering, and split markdown/math/highlighting chunks.
- Reworked title generation so it honors the existing toggle, resolves the current running model correctly, supports plugin-backed title generation, falls back to Ollama, and sanitizes generated titles.
- Split major backend chat orchestration into focused services for WebSocket handling, shared chat context, assistant completion persistence, plugin streaming, Ollama streaming, title generation, and request preparation.
- Split plugin capabilities into smaller adapters/services for chat, streaming, embeddings, image generation, TTS, validation, uploads, variables, and provider response conversion.
- Slimmed large frontend surfaces by extracting Settings tabs, Model Manager sections, Model Selector tabs, Persona Form tabs, Sidebar sections, API domain clients, and chat store helpers.
- Added gated frontend/backend loggers and routed noisy development diagnostics through explicit debug controls.
- Updated release tooling with a security preflight and kept the production build free of the previous large chunk warnings.
- Fixed toggled session title generation so titles are generated only when the option is enabled.
- Fixed demo mode persona avatars so bundled/local demo images render correctly.
- Fixed chat routing and settings state edge cases after the shared generation refactor.
- Fixed dark-mode artifact demo surfaces so generated previews no longer fall back to the old default blue styling.
- Added regression coverage around cloud model suffix handling without re-documenting the 0.10.0 cloud model feature itself.
- Remediated npm security advisories and refreshed dependency locks after 0.10.0, including updates around
multer,undici,ws,ip-address,brace-expansion,tmp, andqs. - Added
npm auditto the release preflight path and verified the package lock reports zero vulnerabilities after the release update. - Updated GitHub Actions dependencies, including
actions/checkout, and hardened the release workflow checks before publishing.
- Refreshed the README to describe the current Libre WebUI product, model/provider story, install paths, and project positioning.
- Audited and rewrote the project docs so the model examples, setup guidance, plugin docs, auth docs, artifacts docs, environment variables, and deployment guides match the current application.
- Updated DESIGN.md with the current blue-accent direction and UI guidance without repeating the 0.10.0 custom-accent release notes.
- No known user-facing breaking changes. The plugin and chat internals were heavily refactored, but existing plugin configuration and normal app workflows remain compatible.
Datenschutzorientierte KI-Chat-Oberfläche. Lokal mit Ollama ausführen oder mit OpenAI, Anthropic und 9+ Anbietern verbinden. Keine Telemetrie. Kein Tracking.
npx libre-webui Erfordert Node.js 18+ und Ollama für lokale KI
Alles was du brauchst
Eine vollständige KI-Chat-Lösung, die deine Privatsphäre respektiert
Interaktive Artefakte
HTML, SVG und React-Komponenten direkt im Chat rendern. Live-Vorschau mit Vollbildmodus.
Lokale & Cloud-KI
Modelle lokal mit Ollama ausführen oder mit OpenAI, Anthropic, Groq, Gemini, Mistral und mehr verbinden. Deine Wahl.
Dokument-Chat (RAG)
PDFs, Dokumente und Textdateien hochladen. Stelle Fragen zu deinen Dokumenten mit semantischer Suche und Vektor-Embeddings.
Interaktive Artefakte
HTML, SVG und React-Komponenten direkt im Chat rendern. Live-Vorschau mit Vollbildmodus.
AES-256-Verschlüsselung
Verschlüsselung auf Unternehmensniveau für alle deine Daten. Chat-Verlauf, Dokumente und Einstellungen sind verschlüsselt gespeichert.
Benutzerdefinierte Personas
KI-Persönlichkeiten mit einzigartigen Verhaltensweisen und System-Prompts erstellen. Personas als JSON importieren/exportieren.
Text-zu-Sprache
KI-Antworten mit mehreren Stimmoptionen anhören. Unterstützt Browser-TTS und ElevenLabs-Integration.
Bildgenerierung
Erstellen Sie Bilder mit ComfyUI und Flux-Modellen. Verschiedene Größen, Qualitätsvoreinstellungen und nahtlose Chat-Integration.
Plugin-Variablen
Pro-Plugin konfigurierbare Einstellungen wie Temperatur, Endpunkt und Token. Sensible Werte werden verschlüsselt gespeichert.
Tastaturkürzel
Von VS Code inspirierte Tastenkürzel für Power-User. Navigieren, Einstellungen umschalten und alles über die Tastatur steuern.
Mehrbenutzer-Unterstützung
Rollenbasierte Zugriffskontrolle mit SSO-Unterstützung. GitHub und Hugging Face OAuth integriert.
Mit jedem Anbieter verbinden
Eine Oberfläche, unbegrenzte Möglichkeiten
In Sekunden starten
Wähle deine bevorzugte Installationsmethode
Benutzerdefinierte Plugins erstellen
Verbinde jede OpenAI-kompatible LLM mit einer einfachen JSON-Datei
Verfügbare Plugins
Offizielle Plugins aus dem Libre WebUI Repository. Klicken zum Anzeigen oder Herunterladen.
{
"id": "custom-model",
"name": "Custom Model",
"type": "completion",
"endpoint": "http://localhost:8000/v1/chat/completions",
"auth": {
"header": "Authorization",
"prefix": "Bearer ",
"key_env": "CUSTOM_MODEL_API_KEY"
},
"model_map": [
"my-fine-tuned-llama"
],
"variables": [
{
"name": "temperature",
"type": "number",
"label": "Temperature",
"default": 0.7,
"min": 0, "max": 2
}
]
} Erstelle dein eigenes Plugin
Starte deinen LLM-Server
Führe einen beliebigen OpenAI-kompatiblen Server aus: llama.cpp, vLLM, Ollama oder einen benutzerdefinierten FastAPI-Server.
Plugin-JSON erstellen
Definiere deinen Endpunkt, Authentifizierung und verfügbare Modelle in einer einfachen JSON-Datei.
Zu Libre WebUI hochladen
Gehe zu Einstellungen > Anbieter, lade dein Plugin hoch und gib deinen API-Schlüssel ein.
Starte den Chat
Deine benutzerdefinierten Modelle erscheinen in der Modellauswahl. Volle Privatsphäre, volle Kontrolle.
Plugin-Felder Referenz
id Eindeutiger Bezeichner (Kleinbuchstaben, Bindestriche erlaubt) name Anzeigename in der Benutzeroberfläche type "completion" für Chat, "tts" für Text-zu-Sprache endpoint API-URL (z.B. /v1/chat/completions) auth.header Auth-Header-Name (Authorization, x-api-key) auth.prefix Schlüssel-Präfix ("Bearer " oder leer) auth.key_env Umgebungsvariable für deinen API-Schlüssel model_map Array verfügbarer Modell-Bezeichner variables Konfigurierbare Einstellungen (Temperatur, Endpunkt usw.) Bereit, deine KI zu besitzen?
Schließe dich Tausenden von Nutzern an, die Privatsphäre und Kontrolle schätzen.