aliabd's picture
aliabd HF staff
Upload folder using huggingface_hub
4b4b680 verified
raw
history blame contribute delete
316 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 + "!"
if __name__ == "__main__":
demo.launch()