Spaces:
Runtime error
Runtime error
File size: 837 Bytes
115169a 82df0a3 115169a fa2543e 115169a 2cd8a91 115169a 2410f34 115169a fa2543e 2410f34 |
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 35 36 |
import time
import gradio as gr
from chatbot_multiagent import submitUserMessage
def chat(message:str, history):
print(message)
return submitUserMessage(message)
def slow_echo_chat(message, history):
answer = submitUserMessage(message)
for i in range(len(answer)):
time.sleep(0.01)
yield answer[: i+1]
with gr.Blocks() as demo:
chatbot = gr.Chatbot(height=600)
msg = gr.Textbox()
clear = gr.ClearButton([msg, chatbot])
def respond(message, chat_history):
bot_message = submitUserMessage(message)
chat_history.append((message, bot_message))
return "", chat_history
msg.submit(respond, [msg, chatbot], [msg, chatbot])
demo.launch()
# gr.ChatInterface(chat).launch()
# interface = gr.ChatInterface(chat)
# interface.launch() |