BurnerBot / interface.py
Abhlash's picture
interface
e9b9103 verified
raw
history blame contribute delete
491 Bytes
import gradio as gr
from bot.chat import bot
def create_interface():
with gr.Blocks() as demo:
chatbot = gr.Chatbot()
msg = gr.Textbox()
clear = gr.Button("Clear")
def user(user_message, history):
return "", history + [[user_message, None]]
msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
bot, chatbot, chatbot
)
clear.click(lambda: None, None, chatbot, queue=False)
return demo