petter2025 commited on
Commit
d3ca6ed
·
verified ·
1 Parent(s): 212881a

Create .env.example

Browse files
Files changed (1) hide show
  1. .env.example +47 -29
.env.example CHANGED
@@ -1,29 +1,47 @@
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ARF Demo Configuration
2
+ # Copy this file to .env and modify values as needed
3
+
4
+ # ===== System Mode =====
5
+ # Options: demo, oss, enterprise
6
+ ARF_MODE=demo
7
+
8
+ # Use mock ARF implementation (true for demo, false for real ARF)
9
+ USE_MOCK_ARF=true
10
+
11
+ # ===== ARF Integration =====
12
+ # Required for enterprise mode
13
+ ARF_API_KEY=your_api_key_here
14
+ ARF_BASE_URL=https://api.arf.dev
15
+
16
+ # ===== Business Configuration =====
17
+ # Engineer costs (USD)
18
+ ENGINEER_HOURLY_RATE=150
19
+ ENGINEER_ANNUAL_COST=125000
20
+
21
+ # Default savings rate with ARF (0.0 to 1.0)
22
+ DEFAULT_SAVINGS_RATE=0.82
23
+
24
+ # ===== UI Configuration =====
25
+ # Auto-refresh interval in seconds
26
+ AUTO_REFRESH_SECONDS=30
27
+
28
+ # Maximum history items to keep
29
+ MAX_HISTORY_ITEMS=100
30
+
31
+ # ===== Demo Configuration =====
32
+ # Default incident scenario
33
+ DEFAULT_SCENARIO=Cache Miss Storm
34
+
35
+ # Path to scenario configuration files
36
+ SCENARIO_CONFIG_PATH=config/scenarios
37
+
38
+ # ===== Safety Configuration =====
39
+ # Default safety mode: advisory, approval, autonomous
40
+ DEFAULT_SAFETY_MODE=advisory
41
+
42
+ # Require human approval for execution
43
+ REQUIRE_APPROVAL=true
44
+
45
+ # ===== Logging =====
46
+ # Log level: DEBUG, INFO, WARNING, ERROR
47
+ LOG_LEVEL=INFO