Replies: 2 comments
-
|
diary 这块我想说几句不太顺耳但比较实在的话。 横向看一下,四个有"反思"机制的工业项目里只有我们想做给用户读的日记:
学术界做过 user-facing journaling 的是 DiaryMate(CHI 2024)和近期几个 AI journaling app。DiaryMate 的核心发现是:LLM 作为协作写作伙伴(读用户写的内容并回应、跨多天连点找模式)被接受度高,LLM 单方面给用户写日记接受度低。这个差异在他们的用户访谈里很明确。 我们当前 diary.py 走的是后一条路:LLM 单方面写。而且更糟糕的是,diary.py 的代码注释明确写了"完全确定性,不调用 LLM", 具体担忧:
具体建议,从保守到激进: 短期(必做)
中期(可选)
不建议做
学术界还有一个相关工作可以借鉴:View-oriented Conversation Compiler(VCC, 2026),他们把 raw agent logs 编译成 "user-perceived view",pass rate 提升的同时 token 消耗减半到三分之二。我们可以考虑把 reasoning 阶段产出和 diary 渲染解耦。reasoning 输出结构化数据(motive / dream_action / rationale / source_ids),diary 是这个结构化数据上的"渲染层",用 LLM 渲染或纯模板都行,不同应用层用不同渲染策略。这样既不需要每次 reasoning 都重跑,又能给应用层灵活性。 总结:别让 diary 牵制 reasoning,别默认主动 surface,加一道 rewrite,把渲染和数据解耦。 |
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 produces diary entries as human-readable traces of offline memory consolidation. OpenClaw already has a diary-like user experience, so we would like to discuss how Dream diaries should be surfaced in MemOS and agent workflows.
Current idea
A Dream diary is different from functional memory:
Currently, diary entries can be queried, but they are not necessarily surfaced proactively.
Design questions
surfacedstatus to avoid repeating the same diary?Possible directions
Desired outcome
We hope to collect UX expectations and real use cases before implementing diary surfacing. The result may become follow-up issues around:
Beta Was this translation helpful? Give feedback.
All reactions