inoid commited on
Commit
e1cc861
1 Parent(s): 0f0ea0c

Update app.py

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