ChatbotLab / app.py
dyna-67's picture
Create echo chatbot
54a2e75 verified
Raw
History Blame
127 Bytes
import gradio as gr
def echo (message, history) :
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()