EchoChatbot / app.py
amina-k's picture
Fixed echo
80189cf verified
Raw
History Blame Contribute Delete
191 Bytes
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()