Spaces:
Sleeping
Sleeping
File size: 304 Bytes
0f0a6d9 dd3a758 0f0a6d9 dd3a758 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
def greet(name):
return "Hello " + name + "!"
with gr.Blocks() as demo:
name = gr.Textbox(label="Name")
output = gr.Textbox(label="Output Box")
greet_btn = gr.Button("Greet")
greet_btn.click(fn=greet, inputs=name, outputs=output, api_name="greet")
demo.launch() |