ChatbotLab / app.py
demetz's picture
Update app.py
32d5a39 verified
raw
history blame
121 Bytes
import gradio as gr
def echo(messsage,history):
return messsage
chatbot=gr.ChatInterface(echo)
chatbot.launch()