Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jonghhhh
/
gradio_test
like
0
Sleeping
App
Files
Files
Community
c3a9558
gradio_test
/
app.py
jonghhhh
Create app.py
4d22555
verified
4 months ago
raw
Copy download link
history
blame
Safe
176 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"μλ νμΈμ,
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(debug=
True
, share=
True
)