File size: 128 Bytes
c3cc27c
 
 
 
 
1
2
3
4
5
def greet(name):
    return "Hello " + name + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()