hello_blocks / app.py
aliabd's picture
aliabd HF staff
Upload with huggingface_hub
e9b7d23
raw
history blame
317 Bytes
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)
if __name__ == "__main__":
demo.launch()