Spaces:
Sleeping
Sleeping
File size: 1,031 Bytes
e212f94 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# Eidolon Cognitive Tutor - Environment Variables
# ===========================================
# DEPLOYMENT MODE
# ===========================================
# Set to 1 for demo mode (no model loading, safe for public deployment)
# Set to 0 if you have a model or inference API configured
DEMO_MODE=1
# ===========================================
# INFERENCE API (Optional)
# ===========================================
# If you have a hosted inference endpoint (HuggingFace, Replicate, etc.)
# INFERENCE_API_URL=https://your-inference-endpoint.com
# INFERENCE_API_KEY=your-api-key-here
# ===========================================
# RATE LIMITING
# ===========================================
# Maximum requests per time window (default: 10)
RATE_LIMIT_REQUESTS=10
# Time window in seconds (default: 60)
RATE_LIMIT_WINDOW=60
# ===========================================
# STORAGE
# ===========================================
# Path to SQLite database for conversation history
HISTORY_DB_PATH=conversation_history.db
|