# ===== Database Configuration ===== # PostgreSQL connection URL with PGVector extension # Format: postgresql://username:password@host:port/database DATABASE_URL=postgresql://user:password@localhost:5432/postgres # ===== LLM Configuration ===== # Provider: openai, anthropic, gemini, ollama, etc. LLM_PROVIDER=openai # Your LLM API key LLM_API_KEY=sk-your-openai-api-key-here # LLM model to use (e.g., gpt-4o-mini, gpt-4o, claude-3-sonnet) LLM_MODEL=gpt-4.1-mini # Base URL for the LLM API (change for Ollama or other OpenAI-compatible providers) LLM_BASE_URL=https://api.openai.com/v1 # Embedding model to use (e.g., text-embedding-3-small, text-embedding-3-large, text-embedding-ada-002) EMBEDDING_MODEL=text-embedding-3-small