File size: 285 Bytes
06b48bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()