File size: 306 Bytes
9960047
5af8b8b
4be86aa
 
5af8b8b
4be86aa
 
 
 
 
 
9960047
4be86aa
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

def hello(name):
    return f"Hello {name}, the Space is working!"

with gr.Blocks() as demo:
    gr.Markdown("## Test App")
    name = gr.Textbox("world", label="Your name")
    out = gr.Textbox(label="Output")
    btn = gr.Button("Run")
    btn.click(hello, name, out)

demo.launch()