Spaces:
Build error
Build error
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +31 -20
requirements.txt
CHANGED
@@ -1,25 +1,36 @@
|
|
1 |
-
# Hugging Face
|
2 |
-
# Core
|
3 |
-
gradio
|
4 |
-
|
|
|
|
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
|
|
|
9 |
|
10 |
-
#
|
11 |
-
|
12 |
-
|
|
|
13 |
|
14 |
-
#
|
15 |
-
|
16 |
-
|
17 |
|
18 |
-
#
|
19 |
-
|
20 |
-
|
21 |
|
22 |
-
#
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Hugging Face Spaces Requirements for AUTOCREATE AI Platform
|
2 |
+
# Core framework dependencies
|
3 |
+
gradio==4.44.0
|
4 |
+
fastapi==0.104.1
|
5 |
+
uvicorn==0.24.0
|
6 |
+
django==4.2.7
|
7 |
|
8 |
+
# AI and automation
|
9 |
+
openai==1.3.0
|
10 |
+
anthropic==0.7.0
|
11 |
+
requests==2.31.0
|
12 |
|
13 |
+
# Data processing
|
14 |
+
pandas==2.1.3
|
15 |
+
numpy==1.24.3
|
16 |
+
python-dotenv==1.0.0
|
17 |
|
18 |
+
# Database
|
19 |
+
sqlalchemy==2.0.23
|
20 |
+
psycopg2-binary==2.9.9
|
21 |
|
22 |
+
# File processing
|
23 |
+
pathlib
|
24 |
+
json5==0.9.14
|
25 |
|
26 |
+
# Utilities
|
27 |
+
python-dateutil==2.8.2
|
28 |
+
pydantic==2.5.0
|
29 |
+
typing-extensions==4.8.0
|
30 |
+
|
31 |
+
# Security
|
32 |
+
cryptography==41.0.8
|
33 |
+
|
34 |
+
# Optional - if available
|
35 |
+
# huggingface_hub==0.19.0
|
36 |
+
# transformers==4.35.0
|