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