import gradio as gr def echo(message, history): return message chatbot = gr.ChatInterface(echo, title = "Echo Chatbot", description = "This chatbot echoes your ideas.") chatbot.launch()