Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
debisoft
/
magic
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f5bc984
magic
/
app.py
debisoft
1st commit
f5bc984
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()