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
Please do a quick search on GitHub issues first, the feature you are about to request might have already been requested.
Expected Behavior
Memory can be incrementally forgotten and added
Current Behavior
ChatMemoryRepository API:
Memory can only extract and overwrite as a whole.
List<Message> findByConversationId(StringconversationId);
/** * Replaces all the existing messages for the given conversation ID with the provided * messages. */voidsaveAll(StringconversationId, List<Message> messages);
voiddeleteByConversationId(StringconversationId);