Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jph00
/
minimal
like
4
Running
App
Files
Files
Community
main
minimal
/
app.py
jph00
name
9f11d8f
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
124 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()