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

with gr.Blocks() as block:
    textbox = gr.Textbox(label="Enter your text here")
    bttn = gr.Button()
    output = gr.Textbox(label="Output")

    def submit(input_data):
        return input_data + "Submitted"
    
    bttn.click(submit, inputs=[textbox], outputs=[output])

block.launch()