Spaces:
Runtime error
Runtime error
File size: 316 Bytes
6bf494f 98c24a0 e056e64 98c24a0 e056e64 2e05920 | 1 2 3 4 5 6 7 8 9 10 11 12 | import gradio as gr
def greet(name):
return f"Hello {name}!"
with gr.Blocks() as demo:
name = gr.Textbox(label="Name")
output = gr.Textbox(label="Output")
greet_btn = gr.Button("Greet")
greet_btn.click(fn=greet, inputs=name, outputs=output)
demo.launch(server_name="0.0.0.0", server_port=7860) |