Create .env.example
Browse files- .env.example +29 -0
.env.example
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# =============================================================================
|
| 2 |
+
# Agentic Reliability Framework - Environment Configuration
|
| 3 |
+
# =============================================================================
|
| 4 |
+
|
| 5 |
+
# Hugging Face API Configuration
|
| 6 |
+
HF_API_KEY=your_huggingface_api_key_here
|
| 7 |
+
HF_API_URL=https://router.huggingface.co/hf-inference/v1/completions
|
| 8 |
+
|
| 9 |
+
# System Configuration
|
| 10 |
+
MAX_EVENTS_STORED=1000
|
| 11 |
+
FAISS_BATCH_SIZE=10
|
| 12 |
+
FAISS_SAVE_INTERVAL_SECONDS=30
|
| 13 |
+
VECTOR_DIM=384
|
| 14 |
+
|
| 15 |
+
# Business Metrics
|
| 16 |
+
BASE_REVENUE_PER_MINUTE=100.0
|
| 17 |
+
BASE_USERS=1000
|
| 18 |
+
|
| 19 |
+
# Rate Limiting
|
| 20 |
+
MAX_REQUESTS_PER_MINUTE=60
|
| 21 |
+
MAX_REQUESTS_PER_HOUR=500
|
| 22 |
+
|
| 23 |
+
# Logging
|
| 24 |
+
LOG_LEVEL=INFO
|
| 25 |
+
|
| 26 |
+
# Thresholds
|
| 27 |
+
LATENCY_WARNING=150.0
|
| 28 |
+
LATENCY_CRITICAL=300.0
|
| 29 |
+
LATENCY_EXTREME=500.0
|