File size: 509 Bytes
18e58fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # LexRAG Configuration
# =====================
# Copy this file to .env and fill in your API keys.
# NEVER commit the .env file to version control.
# LLM Provider API Keys
GROQ_API_KEY=gsk_your_groq_api_key_here
OPENROUTER_API_KEY=sk-or-v1-your_openrouter_api_key_here
INDIANKANOON_TOKEN=your_indian_kanoon_token_here
# Default Provider (groq | openrouter | ollama)
LLM_PROVIDER=groq
# Server Configuration
HOST=0.0.0.0
PORT=8000
# Optional: API Key for external access
# LEXRAG_API_KEY=your_api_key_here
|