File size: 377 Bytes
952f4ce
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

def greet(name):
    return f"你好,{name}!欢迎访问我的网站 🎉"

with gr.Blocks() as demo:
    gr.Markdown("# 🌐 我的 Hugging Face 网站")
    name = gr.Textbox(label="请输入你的名字")
    output = gr.Textbox(label="问候语")
    btn = gr.Button("打招呼")
    btn.click(fn=greet, inputs=name, outputs=output)

demo.launch()