greet / app.py
gradio-ci's picture
Upload app.py with huggingface_hub
3041e83 verified
raw
history blame contribute delete
217 Bytes
import gradio as gr
import gradio as gr
def greet(name):
return f"Hello {name}!"
demo = gr.Interface(
fn=greet, inputs=gr.Textbox(label="Your name"), outputs=gr.Textbox(label="Greeting")
)
demo.launch()