# MongoDB Connection
MONGODB_URI=mongodb+srv://username:password@cluster0.example.mongodb.net/
MONGODB_DB_NAME=sdof_knowledge
MONGODB_COLLECTION=knowledge_entries
# Embedding Service Configuration
# Only OpenAI embeddings are supported (Claude/Anthropic does not provide embeddings API)
# OpenAI (Only supported option)
EMBEDDING_SERVICE=openai
OPENAI_API_KEY=your_openai_api_key
EMBEDDING_MODEL=text-embedding-3-large
# Note: Claude, Gemini, and Deepseek embeddings are not currently supported
# Claude/Anthropic does not provide an embeddings API
# Future: Other providers may be added when reliable embeddings APIs become available
# Server Configuration
PORT=3000