File size: 1,911 Bytes
6686a2d
 
 
 
 
 
 
 
 
 
 
 
e2044c9
6686a2d
 
9a64285
6686a2d
e2044c9
6686a2d
 
 
9a64285
6686a2d
 
 
 
9a64285
6686a2d
 
 
 
 
9a64285
6686a2d
9a64285
6686a2d
 
 
9a64285
6686a2d
 
 
 
 
9a64285
6686a2d
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ============================================================================
# Enterprise Agentic Reliability Framework
# Production-Optimized Dependencies
# ============================================================================
# 
# Total Size: ~340MB
# Install Time: ~2 minutes
# Last Updated: 2025-11-25
#
# ============================================================================

# === Core Web Framework ===
gradio==5.49.1
# Purpose: Main UI framework for the entire application
# Used for: Sliders, buttons, tables, JSON displays, layouts

# === Vector Search & Embeddings ===
sentence-transformers==2.2.2
# Purpose: Convert incident descriptions to 384-dimensional vectors
# Used for: Similarity search and incident memory system
# Model: all-MiniLM-L6-v2

faiss-cpu==1.7.4
# Purpose: Fast approximate nearest neighbor search
# Used for: Finding similar past incidents in vector space
# Note: CPU version (GPU version not needed for this use case)

# === Data Processing & Mathematics ===
numpy==1.24.3
# Purpose: Numerical computing and statistical operations
# Used for: Forecasting, anomaly detection, threshold calculations
# Critical for: Predictive analytics engine

# === Data Validation & Type Safety ===
pydantic==2.5.0
# Purpose: Runtime data validation and type checking
# Used for: models.py (ReliabilityEvent, EventSeverity, etc.)
# Ensures: Type safety across the entire application

# === HTTP & API Communication ===
requests==2.31.0
# Purpose: HTTP library for API calls
# Used for: Optional HuggingFace API integration
# Note: Only active if HF_TOKEN environment variable is set

# ============================================================================
# Installation Instructions:
# 
#   pip install -r requirements.txt
#
# Or for upgrade:
#   pip install -r requirements.txt --upgrade
#
# ============================================================================