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
feat: support metadata recording and filtering for Mem0 (#563)
## AgentScope-Java Version
[The version of AgentScope-Java you are working on, e.g. 1.0.7, check
your pom.xml dependency version or run `mvn dependency:tree | grep
agentscope-parent:pom`(only mac/linux)]
$ mvn dependency:tree | grep agentscope-parent:pom
[INFO] io.agentscope:agentscope-parent:pom:1.0.8-SNAPSHOT
## Description
[Please describe the background, purpose, changes made, and how to test
this PR]
Feat [#561
](#561)
## Checklist
Please check the following items before code is ready to be reviewed.
- [x] Code has been formatted with `mvn spotless:apply`
- [x] All tests are passing (`mvn test`)
- [x] Javadoc comments are complete and follow project conventions
- [x] Related documentation has been updated (e.g. links, examples,
etc.)
- [x] Code is ready for review
Copy file name to clipboardExpand all lines: agentscope-extensions/agentscope-extensions-mem0/src/main/java/io/agentscope/core/memory/mem0/Mem0LongTermMemory.java
+92-12Lines changed: 92 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
importio.agentscope.core.memory.LongTermMemory;
19
19
importio.agentscope.core.message.Msg;
20
20
importjava.util.List;
21
+
importjava.util.Map;
21
22
importjava.util.Objects;
22
23
importjava.util.stream.Collectors;
23
24
importreactor.core.publisher.Mono;
@@ -34,6 +35,7 @@
34
35
* <li>Semantic memory search using vector embeddings
Copy file name to clipboardExpand all lines: agentscope-extensions/agentscope-extensions-mem0/src/main/java/io/agentscope/core/memory/mem0/Mem0SearchRequest.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -230,6 +230,10 @@ public Builder filters(Map<String, Object> filters) {
0 commit comments