23 lines
766 B
Text
23 lines
766 B
Text
# QA Provider for the research agent (ollama, openai, anthropic, etc.)
|
|
QA_PROVIDER=ollama
|
|
|
|
# QA Model name
|
|
QA_MODEL=gpt-oss:latest
|
|
|
|
# Ollama base URL (only needed if using ollama provider)
|
|
# For Docker: http://host.docker.internal:11434
|
|
# For local development: http://localhost:11434
|
|
OLLAMA_BASE_URL=http://host.docker.internal:11434
|
|
|
|
# Path to the LanceDB database
|
|
# For Docker: /app/data/haiku_rag.lancedb
|
|
# For local development: Use absolute path to existing database
|
|
DB_PATH=~/SOME_FOLDER/haiku.rag.lancedb
|
|
|
|
# API keys (set as needed for your QA provider)
|
|
# OPENAI_API_KEY=your-key-here
|
|
# ANTHROPIC_API_KEY=your-key-here
|
|
|
|
# Embedding provider configuration (optional, defaults will be used)
|
|
# EMBEDDING_PROVIDER=openai
|
|
# EMBEDDING_MODEL=text-embedding-3-small
|