echo-chatbot / block.py
scornflake's picture
Upload folder using huggingface_hub
78975ec verified
raw
history blame contribute delete
No virus
285 Bytes
import gradio as gr
with gr.Blocks() as demo:
name = gr.Textbox(label="Name")
output = gr.Textbox(label="Output Box")
greet_btn = gr.Button("Greet")
@greet_btn.click(inputs=name, outputs=output)
def greet(name):
return "Hello " + name + "!"
demo.launch()