Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thereckoner
/
minimal
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2c1bb8f
minimal
/
app.py
thereckoner
push
2c1bb8f
about 2 years ago
raw
Copy download link
history
blame
Safe
121 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
"
gr.Interface(fn=greet, inputs=
"text"
, output=
"text"
).launch()