File size: 222 Bytes
859c236
c28c391
7ea6b5e
859c236
 
 
c5f2d33
859c236
 
 
1
2
3
4
5
6
7
8
9
10
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()