from gradio import Interface def greet(name): return "Hello " + name + "!!" iface = Interface(fn=greet, inputs="text", outputs="text").launch()