15 lines
661 B
Text
15 lines
661 B
Text
# Path to the LanceDB database on your HOST machine
|
|
# This will be mounted into the Docker container at /app/data/haiku.rag.lancedb
|
|
# Must be an absolute path to an existing database created with haiku-rag
|
|
DB_PATH=/absolute/path/to/your/haiku.rag.lancedb
|
|
|
|
# Ollama API base URL (if using Ollama for local models)
|
|
# If running Ollama on your host machine, use your machine's IP address
|
|
# that the Docker container can reach (not localhost)
|
|
OLLAMA_BASE_URL=http://host.docker.internal:11434
|
|
|
|
# API keys (set as needed for your QA provider)
|
|
# OPENAI_API_KEY=your-key-here
|
|
# ANTHROPIC_API_KEY=your-key-here
|
|
# VOYAGE_API_KEY=your-key-here
|
|
# CO_API_KEY=your-key-here
|