Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aupfe08
/
Hello
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
5f8e8c5
Hello
/
app.py
aupfe08
Update app.py
5f8e8c5
about 2 years ago
raw
Copy download link
history
blame
Safe
221 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=gr.Textbox(lines=
2
, placeholder=
"์ฌ๊ธฐ์ ๋น์ ์ ์ด๋ฆ์ ์ ์ผ์ธ์..."
), outputs=
"text"
)
demo.launch()