File size: 271 Bytes
9933693
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

def test():
    return "test"

with gr.Blocks() as demo:
    run_button = gr.Button("Run", variant="primary")
    info = gr.Textbox(label="Output", value="", show_copy_button=True)

    run_button.click(test, None, [info])

demo.launch()