tonyassi's picture
Create app.py
dd97663 verified
raw
history blame
214 Bytes
import gradio as gr
def greet(img_editor):
return img_editor['composite']
iface = gr.Interface(fn=greet,
inputs=gr.ImageEditor(),
outputs=gr.Image())
iface.launch()