We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15142e3 commit 60890eeCopy full SHA for 60890ee
src/memos/graph_dbs/neo4j_community.py
@@ -169,12 +169,13 @@ def search_by_embedding(
169
# Return consistent format
170
return [{"id": r.id, "score": r.score} for r in results]
171
172
- def get_all_memory_items(self, scope: str) -> list[dict]:
+ def get_all_memory_items(self, scope: str, include_embedding: bool = True) -> list[dict]:
173
"""
174
Retrieve all memory items of a specific memory_type.
175
176
Args:
177
scope (str): Must be one of 'WorkingMemory', 'LongTermMemory', or 'UserMemory'.
178
+ include_embedding (bool): Whether to include the large embedding field.
179
180
Returns:
181
list[dict]: Full list of memory items under this scope.
0 commit comments