Libre WebUI Interface
Open Source & Selvhostet

Din AI, dine regler

v0.11.0 Hvad er nyt?
Udgivelsesnoter Se alle →
✨ New Features
  • 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.
🔧 Improvements
  • 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.
🐛 Bug Fixes
  • 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.
🔒 Security & Dependencies
  • Remediated npm security advisories and refreshed dependency locks after 0.10.0, including updates around multer, undici, ws, ip-address, brace-expansion, tmp, and qs.
  • Added npm audit to 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.
📚 Documentation
  • 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.
⚠️ Breaking Changes
  • No known user-facing breaking changes. The plugin and chat internals were heavily refactored, but existing plugin configuration and normal app workflows remain compatible.

Privatlivsfokuseret AI chat interface. Kør lokalt med Ollama eller forbind til OpenAI, Anthropic og 9+ udbydere. Nul telemetri. Nul sporing.

npx libre-webui

Kræver Node.js 18+ og Ollama til lokal AI

Libre WebUI Interface
Nul telemetri
Selvhostet
Apache 2.0
Plugin system

Alt hvad du behøver

En komplet AI chat løsning der respekterer dit privatliv

Interaktive Artefakter

Interaktive Artefakter

Render HTML, SVG og React komponenter direkte i chatten. Live forhåndsvisning med fuldskærmstilstand.

Lokal & Cloud AI Dokumentchat (RAG) Plugin-variabler

Lokal & Cloud AI

Kør modeller lokalt med Ollama eller forbind til OpenAI, Anthropic, Groq, Gemini, Mistral og mere. Dit valg.

Dokumentchat (RAG)

Upload PDF'er, dokumenter og tekstfiler. Stil spørgsmål om dine dokumenter med semantisk søgning og vektor embeddings.

Interaktive Artefakter

Render HTML, SVG og React komponenter direkte i chatten. Live forhåndsvisning med fuldskærmstilstand.

AES-256 Kryptering

Enterprise-grade kryptering for alle dine data. Chathistorik, dokumenter og indstillinger krypteres i hvile.

Tilpassede Personas

Opret AI personligheder med unikke adfærd og system prompts. Import/eksport personas som JSON.

Tekst-til-Tale

Lyt til AI svar med flere stemmemuligheder. Understøtter browser TTS og ElevenLabs integration.

Billedgenerering

Generer billeder med ComfyUI og Flux-modeller. Flere størrelser, kvalitetsindstillinger og problemfri chatintegration.

Plugin-variabler

Konfigurerbare indstillinger pr. plugin som temperatur, endpoint og tokens. Følsomme værdier krypteres ved lagring.

Tastaturgenveje

VS Code-inspirerede genveje for avancerede brugere. Naviger, skift indstillinger og kontroller alt fra tastaturet.

Multi-bruger Support

Rollebaseret adgangskontrol med SSO support. GitHub og Hugging Face OAuth indbygget.

Forbind til enhver udbyder

Én interface, ubegrænsede muligheder

Ollama
Lokale modeller
OpenAI
GPT-4o, o1, o3
Anthropic
Claude 4, Opus
Groq
Llama, Mixtral
Google
Gemini Pro
Mistral
Mistral Large
OpenRouter
400+ modeller
HuggingFace
1M+ models
+ Custom
Enhver OpenAI-kompatibel API

Kom i gang på sekunder

Vælg din foretrukne installationsmetode

Anbefalet

npx (Én kommando)

npx libre-webui

Kører øjeblikkeligt. Ingen installation påkrævet.

npm (Global installation)

npm install -g libre-webuilibre-webui

Installer én gang, kør hvor som helst.

Docker

docker run -p 8080:8080 libre-webui/libre-webui

Containeriseret deployment.

Opret tilpassede plugins

Forbind enhver OpenAI-kompatibel LLM med en simpel JSON fil

Tilgængelige Plugins

Officielle plugins fra Libre WebUI repository. Klik for at se eller downloade.

Indlæser plugins fra GitHub...
📄 custom-model.json
{
  "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
    }
  ]
}

Opret dit eget plugin

1

Start din LLM Server

Kør enhver OpenAI-kompatibel server: llama.cpp, vLLM, Ollama eller en tilpasset FastAPI server.

2

Opret Plugin JSON

Definer dit endpoint, autentificering og tilgængelige modeller i en simpel JSON fil.

3

Upload til Libre WebUI

Gå til Indstillinger > Udbydere, upload dit plugin og indtast din API nøgle.

4

Begynd at chatte

Dine tilpassede modeller vises i modelvælgeren. Fuldt privatliv, fuld kontrol.

Plugin Felt Reference

id Unik identifikator (små bogstaver, bindestreger tilladt)
name Visningsnavn i UI
type "completion" for chat, "tts" for tekst-til-tale
endpoint API URL (f.eks. /v1/chat/completions)
auth.header Auth header navn (Authorization, x-api-key)
auth.prefix Nøgle præfiks ("Bearer " eller tom)
auth.key_env Miljøvariabel for din API nøgle
model_map Array af tilgængelige model identifikatorer
variables Konfigurerbare indstillinger (temperatur, endpoint osv.)

Klar til at eje din AI?

Slut dig til tusindvis af brugere der værdsætter privatliv og kontrol.