Почти полная переработка всего rag
- включение qdrant в контур - использование нормальной эмб-модели - векторизация текста - README и туча мелочей
This commit is contained in:
21
compose.yml
21
compose.yml
@@ -1,21 +1,32 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
ai-ollama:
|
||||
image: ollama/ollama
|
||||
container_name: ai-ollama
|
||||
image: ollama/ollama
|
||||
env_file: .env
|
||||
volumes:
|
||||
- ./.data/ollama:/root/.ollama
|
||||
ports:
|
||||
- "11434:11434"
|
||||
- "${OLLAMA_PORT:-11434}:11434"
|
||||
restart: "no"
|
||||
|
||||
ai-qdrant:
|
||||
container_name: ai-qdrant
|
||||
image: qdrant/qdrant
|
||||
env_file: .env
|
||||
ports:
|
||||
- "{QDRANT_PORT:-6333}:6333"
|
||||
volumes:
|
||||
- ./.data/qdrant/storage:/qdrant/storage
|
||||
restart: "no"
|
||||
|
||||
ai-webui:
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
container_name: ai-webui
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
env_file: .env
|
||||
volumes:
|
||||
- ./.data/webui:/app/backend/data
|
||||
ports:
|
||||
- "9999:8080"
|
||||
- "${OWEBUI_PORT:-9999}:8080"
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
restart: "no"
|
||||
|
||||
Reference in New Issue
Block a user