Spaces:
Sleeping
Sleeping
File size: 779 Bytes
b8edde2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
import gradio as gr
import random
import time
from thunder_gpt import get_response
with gr.Blocks() as demo:
gr.Markdown("Chat bot for cranberry task")
chatbot = gr.Chatbot()
msg = gr.Textbox()
clear = gr.Button("Clear")
def user(user_message, history):
return "", history + [[user_message, None]]
def bot(history):
question = history[-1][0]
answer = get_response(question)
history[-1][1] = ""
for character in answer:
history[-1][1] += character
time.sleep(0.02)
yield history
msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
bot, chatbot, chatbot
)
clear.click(lambda: None, None, chatbot, queue=False)
demo.queue()
demo.launch()
|