Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ssyouss41
/
learn2
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
learn2
/
app.py
ssyouss41
Create app.py
00e1aa3
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
126 Bytes
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()