blackbingris commited on
Commit
7bd8406
1 Parent(s): 7329bfe

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ def modelscope_quickstart(name):
3
+ return "Welcome to modelscope, " + name + "!!"
4
+ demo = gr.Interface(fn=modelscope_quickstart, inputs="text", outputs="text")
5
+ demo.launch()