first-space / app.py
SlungusLoaf's picture
yes
6571424 verified
raw
history blame contribute delete
178 Bytes
import gradio as gr
def hello(name):
return f"Hello {name} 👋"
gr.Interface(
fn=hello,
inputs="text",
outputs="text",
title="My First HF Space"
).launch()