Pre-submission checklist | 提交前检查
Problem Statement | 问题陈述
Hi, I wonder if there is a feature to remove all memories of an user by the user_id, or removing a conversation memories by conversation id. Currently, if I want to remove all memories (a.k.a. reset user's memory), I need to:
- search for all memories and get their memory id.
get_memory()
- delete memory by its memory id one by one.
delete_memory()
The first step "search" takes a long time. For example, it can take 142 seconds to search 793 memories then delete them. I wonder if there is a quicker approach to reset a user's memory.
Thanks!
Willingness to Implement | 实现意愿
Pre-submission checklist | 提交前检查
Problem Statement | 问题陈述
Hi, I wonder if there is a feature to remove all memories of an user by the user_id, or removing a conversation memories by conversation id. Currently, if I want to remove all memories (a.k.a. reset user's memory), I need to:
get_memory()delete_memory()The first step "search" takes a long time. For example, it can take 142 seconds to search 793 memories then delete them. I wonder if there is a quicker approach to reset a user's memory.
Thanks!
Willingness to Implement | 实现意愿