Interfaz de Libre WebUI
Código Abierto y Auto-alojado

Tu IA, tus reglas

v0.11.0 ¿Qué hay de nuevo?
Notas de versión Ver todo →
✨ 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.

Interfaz de chat IA con prioridad en la privacidad. Ejecuta localmente con Ollama o conecta con OpenAI, Anthropic y más de 9 proveedores. Cero telemetría. Cero rastreo.

npx libre-webui

Requiere Node.js 18+ y Ollama para IA local

Interfaz de Libre WebUI
Cero telemetría
Auto-alojado
Apache 2.0
Sistema de plugins

Todo lo que necesitas

Una solución completa de chat IA que respeta tu privacidad

Artefactos interactivos

Artefactos interactivos

Renderiza HTML, SVG y componentes React directamente en el chat. Vista previa en vivo con modo pantalla completa.

IA Local y en la Nube Chat con documentos (RAG) Variables de Plugin

IA Local y en la Nube

Ejecuta modelos localmente con Ollama o conecta con OpenAI, Anthropic, Groq, Gemini, Mistral y más. Tú eliges.

Chat con documentos (RAG)

Sube PDFs, documentos y archivos de texto. Haz preguntas sobre tus documentos con búsqueda semántica y embeddings vectoriales.

Artefactos interactivos

Renderiza HTML, SVG y componentes React directamente en el chat. Vista previa en vivo con modo pantalla completa.

Cifrado AES-256

Cifrado de nivel empresarial para todos tus datos. Historial de chat, documentos y configuraciones cifrados en reposo.

Personas personalizadas

Crea personalidades IA con comportamientos únicos y prompts de sistema. Importa/exporta personas como JSON.

Texto a voz

Escucha las respuestas de IA con múltiples opciones de voz. Soporte para TTS del navegador e integración con ElevenLabs.

Generación de Imágenes

Genera imágenes con ComfyUI y modelos Flux. Múltiples tamaños, presets de calidad e integración fluida con el chat.

Variables de Plugin

Configuraciones por plugin como temperatura, endpoints y tokens. Los valores sensibles se cifran en reposo.

Atajos de teclado

Atajos inspirados en VS Code para usuarios avanzados. Navega, cambia configuraciones y controla todo desde el teclado.

Soporte multiusuario

Control de acceso basado en roles con soporte SSO. OAuth de GitHub y Hugging Face integrado.

Conecta con cualquier proveedor

Una interfaz, posibilidades ilimitadas

Ollama
Modelos locales
OpenAI
GPT-4o, o1, o3
Anthropic
Claude 4, Opus
Groq
Llama, Mixtral
Google
Gemini Pro
Mistral
Mistral Large
OpenRouter
400+ modelos
HuggingFace
1M+ models
+ Custom
Cualquier API compatible con OpenAI

Empieza en segundos

Elige tu método de instalación preferido

Recomendado

npx (Un comando)

npx libre-webui

Se ejecuta instantáneamente. No requiere instalación.

npm (Instalación global)

npm install -g libre-webuilibre-webui

Instala una vez, ejecuta en cualquier lugar.

Docker

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

Despliegue en contenedor.

Crea plugins personalizados

Conecta cualquier LLM compatible con OpenAI con un simple archivo JSON

Plugins disponibles

Plugins oficiales del repositorio de Libre WebUI. Haz clic para ver o descargar.

Cargando plugins desde 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
    }
  ]
}

Crea tu propio plugin

1

Inicia tu servidor LLM

Ejecuta cualquier servidor compatible con OpenAI: llama.cpp, vLLM, Ollama o un servidor FastAPI personalizado.

2

Crea el JSON del plugin

Define tu endpoint, autenticación y modelos disponibles en un simple archivo JSON.

3

Sube a Libre WebUI

Ve a Ajustes > Proveedores, sube tu plugin e introduce tu clave API.

4

Empieza a chatear

Tus modelos personalizados aparecen en el selector. Privacidad total, control total.

Referencia de campos del plugin

id Identificador único (minúsculas, guiones permitidos)
name Nombre mostrado en la interfaz
type "completion" para chat, "tts" para texto a voz
endpoint URL de API (ej: /v1/chat/completions)
auth.header Cabecera de auth (Authorization, x-api-key)
auth.prefix Prefijo de clave ("Bearer " o vacío)
auth.key_env Variable de entorno para tu clave API
model_map Array de identificadores de modelos disponibles
variables Configuraciones ajustables (temperatura, endpoint, etc.)

¿Listo para ser dueño de tu IA?

Únete a miles de usuarios que valoran la privacidad y el control.