Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
chewing
/
liandan
like
5
Runtime error
App
Files
Files
Community
d30e643
liandan
/
app.py
chewing
add project files
d30e643
almost 2 years ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()