Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jojortz
/
minimal
like
0
Sleeping
App
Files
Files
Community
78a976b
minimal
/
app.py
jojortz
Add application file
78a976b
about 1 year ago
raw
Copy download link
history
blame
Safe
152 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()