Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Moibe/astro-blend
Moibe
/
astro-blendDEV
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bb4558f
astro-blendDEV
/
app.py
Moibe
Update app.py
bb4558f
over 1 year ago
raw
Copy download link
history
blame
Safe
142 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"OK"
iface = gr.Interface(fn=greet, gr.Image(height=
200
, width=
200
),
"image"
)
iface.launch()