import gradio as gr def greet(name): return "hello" + name gr.Interface(greet, "text", "text").launch()