# app.py import gradio as gr def hello_world(): return "Hello World! Welcome to the AI world!" iface = gr.Interface(fn=hello_world, inputs=[], outputs="text") iface.launch()