Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
test090309a
/
docker
like
2
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ece9998
docker
/
app.py
test090309a
test
8a4601c
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
131 Bytes
import
gradio
as
gr
def
hello
(
name
):
return
f"Hallo,
{name}
!"
gr.Interface(fn=hello, inputs=
"text"
, outputs=
"text"
).launch()