Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
iago-suarez
/
GlueStick
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
b7af753
GlueStick
/
app.py
iago-suarez
Create app.py
b7af753
almost 2 years ago
raw
Copy download link
history
blame
Safe
180 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hii "
+ name +
", welcome to the GlueStick demo! :D"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()