You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is there any way to fix this? I'm planning on just adding all messages to a single prompt to the character, but i get the feeling that it will significantly slow everything down.
The text was updated successfully, but these errors were encountered:
Are you using the Room() function? Let's assume you are. At the end, do you declare saving the history with saveHistory?
If you're using Room in a single session, the data gets deleted after a restart because "Temporary memory" is being used. To save the data, you need to call .saveHistory(), and then load the created file into Room with the parameter history_path:
Room(history_path="./history.json").
I'm not denying the fact that the error could be on our side, but without additional information from you, it's hard to say anything for sure.
Actually, there can be many nuances, but I'll work on optimizing all of this a bit later.
is there any way to fix this? I'm planning on just adding all messages to a single prompt to the character, but i get the feeling that it will significantly slow everything down.
The text was updated successfully, but these errors were encountered: