JoPmt's picture
Create app.py
859c236 verified
raw
history blame
163 Bytes
import gradio as gr
def plex(image):
image=image
return "hello", image
iface=gr.Interface(fn=plex,inputs="image",outputs=["text","image"])
iface.launch()