Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
julien-c
/
dev-mode-sandbox
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9f2cac7
dev-mode-sandbox
/
app.py
julien-c
HF Staff
from dev mode
9f2cac7
over 1 year ago
raw
Copy download link
history
blame
Safe
190 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
, description=
"built with Dev Mode 🔥"
)
iface.launch()