-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When sending a message, two dialogue branches are created #278
Comments
Hi! Thanks for your issue, we will deal with your issue as soon as possible. |
Update: |
I found out what the problem is. In your code ( logs:
|
Version of hugchat
0.4.18
When sending a message using
self.chatbot.chat(send_text).wait_until_done()
(by stream mode this error also occurs) two dialogue branches are created, and the first one send in response, while the second one seems to have not been generated yet.Interface:
Huggingface chat:
first branch:
second branch:
logs:
If I then send a message to the same chat, it will enter the second branch and again two new branches will be created, where the answer will return from the first, and the ungenerated text will be in second.
Before sending, I always change the conversation (I need to do this, since my bot is in a group chat), it changes in this way and the ID (
conv_id
) does not change in this test for the first and second message.Interface:
Huggingface chat:
first branch of second branch:
second branch of second branch:
logs:
The text was updated successfully, but these errors were encountered: