26 lines
647 B
Bash
26 lines
647 B
Bash
# Gemini API Configuration
|
|
GEMINI_API_KEY=AIzaSyDK_jxVlJUpzyxuiGcopSFkiqMAUD3-w0I
|
|
GEMINI_MODEL=gemini-2.5-flash
|
|
|
|
# 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
|
|
|
|
# Fast Mode (use shorter prompts for faster responses)
|
|
FAST_MODE=true
|
|
|
|
# Strategy Generation Settings
|
|
STRATEGY_COUNT=3 # Number of strategies to generate (3 for testing, 20 for production)
|
|
|
|
# Performance Settings
|
|
BRAINSTORM_TIMEOUT=90
|
|
ANALYZE_TIMEOUT=120
|
|
GEMINI_MAX_RETRIES=3
|