| # ============================================================================= | |
| # Agentic Reliability Framework - Environment Configuration | |
| # ============================================================================= | |
| # Hugging Face API Configuration | |
| HF_API_KEY=your_huggingface_api_key_here | |
| HF_API_URL=https://router.huggingface.co/hf-inference/v1/completions | |
| # System Configuration | |
| MAX_EVENTS_STORED=1000 | |
| FAISS_BATCH_SIZE=10 | |
| FAISS_SAVE_INTERVAL_SECONDS=30 | |
| VECTOR_DIM=384 | |
| # Business Metrics | |
| BASE_REVENUE_PER_MINUTE=100.0 | |
| BASE_USERS=1000 | |
| # Rate Limiting | |
| MAX_REQUESTS_PER_MINUTE=60 | |
| MAX_REQUESTS_PER_HOUR=500 | |
| # Logging | |
| LOG_LEVEL=INFO | |
| # Thresholds | |
| LATENCY_WARNING=150.0 | |
| LATENCY_CRITICAL=300.0 | |
| LATENCY_EXTREME=500.0 |