refactor(memory): replace MemoryManagerAgent with prompt-driven memory editing across four tiers (#25716)

This commit is contained in:
Sandy Tao
2026-04-21 18:21:55 -07:00
committed by GitHub
parent ffb28c772b
commit 6edfba481f
24 changed files with 772 additions and 477 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export function flattenMemory(memory?: string | HierarchicalMemory): string {
}
if (memory.userProjectMemory?.trim()) {
sections.push({
name: 'User Project Memory',
name: 'Private Project Memory',
content: memory.userProjectMemory.trim(),
});
}