Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Nuno-Tome
/
API_demo_client
like
3
Sleeping
App
Files
Files
Community
e8f20a0
API_demo_client
/
app.py
Nuno-Tome
no message
e8f20a0
10 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"textbox"
, outputs=
"textbox"
)
demo.launch(share=
True
)