Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +17 -11
requirements.txt
CHANGED
@@ -1,13 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
huggingface_hub==0.25.2
|
2 |
-
transformers
|
3 |
-
diffusers
|
4 |
-
asyncio
|
5 |
cryptography
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
diffuser
|
|
|
1 |
+
# Core AI + Transformers
|
2 |
+
transformers==4.37.2
|
3 |
+
diffusers==0.25.0
|
4 |
+
torch>=2.1.0
|
5 |
+
|
6 |
+
# Sentiment + NLP Tools
|
7 |
+
vaderSentiment
|
8 |
+
nltk
|
9 |
+
|
10 |
+
# Auth + Security
|
11 |
huggingface_hub==0.25.2
|
|
|
|
|
|
|
12 |
cryptography
|
13 |
+
|
14 |
+
# Web UI
|
15 |
+
gradio==4.19.1
|
16 |
+
pydantic>=1.10.0
|
17 |
+
|
18 |
+
# Compatibility & Utils
|
19 |
+
asyncio
|
|