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