astro-blendDEV / app.py
Moibe's picture
Update app.py
40e85ae
raw
history blame
139 Bytes
import gradio as gr
def greet(name):
return "OK"
iface = gr.Interface(greet, gr.Image(height=200, width=200), "image")
iface.launch()