Skip to content

An Open-Webui fork meant to integrate with OpenLLM-France's Lucie

License

Notifications You must be signed in to change notification settings

OpenLLM-France/open-webui-lucie

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Open Webui Lucie

This fork of Open-Webui is a web interface for Lucie developped by OpenLLM-France and LINAGORA.

Please refer to the original project for manual installation instructions.

Docker

We provide a Docker image for easy deployment. Use the following docker-compose for a quick start:

services:
  ollama:
    volumes:
      - ollama:/root/.ollama
    container_name: ollama
    pull_policy: always
    tty: true
    restart: unless-stopped
    image: ollama/ollama:latest

  open-webui-lucie:
    image: ghcr.io/openllm-france/open-webui-lucie:latest
    container_name: open-webui-lucie
    volumes:
      - open-webui:/app/backend/data
    depends_on:
      - ollama
    ports:
      - 3000:8080
    environment:
      - 'OLLAMA_BASE_URL=http://ollama:11434'
      - 'WEBUI_SECRET_KEY='
    extra_hosts:
      - host.docker.internal:host-gateway
    restart: unless-stopped

volumes:
  ollama: {}
  open-webui: {}

About

An Open-Webui fork meant to integrate with OpenLLM-France's Lucie

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • JavaScript 43.0%
  • Svelte 27.9%
  • Python 20.2%
  • TypeScript 4.7%
  • CSS 3.8%
  • Shell 0.2%
  • Other 0.2%