import gradio as gr def greeting(name): return f"Hello {name}!" iface = gr.Interface(fn=greeting, inputs="text", outputs="text") iface.launch()