basebody / app.py
hwajjala's picture
Update app.py
c9b3edc
raw
history blame
168 Bytes
import gradio as gr
def greet(name):
return "Hello " + "!!"
iface = gr.Interface(fn=greet, inputs="image", outputs="text", allow_flagging="manual")
iface.launch()