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()