File size: 172 Bytes
3e0709c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

with gr.Blocks() as demo:
    t = gr.Textbox("INVALID")
    demo.load(lambda : "Loaded as well", None, t)

if __name__ == "__main__":
    demo.launch()