File size: 226 Bytes
981cb61
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

import gradio as gr

with gr.Blocks() as demo:
    text = gr.Text()
    out = gr.Text()
    btn = gr.Button()
    text.submit(fn=lambda x: x, inputs=text, outputs=out, api_name='')
demo.queue().launch()