Eidolon-CognitiveTutor / .env.example
BonelliLab's picture
fix: Auto-detect demo mode and add deployment guides
e212f94
# 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