Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
inigogab
/
minima
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
24c6d3e
minima
/
app.py
inigogab
Fixed app hello
24c6d3e
about 2 years ago
raw
Copy download link
history
blame
Safe
129 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()