tonyassi's picture
Update app.py
c13f700
raw
history blame
150 Bytes
import gradio as gr
def greet(img):
return 'hey'
iface = gr.Interface(fn=greet, inputs=gr.Image(type='filepath'), outputs="text")
iface.launch()