mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-25 04:40:15 +01:00
* feat: new vector file processing strategy * chore: remove unused client files * chore: remove more unused client files * chore: remove more unused client files and move used to new dir * chore(DataIcon): add className * WIP: Model Endpoint Settings Update, draft additional context settings * feat: improve parsing for augmented prompt, add full context option * chore: remove volume mounting from rag.yml as no longer necessary
31 lines
612 B
YAML
31 lines
612 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
vectordb:
|
|
image: ankane/pgvector:latest
|
|
environment:
|
|
POSTGRES_DB: mydatabase
|
|
POSTGRES_USER: myuser
|
|
POSTGRES_PASSWORD: mypassword
|
|
volumes:
|
|
- pgdata2:/var/lib/postgresql/data
|
|
ports:
|
|
- "5433:5432"
|
|
|
|
rag_api:
|
|
image: ghcr.io/danny-avila/librechat-rag-api-dev:latest
|
|
environment:
|
|
- DB_HOST=vectordb
|
|
- DB_PORT=5432
|
|
- POSTGRES_DB=mydatabase
|
|
- POSTGRES_USER=myuser
|
|
- POSTGRES_PASSWORD=mypassword
|
|
ports:
|
|
- "8000:8000"
|
|
depends_on:
|
|
- vectordb
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
pgdata2:
|