import gradio as gr def hello(text): return "You said: " + text demo = gr.Interface( fn=hello, inputs="text", outputs="text" ) demo.launch()