25 lines
742 B
Text
25 lines
742 B
Text
# PostgreSQL Configuration
|
|
HINDSIGHT_DB_USER=hindsight_user
|
|
HINDSIGHT_DB_PASSWORD=change-me-to-secure-password
|
|
HINDSIGHT_DB_NAME=hindsight_db
|
|
|
|
# Hindsight Version
|
|
HINDSIGHT_VERSION=latest
|
|
|
|
# LLM Configuration
|
|
HINDSIGHT_API_LLM_PROVIDER=openai
|
|
OPENAI_API_KEY=your-openai-api-key-here
|
|
|
|
# Alternative LLM providers (uncomment and configure as needed):
|
|
# HINDSIGHT_API_LLM_PROVIDER=anthropic
|
|
# ANTHROPIC_API_KEY=your-anthropic-api-key
|
|
|
|
# HINDSIGHT_API_LLM_PROVIDER=gemini
|
|
# GEMINI_API_KEY=your-gemini-api-key
|
|
|
|
# HINDSIGHT_API_LLM_PROVIDER=groq
|
|
# GROQ_API_KEY=your-groq-api-key
|
|
|
|
# Vector and Text Search (already configured in docker-compose.yaml)
|
|
# HINDSIGHT_API_VECTOR_EXTENSION=pgvectorscale
|
|
# HINDSIGHT_API_TEXT_SEARCH_EXTENSION=pg_textsearch
|