Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
hmb/hello_world
hmb
/
hello_worldz
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2512a86
hello_worldz
/
run.py
hmb
HF staff
Update run.py
13aeb42
verified
9 months ago
raw
Copy download link
history
blame
Safe
135 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(
"textbox"
,
"textbox"
)
demo.launch()