Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
danielgi97
/
iabd
like
0
Sleeping
App
Files
Files
Community
eb72ae7
iabd
/
app.py
danielgi97
Rename hola to app.py
9069b7b
verified
9 months ago
raw
Copy download link
history
blame
Safe
161 Bytes
import
gradio
as
gr
def
saluda
(
nombre
):
return
"Hola "
+ nombre +
"!"
demo = gr.Interface(fn=saluda, inputs=
"text"
, outputs=
"text"
)
demo.launch(share=
True
)