JoPmt's picture
Update app.py
7ea6b5e verified
raw
history blame
222 Bytes
import gradio as gr
import time
import os
def plex(image):
image=image
return "hello", gr.Image(value=image,width=300,height=300)
iface=gr.Interface(fn=plex,inputs="image",outputs=["text","image"])
iface.launch()