lampongyuen commited on
Commit
93b660b
·
1 Parent(s): 77576b5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ def greet(name):
3
+ return "Hello " + name + "!"
4
+
5
+ demo = gr.Interface(
6
+ fn=greet,
7
+ allow_flagging="never",
8
+ inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
9
+ outputs="text",
10
+ )
11
+ demo.launch()