Spaces:
Build error
Build error
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +25 -0
requirements.txt
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Hugging Face Space Requirements
|
2 |
+
# Core Gradio and dependencies
|
3 |
+
gradio>=4.44.0
|
4 |
+
huggingface_hub>=0.20.0
|
5 |
+
|
6 |
+
# Basic Python utilities
|
7 |
+
python-dotenv>=1.0.0
|
8 |
+
requests>=2.31.0
|
9 |
+
|
10 |
+
# For the demo functionality
|
11 |
+
fastapi>=0.104.0
|
12 |
+
uvicorn[standard]>=0.24.0
|
13 |
+
|
14 |
+
# For JSON handling and datetime
|
15 |
+
python-dateutil>=2.8.2
|
16 |
+
pytz>=2023.3
|
17 |
+
|
18 |
+
# For markdown and text processing
|
19 |
+
markdown>=3.5.0
|
20 |
+
Pygments>=2.16.0
|
21 |
+
|
22 |
+
# Optional: For enhanced demo features
|
23 |
+
Pillow>=10.0.0
|
24 |
+
numpy>=1.24.0
|
25 |
+
pandas>=2.0.0
|