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