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