Update requirements.txt
Browse files- requirements.txt +12 -5
requirements.txt
CHANGED
|
@@ -1,18 +1,24 @@
|
|
| 1 |
# Agentic Reliability Framework v3.3.6 - OSS Edition
|
| 2 |
# Hugging Face Live Demo Dependencies
|
| 3 |
# Updated: 2024-12-29 (v3.3.6 release)
|
| 4 |
-
|
|
|
|
| 5 |
agentic-reliability-framework==3.3.6
|
| 6 |
-
|
| 7 |
# Core runtime
|
| 8 |
pydantic>=2.0.0
|
| 9 |
typing-extensions>=4.8
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
seaborn>=0.12.0
|
|
|
|
| 11 |
# Data / reasoning
|
| 12 |
numpy>=1.24.0
|
| 13 |
pandas>=2.0.0
|
| 14 |
|
| 15 |
-
# RAG + similarity
|
| 16 |
faiss-cpu>=1.7.0
|
| 17 |
|
| 18 |
# Transport / IO
|
|
@@ -23,8 +29,9 @@ requests>=2.31.0
|
|
| 23 |
circuitbreaker>=1.4.0
|
| 24 |
atomicwrites>=1.4.0
|
| 25 |
|
| 26 |
-
# OSS demo / local UI
|
| 27 |
gradio>=4.19.0
|
| 28 |
|
| 29 |
# Demo utilities
|
| 30 |
-
python-dotenv>=1.0.0
|
|
|
|
|
|
| 1 |
# Agentic Reliability Framework v3.3.6 - OSS Edition
|
| 2 |
# Hugging Face Live Demo Dependencies
|
| 3 |
# Updated: 2024-12-29 (v3.3.6 release)
|
| 4 |
+
|
| 5 |
+
# ARF OSS Framework (REAL PACKAGE)
|
| 6 |
agentic-reliability-framework==3.3.6
|
| 7 |
+
|
| 8 |
# Core runtime
|
| 9 |
pydantic>=2.0.0
|
| 10 |
typing-extensions>=4.8
|
| 11 |
+
|
| 12 |
+
# Visualization
|
| 13 |
+
plotly>=5.18.0
|
| 14 |
+
matplotlib>=3.7.0
|
| 15 |
seaborn>=0.12.0
|
| 16 |
+
|
| 17 |
# Data / reasoning
|
| 18 |
numpy>=1.24.0
|
| 19 |
pandas>=2.0.0
|
| 20 |
|
| 21 |
+
# RAG + similarity (Used by ARF)
|
| 22 |
faiss-cpu>=1.7.0
|
| 23 |
|
| 24 |
# Transport / IO
|
|
|
|
| 29 |
circuitbreaker>=1.4.0
|
| 30 |
atomicwrites>=1.4.0
|
| 31 |
|
| 32 |
+
# OSS demo / local UI
|
| 33 |
gradio>=4.19.0
|
| 34 |
|
| 35 |
# Demo utilities
|
| 36 |
+
python-dotenv>=1.0.0
|
| 37 |
+
uuid>=1.30
|