Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hullup
/
Kangaroo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Kangaroo
/
app.py
hullup
Create app.py
517baad
verified
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
import
gradio
as
gr
def
greeting
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(fn=greeting, inputs=
"text"
, outputs=
"text"
)
iface.launch()