-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
93 lines (80 loc) · 3.15 KB
/
Copy pathrequirements.txt
File metadata and controls
93 lines (80 loc) · 3.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# =============================================================================
# Intelligent Support Router - Python Dependencies
# =============================================================================
# -----------------------------------------------------------------------------
# Web Framework
# -----------------------------------------------------------------------------
fastapi>=0.109.0
uvicorn[standard]>=0.27.0
python-multipart>=0.0.9
python-jose[cryptography]>=3.3.0
passlib[bcrypt]>=1.7.4
# -----------------------------------------------------------------------------
# Database
# -----------------------------------------------------------------------------
sqlalchemy>=2.0.0
alembic>=1.13.0
asyncpg>=0.29.0
psycopg2-binary>=2.9.9
aiosqlite>=0.19.0
# -----------------------------------------------------------------------------
# Redis & Celery
# -----------------------------------------------------------------------------
redis>=5.0.0
celery>=5.3.0
flower>=2.0.0
# -----------------------------------------------------------------------------
# AI/ML - OpenAI
# -----------------------------------------------------------------------------
openai>=1.12.0
tiktoken>=0.5.0
# -----------------------------------------------------------------------------
# AI/ML - HuggingFace (Optional)
# -----------------------------------------------------------------------------
# transformers>=4.37.0
# torch>=2.1.0
# sentencepiece>=0.1.99
# -----------------------------------------------------------------------------
# Vector Database
# -----------------------------------------------------------------------------
chromadb>=0.4.0
# -----------------------------------------------------------------------------
# Data Validation
# -----------------------------------------------------------------------------
pydantic>=2.6.0
pydantic-settings>=2.1.0
email-validator>=2.1.0
# -----------------------------------------------------------------------------
# HTTP Client
# -----------------------------------------------------------------------------
httpx>=0.26.0
aiohttp>=3.9.0
# -----------------------------------------------------------------------------
# Text Processing
# -----------------------------------------------------------------------------
langdetect>=1.0.9
unidecode>=1.3.0
# -----------------------------------------------------------------------------
# Logging & Monitoring
# -----------------------------------------------------------------------------
loguru>=0.7.0
prometheus-client>=0.19.0
# -----------------------------------------------------------------------------
# Testing
# -----------------------------------------------------------------------------
pytest>=8.0.0
pytest-asyncio>=0.23.0
pytest-cov>=4.1.0
# -----------------------------------------------------------------------------
# Development
# -----------------------------------------------------------------------------
black>=24.1.0
isort>=5.13.0
flake8>=7.0.0
# -----------------------------------------------------------------------------
# Utilities
# -----------------------------------------------------------------------------
python-dotenv>=1.0.0
tenacity>=8.2.0
python-dateutil>=2.8.0
orjson>=3.9.0