Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
gradio/hello_world
hmb
/
hello_world
like
0
Sleeping
App
Files
Files
35b6f72
hello_world
/
app.py
aliabd
HF staff
Upload with huggingface_hub
8c4c5db
about 2 years ago
raw
Copy download link
history
blame
Safe
154 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()