Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
hello-world
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c66d351
hello-world
/
app.py
abidlabs
HF Staff
Create app.py
c66d351
over 3 years ago
raw
Copy download link
history
blame
129 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()