Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kl08
/
spero
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4a5e2cd
spero
/
app.py
kl08
Create app.py
4a5e2cd
verified
12 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()