File size: 308 Bytes
27c443b
e706bd1
6cfc8fc
 
e706bd1
6cfc8fc
 
 
 
 
 
27c443b
6cfc8fc
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

def greet(name):
    return "Hello " + name + "!"

with gr.Blocks() as demo:
    name = gr.Textbox(label="Name")
    output = gr.Textbox(label="Output Box")
    greet_btn = gr.Button("Greet")
    greet_btn.click(fn=greet, inputs=name, outputs=output, api_name="greet")
   

demo.launch()