Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Kok4444
/
meme_kok
like
1
Runtime error
App
Files
Files
Community
9f79c45
meme_kok
/
app.py
Kok4444
Add application file
9f79c45
about 2 years ago
raw
Copy download link
history
blame
Safe
159 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)