File size: 284 Bytes
cadd0af
 
 
 
 
 
 
 
 
 
 
 
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("text")
    output = gr.Textbox("text")
    greet_button = gr.Button("Greet")
    greet_button.click(greet, name, outputs=output, api_name="greet")

demo.launch()