Closed WindowsSov8forUs closed 6 months ago
Is Save Conversation
function able to use now? Why can't I make continuous conversation?
Why this issue is invalid?
Invalid tag means this issue doesn't seem right, and will be check later. Not means this issue is invalid.
Invalid tag means this issue doesn't seem right, and will be check later. Not means this issue is invalid.
Oh sorry i misunderstood it.
I found some potential key naming inconsistencies in chathub.py
. For example, both encryptedConversationSignature
and encrypted_conversation_signature
are used as keys in the ChatHub.conversation.struct
dictionary. However, when I replaced these with what I believe to be the correct names, the behavior of the copilot remained unchanged. I am still unable to carry out a continuous conversation.
Fix it in the new version.
Here is my code (based on
ReEdgeGPT Save Conversation
chapter in document):when i try to print the
converstaion_dict
in three different places (line 29, 44 and 46) , i got these results:it seems that
bot.set_conversation()
method does not work properly, that these chatbots have differentconversation_id
andencrypted_conversation_signature
with the sameclient_id
, and i guess these values should be all the same. as the responses, they has no relevance at all, and it seems that they belong to total different conversations, because themessages_left
of them are both29
, which means it's a new conversation.is this method really worked?