sulgi commited on
Commit
00c053d
·
1 Parent(s): b9cb763

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello "+name+"!"
5
+
6
+ demo = gr.Interface(fn=greet, inputs=gr.Textbox(lines=14, placeholder="Name here...", label= "Your name"),
7
+ outputs=gr.Textbox(lines=10, label="We are greeting you"))
8
+ demo.launch()