File size: 280 Bytes
3752d12
 
 
 
 
 
 
 
 
d96598f
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

with gr.Blocks() as demo:
    name = gr.Textbox(label="Name")
    output = gr.Textbox(label="Output")
    greet_btn = gr.Button("Greet")
    greet_btn.click(lambda x: f"Hello {x}!", inputs=name, outputs=output)

demo.launch()

# timestamp: 1778041640.5983908