20 lines
438 B
Plaintext
20 lines
438 B
Plaintext
|
|
# Gemini API Configuration
|
||
|
|
GEMINI_API_KEY=your_gemini_api_key_here
|
||
|
|
GEMINI_MODEL=gemini-1.5-pro
|
||
|
|
|
||
|
|
# Service Configuration
|
||
|
|
AI_SERVICE_PORT=9000
|
||
|
|
AI_SERVICE_HOST=0.0.0.0
|
||
|
|
|
||
|
|
# Enrichment Service Integration
|
||
|
|
ENRICHMENT_SERVICE_URL=http://localhost:8000
|
||
|
|
ENRICHMENT_FETCH_LIMIT=10
|
||
|
|
|
||
|
|
# Demo Mode (enables caching and consistent responses for demos)
|
||
|
|
DEMO_MODE=false
|
||
|
|
|
||
|
|
# Performance Settings
|
||
|
|
BRAINSTORM_TIMEOUT=30
|
||
|
|
ANALYZE_TIMEOUT=60
|
||
|
|
GEMINI_MAX_RETRIES=3
|