ml-worker / app.py
inoki-giskard's picture
Add giskard as a dep
df1aa82
raw
history blame
No virus
164 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + " from Giskard !!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()