John6666's picture
Upload 4 files
9933693 verified
raw
history blame contribute delete
271 Bytes
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()