astro-blend / app.py
Moibe's picture
Update app.py
bb4558f
raw
history blame
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()