Update requirements.txt
Browse files- requirements.txt +29 -47
requirements.txt
CHANGED
|
@@ -1,47 +1,29 @@
|
|
| 1 |
-
#
|
| 2 |
-
#
|
| 3 |
-
|
| 4 |
-
# =====
|
| 5 |
-
#
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
#
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
# =
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
#
|
| 29 |
-
|
| 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|