Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +17 -13
requirements.txt
CHANGED
@@ -1,19 +1,23 @@
|
|
1 |
-
# Core AI
|
2 |
transformers==4.37.2
|
3 |
-
|
4 |
-
|
|
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
|
9 |
|
10 |
-
#
|
11 |
-
|
12 |
-
cryptography
|
13 |
|
14 |
-
#
|
|
|
|
|
|
|
|
|
|
|
15 |
gradio==4.19.1
|
16 |
-
pydantic>=1.10.0
|
17 |
|
18 |
-
#
|
19 |
-
|
|
|
1 |
+
# Core AI & NLP
|
2 |
transformers==4.37.2
|
3 |
+
textblob==0.17.1
|
4 |
+
vaderSentiment==3.3.2
|
5 |
+
nltk==3.8.1
|
6 |
|
7 |
+
# Audio / Speech
|
8 |
+
speechrecognition==3.10.0
|
9 |
+
pyaudio==0.2.13 ; platform_system == "Linux"
|
10 |
|
11 |
+
# Vision
|
12 |
+
Pillow==9.5.0
|
|
|
13 |
|
14 |
+
# Cloud / API
|
15 |
+
aiohttp==3.9.3
|
16 |
+
pyodbc==5.0.1
|
17 |
+
cryptography==42.0.5
|
18 |
+
|
19 |
+
# UI
|
20 |
gradio==4.19.1
|
|
|
21 |
|
22 |
+
# Utility
|
23 |
+
python-dotenv==1.0.1
|