Spaces:
Sleeping
Sleeping
Commit
·
6083539
1
Parent(s):
92a3517
add requirements.txt for NegaBot API dependencies
Browse files- requirements.txt +24 -0
requirements.txt
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# NegaBot API Requirements
|
2 |
+
# Core ML and API dependencies
|
3 |
+
transformers>=4.35.0
|
4 |
+
torch>=2.0.0
|
5 |
+
fastapi>=0.104.0
|
6 |
+
uvicorn[standard]>=0.24.0
|
7 |
+
pydantic>=2.5.0
|
8 |
+
|
9 |
+
# Dashboard and visualization
|
10 |
+
streamlit>=1.28.0
|
11 |
+
pandas>=2.1.0
|
12 |
+
matplotlib>=3.7.0
|
13 |
+
seaborn>=0.12.0
|
14 |
+
plotly>=5.17.0
|
15 |
+
wordcloud>=1.9.0
|
16 |
+
|
17 |
+
# Database and utilities
|
18 |
+
sqlalchemy>=2.0.0
|
19 |
+
python-multipart>=0.0.6
|
20 |
+
|
21 |
+
# Development and testing
|
22 |
+
httpx>=0.25.0
|
23 |
+
requests>=2.31.0
|
24 |
+
gunicorn>=21.2.0
|