File size: 145 Bytes
e7eecb8
 
1e62c55
 
e7eecb8
 
1e62c55
 
e7eecb8
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

def test():
    return "Hello"

with gr.Blocks() as demo:
    t = gr.Textbox()
    demo.launch(test, None, t)

demo.launch()