-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
47 lines (37 loc) · 847 Bytes
/
requirements.txt
File metadata and controls
47 lines (37 loc) · 847 Bytes
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
# Core dependencies
fastapi>=0.104.0
uvicorn[standard]>=0.24.0
pydantic>=2.0.0
python-dotenv>=1.0.0
# HTTP clients
requests>=2.31.0
# Bot
python-telegram-bot>=20.0
# Git integration
gitpython>=3.1.0
# System monitoring
psutil>=5.9.0
# Config
pyyaml>=6.0.0
# LLM integration
openai>=1.3.0
anthropic>=0.7.0 # Alternative LLM provider
tenacity>=8.2.0 # Retry logic for API calls
# Vector store and semantic search
pinecone-client>=2.2.0
sentence-transformers>=2.2.0
torch>=2.0.0 # Required by sentence-transformers
numpy>=1.24.0
faiss-cpu>=1.7.4 # For local semantic search
watchdog>=3.0.0 # For file system monitoring (daemon)
# Testing
pytest>=7.4.0
pytest-asyncio>=0.21.0
pytest-cov>=4.1.0
httpx>=0.25.0 # For testing FastAPI
# Development
black>=23.0.0
ruff>=0.1.0
mypy>=1.7.0
# Observability (optional)
prometheus-client>=0.19.0