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