import gradio as gd def greeting(name): return "Hello " + name demo = gd.Interface(fn=greeting, inputs='text', outputs='text') demo.launch()