File size: 294 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

def print_message(n):
    return "Welcome! This page has loaded for " + n

with gr.Blocks() as demo:
    t = gr.Textbox("Frank", label="Name")
    t2 = gr.Textbox(label="Output")
    demo.load(print_message, t, t2)

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