Update requirements.txt
Browse files- requirements.txt +29 -44
requirements.txt
CHANGED
|
@@ -1,45 +1,30 @@
|
|
| 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 |
-
# === HTTP & API Communication ===
|
| 31 |
-
# SECURITY FIX: Upgraded from 2.31.0 to fix CVE-2023-32681 and CVE-2024-47081
|
| 32 |
-
requests>=2.32.5
|
| 33 |
-
|
| 34 |
-
# === Production Dependencies ===
|
| 35 |
-
# Circuit breaker pattern
|
| 36 |
-
circuitbreaker>=2.0.0
|
| 37 |
-
|
| 38 |
-
# Atomic file operations
|
| 39 |
-
atomicwrites>=1.4.1
|
| 40 |
-
|
| 41 |
-
# ============================================================================
|
| 42 |
-
# Development Dependencies (install separately)
|
| 43 |
-
# pip install pytest pytest-asyncio pytest-cov pytest-mock black ruff mypy
|
| 44 |
-
# ============================================================================python-dotenv>=1.0.0
|
| 45 |
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 |
+
agentic-reliability-framework==3.3.6
|
| 6 |
+
|
| 7 |
+
# Core runtime
|
| 8 |
+
pydantic>=2.0.0
|
| 9 |
+
typing-extensions>=4.8
|
| 10 |
+
|
| 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
|
| 19 |
+
httpx>=0.25.0
|
| 20 |
+
requests>=2.31.0
|
| 21 |
+
|
| 22 |
+
# Reliability primitives
|
| 23 |
+
circuitbreaker>=1.4.0
|
| 24 |
+
atomicwrites>=1.4.0
|
| 25 |
+
|
| 26 |
+
# OSS demo / local UI (non-executing)
|
| 27 |
+
gradio>=4.19.0
|
| 28 |
+
|
| 29 |
+
# Demo utilities
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
python-dotenv>=1.0.0
|