-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
74 lines (63 loc) · 1.94 KB
/
requirements.txt
File metadata and controls
74 lines (63 loc) · 1.94 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# ============================================
# Core Framework
# ============================================
fastapi>=0.115.0
uvicorn[standard]>=0.30.0
pydantic>=2.9.0
pydantic-settings>=2.5.0
python-multipart>=0.0.12
# ============================================
# WebSocket Support
# ============================================
websockets>=13.0
python-socketio>=5.11.0
# ============================================
# Redis (Event Bus & Caching)
# ============================================
redis>=5.0.1
# ============================================
# Task Queue (for long-running operations)
# ============================================
celery>=5.3.4
# ============================================
# Vector Database (ChromaDB)
# ============================================
chromadb>=0.4.18
sentence-transformers>=2.2.2
# ============================================
# PDF Processing
# ============================================
pypdf>=4.0.0
# ============================================
# LLM Integration
# ============================================
litellm>=1.17.0
openai>=1.3.0 # For API compatibility
# ============================================
# HTTP Client (for MCP servers)
# ============================================
httpx>=0.25.2
aiohttp>=3.9.1
# ============================================
# Utilities
# ============================================
python-dotenv>=1.0.0
structlog>=23.2.0
tenacity>=8.2.3 # Retry logic
pybreaker>=1.0.1 # Circuit breaker
# ============================================
# Monitoring & Observability
# ============================================
prometheus-client>=0.19.0
# ============================================
# Testing (Development)
# ============================================
pytest>=7.4.3
pytest-asyncio>=0.21.1
pytest-cov>=4.1.0
# ============================================
# Code Quality (Development)
# ============================================
black>=23.12.0
ruff>=0.1.8
mypy>=1.7.1