Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ajndkr
/
boilerplate-x
like
6
Running
App
Files
Files
Community
2ba6c15
boilerplate-x
/
app.py
ajndkr
Add application file
2ba6c15
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()