代理记忆
代理记忆是代理在会话之间存储并在相关时带回的内容:长期规则、事实、学习过的材料以及过去对话的简短摘要。
代理记忆是代理在会话之间保留并在与你所问内容相关时带回回合中的内容。
它不是你所处的对话。那是上下文,窗口关闭时就会消失。记忆是超越对话而存在的部分,在 Dropstone 中它包含四种内容:
| 种类 | 说明 |
|---|---|
| 规则 | 长期指令:“总是”、“从不”、“从现在起”。它们会出现在每个回合中 |
| 事实 | 关于你或你工作的真实信息,在相关问题出现时被引入 |
| 学习过的材料 | 你要求它学习的文档或代码库,之后可供使用 |
| 摘要 | 过去对话内容的简短记录,以便可以接续话题 |
在声称具有记忆的代理中,有两个属性值得检查。它应该是可见的:你可以询问它记住了什么并得到列表。它还应该是可移除的:要求它忘记某事实际上会移除它,而不是隐藏它。Dropstone 两者都做到了。参见 查看 Dropstone 学到了什么 和 更改或忘记记忆。
Related articles
- AI agent with a memoryAn AI agent with a memory is one that keeps what it learns about you and your work, attaches it to your account rather than to one app, and applies it wherever you use the agent next.
- Cross-surface memoryCross-surface memory is one memory attached to your account that every surface reads and writes, so a rule set in the terminal holds in chat and something learned in chat is available to code running through the SDK.
- Rules and factsDropstone keeps two kinds of memory. Standing rules apply to every task without being searched for. Facts are recalled only when they are relevant. Here is why the difference matters and how it decides.
- Change or forget a memoryTell Dropstone to forget something and it stops applying it. Tell it a fact should be a rule, or a rule is too broad, and it adjusts. Only you can remove a memory. It never forgets on its own.
Ctrl+I