Replies: 2 comments
-
|
做了一圈业界对照,觉得这个 issue 的讨论可以收窄一点。生命周期机制其实有三个已经被生产验证的成熟方案, 方案 A:Usage count + 时间阈值(Codex / Claude Code 路线)每条记忆带 "skillUsage": {
"deep-research": { "usageCount": 32, "lastUsedAt": 1779432108660 },
"memos": { "usageCount": 12, "lastUsedAt": 1777359305175 }
}落地成本最低,而且我们 方案 B:Ebbinghaus 遗忘曲线(MemoryBank, AAAI 2024)
方案 C:Bi-temporal invalidate(Zep / Graphiti)每条记忆带四个时间戳: 关于 archived 记忆能不能被 recall 召回我倾向不能。理由是我们 关于用户反馈触发即时归档
具体建议拆 3 个 follow-up:
第 1 步是其余所有事情的前置,不论后面挑 A/B/C 哪个方案都用得上。 |
Beta Was this translation helpful? Give feedback.
-
|
This issue has been automatically marked as stale due to inactivity. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Dream CE can produce new memory artifacts, but we need to discuss how these Dream-produced memories should live over time and how agents should use them.
Unlike raw memories, Dream memories are derived. They may be useful insights, but they may also become outdated, contradicted, or less useful over time.
Questions about lifecycle
Questions about agent usage
Current code direction
Dream CE already has lifecycle metadata fields such as:
last_hit_athit_countusefulness_scoreinvalidated_by_feedbackstatusThe
maintenance.pyfile also sketches possible cleanup rules:Desired outcome
We want to gather real agent usage patterns and lifecycle expectations before finalizing maintenance behavior. Follow-up issues may include:
Beta Was this translation helpful? Give feedback.
All reactions