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