File size: 319 Bytes
cf034fe 2e29410 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import gradio as gr
def greet(name):
return f"Привет, {name}!"
with gr.Blocks(title="Test") as demo:
gr.Markdown("# It works!")
name = gr.Textbox(label="Your name")
output = gr.Textbox(label="Output")
btn = gr.Button("Run")
btn.click(fn=greet, inputs=name, outputs=output)
demo.launch() |