YaphetYan commited on
Commit
7254502
1 Parent(s): 2a438ba

feat: 工程化

Browse files
Files changed (3) hide show
  1. .gitignore +2 -0
  2. Makefile +4 -0
  3. 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