import gradio as gr def echo(new_message,history): return new_message chatbot = gr.ChatInterface(echo) chatbot.launch()