GitHub Actions commited on
Commit
2443dba
·
1 Parent(s): ef83cbc

🚀 Auto-deploy from GitHub Actions

Browse files

Deployed 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

Files changed (1) hide show
  1. requirements.txt +32 -57
requirements.txt CHANGED
@@ -1,61 +1,36 @@
1
- # Core dependencies
2
- fastapi==0.110.0
3
- uvicorn==0.27.1
4
- gradio==4.31.5
5
- starlette==0.36.3
6
- pydantic==2.6.2
7
- pydantic-core==2.16.3
8
 
9
- # Django
10
- django==5.0.4
11
- asgiref==3.8.1
12
- sqlparse==0.5.0
13
- whitenoise==6.6.0
14
 
15
- # AI & ML
16
- open-interpreter
17
- groq==0.4.1
18
- llamafactory
19
- accelerate
20
- diffusers
21
 
22
- # Database
23
- duckdb
24
- psycopg2-binary
25
 
26
- # Utilities
27
- python-dotenv
28
- jinja2
29
- aiofiles
30
- click==8.1.7
31
- annotated-types==0.6.0
32
- anyio==4.3.0
33
- async-timeout==4.0.3
34
- certifi==2024.2.2
35
- distro==1.9.0
36
- h11==0.14.0
37
- httpcore==1.0.4
38
- httpx==0.27.0
39
- idna==3.6
40
- sniffio==1.3.1
41
- sse-starlette==2.0.0
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