Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aqachun
/
minima
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3bb4417
minima
/
app.py
aqachun
debug
3bb4417
over 1 year ago
raw
Copy download link
history
blame
Safe
120 Bytes
import
gradio
as
gr
def
greet
(
n
):
return
f"Hello
{n}
!"
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()