Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jira
/
mao
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
05c44f6
mao
/
app.py
Jira
Create app.py
05c44f6
about 3 years ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"ครับ!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()