Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xianbao
/
example-dev-mode-with-docker-node
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dcfacc4
example-dev-mode-with-docker-node
/
app.py
xianbao
update message for a test
3cecfce
almost 2 years ago
raw
Copy download link
history
blame
144 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hi "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()