Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
learnwy
/
main-space-gradio
like
0
No application file
App
Files
Files
Community
1
bef23b4
main-space-gradio
/
app.py
Vekanor
app
bef23b4
verified
5 months ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()