Spaces:
Running
on
Zero
Running
on
Zero
feat: 工程化
Browse files- .gitignore +2 -0
- Makefile +4 -0
- requirements.txt +2 -0
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
/gradio-env
|
2 |
+
__pycache__
|
Makefile
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.DEFAULT_GOAL := run
|
2 |
+
|
3 |
+
run:
|
4 |
+
python app.py
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
gradio==4.37.2
|
2 |
+
gradio_client==1.0.2
|