eliwill commited on
Commit
6805ef5
·
1 Parent(s): 7c5d46c

Create example app

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This is the application file
2
+
3
+ import gradio as gr
4
+
5
+ def print_hello_audrey(name):
6
+ return "Audrey says hello to {name}".format(name)
7
+
8
+ with gr.Blocks() as demo:
9
+ name = gr.Textbox(label="Name")
10
+ output = gr.Textbox(label="Response")
11
+ audrey_welcome_btn = gr.Button("Welcome button")
12
+ audrey_welcome_btn.click(fn=print_hello_audrey, inputs=name, outputs= output)
13
+
14
+ demo.launch()
15
+
16
+