Nola / app.py
dronesplace's picture
Update app.py
4be86aa verified
Raw
History Blame Contribute Delete
306 Bytes
import gradio as gr
def hello(name):
return f"Hello {name}, the Space is working!"
with gr.Blocks() as demo:
gr.Markdown("## Test App")
name = gr.Textbox("world", label="Your name")
out = gr.Textbox(label="Output")
btn = gr.Button("Run")
btn.click(hello, name, out)
demo.launch()