Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
danielgi97
/
iabd
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8302134
iabd
/
hola
danielgi97
Create hola
8302134
verified
10 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
)