wjx214 commited on
Commit
4881bd3
·
verified ·
1 Parent(s): 71a401b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio
2
+ def greet(name):
3
+ return "hello"+name+"!"
4
+ demo = gradio.Interface(fn=greet, input="text", output="text")
5
+ demo.launch()