File size: 123 Bytes
f6cb342
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

with gr.Blocks() as demo:
    t = gr.Textbox()
    demo.load(lambda :"Hi", None, t)
    
demo.launch()