Jyothirmai commited on
Commit
ee7160a
·
verified ·
1 Parent(s): f0a8744

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -4
app.py CHANGED
@@ -1,7 +1,13 @@
1
  import gradio as gr
 
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
 
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
1
  import gradio as gr
2
+ def update(name):
3
+ return f"Welcome to Gradio, {name}!"
4
 
5
+ with gr.Blocks() as demo:
6
+ gr.Markdown("Start typing below and then click **Run** to see the output.")
7
+ with gr.Row():
8
+ inp = gr.Textbox(placeholder="What is your name?")
9
+ out = gr.Textbox()
10
+ btn = gr.Button("Run")
11
+ btn.click(fn=update, inputs=inp, outputs=out)
12
 
13
+ demo.launch()