image-retriever / app.py
not-lain's picture
Create app.py
97a281b verified
raw
history blame
119 Bytes
import gradio as gr
def search(img):
return img
demo = gr.Interface(search, inputs="image",outputs=["image"])