Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
algomuffin
/
space-demo
like
0
No application file
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/1
space-demo
/
app.py
sumit12
Create app.py
046dab2
over 2 years ago
raw
Copy download link
history
blame
Safe
163 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"I love you "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch(share=
True
)