tonyassi's picture
Create app.py
bd60378 verified
raw
history blame
149 Bytes
import gradio as gr
def greet(img1, img2):
return img2
demo = gr.Interface(fn=greet, inputs=["image", "image"]", outputs="image")
demo.launch()