treadon's picture
Add application file
59696ca
raw
history blame
134 Bytes
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()