Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Manbearpig01
/
Hel
like
0
Sleeping
App
Files
Files
Community
aac2833
Hel
/
app.py
Manbearpig01
Create app.py
aac2833
almost 2 years ago
raw
Copy download link
history
blame
Safe
185 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch()