GitHub Actions
commited on
Commit
Β·
2443dba
1
Parent(s):
ef83cbc
π Auto-deploy from GitHub Actions
Browse filesDeployed from: bpmbox/AUTOCREATE
Commit: cf81a57e635104d30e6786722ef8cf5ac22cd890
Branch: main
Workflow: π Deploy to Hugging Face Space
Updated files:
- System workflow analysis notebook
- Core Python modules
- Controllers and routers
- Documentation and configs
- requirements.txt +32 -57
requirements.txt
CHANGED
|
@@ -1,61 +1,36 @@
|
|
| 1 |
-
# Core dependencies
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
pydantic-core==2.16.3
|
| 8 |
|
| 9 |
-
#
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
whitenoise==6.6.0
|
| 14 |
|
| 15 |
-
#
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
llamafactory
|
| 19 |
-
accelerate
|
| 20 |
-
diffusers
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
|
| 24 |
-
|
| 25 |
|
| 26 |
-
#
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
typing-extensions==4.10.0
|
| 43 |
-
colorama==0.4.6
|
| 44 |
-
exceptiongroup==1.2.0
|
| 45 |
-
tzdata==2024.1
|
| 46 |
-
uvloop==0.19.0
|
| 47 |
-
huggingface-hub
|
| 48 |
-
imageio[ffmpeg]
|
| 49 |
-
torch
|
| 50 |
-
torchvision
|
| 51 |
-
transformers>=4.41.2
|
| 52 |
-
langchain
|
| 53 |
-
langchain_groq
|
| 54 |
-
sqlalchemy
|
| 55 |
-
sentence-transformers
|
| 56 |
-
google-auth
|
| 57 |
-
google-auth-oauthlib
|
| 58 |
-
google-auth-httplib2
|
| 59 |
-
google-api-python-client
|
| 60 |
-
line-bot-sdk
|
| 61 |
-
gradio_client
|
|
|
|
| 1 |
+
# Core Python dependencies for AUTOCREATE AI Pipeline
|
| 2 |
+
requests>=2.31.0
|
| 3 |
+
python-dotenv>=1.0.0
|
| 4 |
+
supabase>=2.0.0
|
| 5 |
+
psycopg2-binary>=2.9.0
|
| 6 |
+
sqlalchemy>=2.0.0
|
|
|
|
| 7 |
|
| 8 |
+
# API integrations
|
| 9 |
+
openai>=1.0.0
|
| 10 |
+
groq>=0.4.0
|
| 11 |
+
huggingface-hub>=0.17.0
|
|
|
|
| 12 |
|
| 13 |
+
# Data processing
|
| 14 |
+
pandas>=2.0.0
|
| 15 |
+
json5>=0.9.0
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
+
# Testing
|
| 18 |
+
pytest>=7.0.0
|
| 19 |
+
pytest-asyncio>=0.21.0
|
| 20 |
|
| 21 |
+
# Documentation generation
|
| 22 |
+
mermaid-py>=0.3.0
|
| 23 |
+
|
| 24 |
+
# Web framework (if needed)
|
| 25 |
+
fastapi>=0.100.0
|
| 26 |
+
uvicorn>=0.23.0
|
| 27 |
+
|
| 28 |
+
# Utility libraries
|
| 29 |
+
pydantic>=2.0.0
|
| 30 |
+
httpx>=0.24.0
|
| 31 |
+
aiofiles>=23.0.0
|
| 32 |
+
|
| 33 |
+
# Development tools
|
| 34 |
+
black>=23.0.0
|
| 35 |
+
flake8>=6.0.0
|
| 36 |
+
mypy>=1.5.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|