返回首页

对比阅读

对比阅读:DeerFlow Breaks Open AI Long-Term Memory — No Vector DB by Default, Simpler Holds 与 DeerFlow 拆开 AI 长期记忆 — 默认不用向量库,简单做法反而更稳

AEN
DeerFlowByteDanceAgent·

DeerFlow Breaks Open AI Long-Term Memory — No Vector DB by Default, Simpler Holds

What this is

ByteDance's open-source framework DeerFlow breaks open how Agent long-term memory is implemented, and the conclusion runs counter to intuition: by default, no vector database (a database that retrieves by semantic similarity) is used—the LLM proposes, the code decides, and the simple approach is actually more reliable.

Its Memory design runs in three steps:

  • Filter: Strip out tool calls, acknowledgments ("OK," "thanks"), temporary files, and other clearly valueless messages;
  • Propose: A dedicated Memory LLM evaluates "is this worth remembering," outputting structured facts;
  • Adjudicate: A code-layer check—must be user-level, long-term valid, with confidence ≥ 0.7, before anything is actually written to disk.

The design also introduces debounce (triggering only after the user pauses input) and watermark (a marker tracking processed position) to control duplicate calls.

Industry view

Supporters say this is the real watershed for Agent productization: whether users feel the AI "gets me" hinges on memory quality, not model size. Fine-grained filtering and adjudication turn a general-purpose model into a personal assistant.

Skepticism exists too. JSON file storage means losing everything when switching devices—cross-device sync is a major hole. The extra Memory LLM call per round adds latency and cost that can't be ignored. More importantly, while this works in single-user scenarios, when 1,000 employees run concurrently, no one has answered how to arbitrate conflicting facts or draw privacy boundaries. Some voices also point out that DeerFlow demonstrates a direction, not an end state—when Agents enter enterprise core workflows, memory system complexity will climb another order of magnitude.

Impact on regular people

For enterprise IT: When evaluating AI assistants, "does it remember me" will matter as much as "is it smart." The selection checklist needs a new line item: long-term memory mechanism.

For working professionals: The AI tools you use daily will increasingly split into two camps—"ones that get you" and "ones that don't." The difference often isn't the model, but the memory design behind it.

For the consumer market: AI companion and assistant products will further segment. Products that remember have higher stickiness, but user demands for data ownership and the "right to be forgotten" will intensify in parallel.

来源: juejin.cn
BZH
DeerFlow字节跳动Agent·

DeerFlow 拆开 AI 长期记忆 — 默认不用向量库,简单做法反而更稳

这是什么

字节开源框架 DeerFlow 拆开 Agent 长期记忆的实现,结论反直觉:默认根本不用向量数据库(一种按语义相似度检索的数据库)——LLM 提议、代码拍板,简单做法反而更稳。

它的 Memory 设计分三步:

  • 过滤:剔除工具调用、确认语(「好的」「谢谢」)、临时文件等明显没价值的消息;
  • 提议:一个专门的 Memory LLM 评估「这条值不值得记」,输出结构化事实;
  • 裁决:代码层校验——必须是用户级、长期有效、置信度≥0.7,才真正落盘。

设计上还引入 debounce(去抖,用户暂停输入后才触发)和 watermark(已处理位置标记),控制重复调用。

行业怎么看

支持者认为,这才是 Agent 产品化的真正分水岭:用户感受到的「懂不懂我」,核心在记忆质量,而非模型大小。精细化的过滤和裁决,把通用模型变成私人助手。

质疑同样存在:JSON 文件存储意味着换设备即丢失,跨端同步是大坑;每轮对话额外调用 Memory LLM,延迟与成本不能忽视;更重要的是,单人场景能 work,企业 1000 人并发时,事实冲突怎么仲裁、隐私边界怎么划,目前都没有答案。也有声音指出,DeerFlow 展示的是思路而非终态——当 Agent 进入企业核心流程,记忆系统复杂度会再上一个台阶。

对普通人的影响

对企业 IT:评估 AI 助手时,「它记得住我吗」会和「它聪明吗」一样重要。选型清单上该多一项:长期记忆机制。

对个人职场:未来你日常用的 AI 工具,会越来越分化为「懂你的」和「不懂你的」两类——差别往往不在模型,而在背后那套记忆设计。

对消费市场:AI 陪伴、助理类产品会进一步分化。会记的产品粘性更高,但用户对数据归属和「被遗忘权」的诉求也会更强。

来源: juejin.cn