Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Dano-Le-Mano
/
lsocpd7
like
0
Sleeping
App
Files
Files
Community
main
lsocpd7
/
app.py
DanielAttard
gm
e97324e
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
157 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Good morning "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()