File size: 163 Bytes
859c236
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def plex(image):
    image=image
    return "hello", image

iface=gr.Interface(fn=plex,inputs="image",outputs=["text","image"])
iface.launch()