import gradio as gr def talk(text): return None demo = gr.Interface(fn=talk, inputs="text", outputs="text") demo.launch()