add
This commit is contained in:
4
.env
4
.env
@@ -1,9 +1,9 @@
|
|||||||
# ChromaDB Configuration
|
# ChromaDB Configuration
|
||||||
CHROMA_DB_PATH=/app/chroma_db
|
CHROMA_DB_PATH=/app/data/chroma_db
|
||||||
CHROMA_COLLECTION_NAME=memories
|
CHROMA_COLLECTION_NAME=memories
|
||||||
|
|
||||||
# SQLite Configuration
|
# SQLite Configuration
|
||||||
SQLITE_DB_PATH=/app/graph_store.db
|
SQLITE_DB_PATH=/app/data/graph_store.db
|
||||||
|
|
||||||
# Ollama Configuration
|
# Ollama Configuration
|
||||||
# When using Docker Compose with Ollama service, use: http://ollama:11434
|
# When using Docker Compose with Ollama service, use: http://ollama:11434
|
||||||
|
|||||||
@@ -20,13 +20,6 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- PYTHONDONTWRITEBYTECODE=1 # Prevents Python from writing .pyc files
|
- PYTHONDONTWRITEBYTECODE=1 # Prevents Python from writing .pyc files
|
||||||
- PYTHONUNBUFFERED=1 # Ensures Python output is sent straight to terminal
|
- PYTHONUNBUFFERED=1 # Ensures Python output is sent straight to terminal
|
||||||
- CHROMA_DB_PATH=/app/chroma_db
|
|
||||||
- CHROMA_COLLECTION_NAME=memories
|
|
||||||
- SQLITE_DB_PATH=/app/graph_store.db
|
|
||||||
- OLLAMA_HOST=http://ollama:11434
|
|
||||||
- OLLAMA_LLM_MODEL=llama3.2
|
|
||||||
- OLLAMA_EMBEDDER_MODEL=nomic-embed-text
|
|
||||||
- HISTORY_DB_PATH=/app/history/history.db
|
|
||||||
depends_on:
|
depends_on:
|
||||||
ollama:
|
ollama:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
|||||||
Reference in New Issue
Block a user