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