petter2025 commited on
Commit
6e28def
·
verified ·
1 Parent(s): 2534e22

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +29 -47
requirements.txt CHANGED
@@ -1,47 +1,29 @@
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
 
1
+ # Agentic Reliability Framework v3.8.0 - Enhanced Demo
2
+ # Updated: 2024-12-29 (v3.8.0 release)
3
+
4
+ # ===== Core Dependencies =====
5
+ # Runtime & Configuration
6
+ pydantic==2.6.1
7
+ typing-extensions==4.10.0
8
+ python-dotenv==1.0.1
9
+
10
+ # ===== Visualization =====
11
+ plotly==5.19.0
12
+ matplotlib==3.8.2
13
+ seaborn==0.13.2
14
+ pandas==2.2.1
15
+ numpy==1.26.4
16
+
17
+ # ===== UI Framework =====
18
+ gradio==4.19.0
19
+
20
+ # ===== Data Processing =====
21
+ pyyaml==6.0.1
22
+
23
+ # ===== Optional: Real ARF Integration =====
24
+ # agentic-reliability-framework>=3.3.6
25
+
26
+ # ===== Optional: Real RAG Memory =====
27
+ # Uncomment for real RAG integration:
28
+ # chromadb>=0.4.0
29
+ # sentence-transformers>=2.2.0