Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
mindmime
/
gradio
like
0
Runtime error
App
Files
Files
Community
main
gradio
/
app.py
mindmime
Upload folder using huggingface_hub
a03b3ba
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)