zerovision / app.py
bthndmn12
changes
657189d
raw
history blame
163 Bytes
import gradio as gr
def greet(name):
return f"Hello, {name}!"
iface = gr.Interface(fn= greet, inputs="image", outputs="text", title="Greeter")
iface.launch()