Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
j2moreno
/
who-is-leo
like
0
Runtime error
App
Files
Files
Community
59e1d53
who-is-leo
/
app.py
j2moreno
init
e959087
verified
7 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()