sujr's picture
Update app.py
32e07da
raw
history blame
122 Bytes
import gradio as gr
def run(image):
return type(image)
gr.Interface(fn=run, inputs="image", outputs="text").launch()