Really-amin commited on
Commit
da3cbd6
1 Parent(s): 8e5bd82

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +64 -43
requirements.txt CHANGED
@@ -1,44 +1,65 @@
1
- fastapi
2
- python-telegram-bot
3
- httpx[socks]
4
- torch
5
- transformers
6
- python-multipart
7
- flask-socketio
8
- nest-asyncio
9
- aiofiles
10
- jinja2
11
- dash
12
- numpy
13
- aiohttp
14
- pandas
15
- plotly
16
- eventlet
17
- pillow
18
- sqlalchemy
19
- sentencepiece
20
- protobuf
21
- backoff
22
- dnspython
23
- websockets
24
- uvicorn
25
- aiodns
26
- python-dotenv
27
- sentence-transformers
28
- hazm
29
- discord
30
- uvicorn[standard]
31
- tenacity
32
- psutil
33
- slowapi
34
- httpx[http2]
35
- gradio
36
- apscheduler
37
- bs4
38
- python-jose
39
- python-multipart
40
- python-jose[cryptography]
41
- passlib[bcrypt]
42
- social-auth-core
43
  accelerate>=0.26.0
44
- prometheus-fastapi-instrumentator
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FastAPI and Web Framework
2
+ fastapi>=0.104.1
3
+ uvicorn[standard]>=0.24.0
4
+ python-multipart>=0.0.6
5
+ jinja2>=3.1.2
6
+
7
+ # Telegram and Communication
8
+ python-telegram-bot>=20.7
9
+ httpx[http2,socks]>=0.25.2
10
+ websockets>=12.0
11
+ discord.py>=2.3.2
12
+
13
+ # AI and Machine Learning
14
+ torch>=2.1.1
15
+ transformers>=4.35.2
16
+ sentence-transformers>=2.2.2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  accelerate>=0.26.0
18
+ protobuf>=4.25.1
19
+ sentencepiece>=0.1.99
20
+ hazm>=0.9.3
21
+
22
+ # Async and Network
23
+ aiofiles>=23.2.1
24
+ aiohttp>=3.9.1
25
+ aiodns>=3.1.1
26
+ backoff>=2.2.1
27
+ dnspython>=2.4.2
28
+ nest-asyncio>=1.5.8
29
+
30
+ # Monitoring and Metrics
31
+ prometheus-fastapi-instrumentator>=6.1.1
32
+ psutil>=5.9.6
33
+ slowapi>=0.1.8
34
+ tenacity>=8.2.3
35
+
36
+ # Data Processing
37
+ numpy>=1.26.2
38
+ pandas>=2.1.3
39
+ plotly>=5.18.0
40
+ pillow>=10.1.0
41
+ bs4>=0.0.1
42
+
43
+ # Database and Authentication
44
+ sqlalchemy>=2.0.23
45
+ python-jose[cryptography]>=3.3.0
46
+ passlib[bcrypt]>=1.7.4
47
+ social-auth-core>=4.5.0
48
+
49
+ # Task Scheduling and Management
50
+ apscheduler>=3.10.4
51
+ eventlet>=0.33.3
52
+
53
+ # UI and Visualization
54
+ dash>=2.14.1
55
+ gradio>=4.7.1
56
+ flask-socketio>=5.3.6
57
+
58
+ # Environment and Configuration
59
+ python-dotenv>=1.0.0
60
+
61
+ # Optional but Recommended
62
+ pydantic>=2.5.2
63
+ python-jose>=3.3.0
64
+ bcrypt>=4.0.1
65
+ cryptography>=41.0.5