# MemVault Configuration
# Copy this to .env and customize as needed

# PostgreSQL (with pgvector extension)
MEMVAULT_DB_DSN=postgresql://postgres:postgres@127.0.0.1:5432/memvault

# Embedding server
MEMVAULT_EMBEDDING_URL=http://127.0.0.1:8001
MEMVAULT_EMBEDDING_MODEL=all-MiniLM-L6-v2
MEMVAULT_EMBEDDING_PORT=8001

# LLM (any OpenAI-compatible endpoint)
MEMVAULT_LLM_BASE_URL=http://127.0.0.1:11434/v1
MEMVAULT_LLM_API_KEY=ollama
MEMVAULT_LLM_MODEL=qwen2.5:3b

# Server
MEMVAULT_HOST=0.0.0.0
MEMVAULT_PORT=8002

# Memory types to extract (comma-separated)
MEMVAULT_MEMORY_TYPES=event,knowledge

# Translation (set to true for non-English users)
MEMVAULT_TRANSLATION=false
MEMVAULT_TRANSLATION_LANG=Chinese
