에이전트 메모리
에이전트 메모리는 에이전트가 세션 사이에 저장하고 관련이 있을 때 다시 가져오는 것입니다: 상시 규칙, 사실, 학습한 자료, 과거 대화의 짧은 요약.
에이전트 메모리는 에이전트가 세션 사이에 보관하고, 사용자가 요청한 내용과 관련이 있을 때 턴으로 다시 가져오는 것입니다.
이는 현재 진행 중인 대화가 아닙니다. 대화는 컨텍스트이며, 창이 닫히면 사라집니다. 메모리는 그보다 오래 지속되는 부분이며, 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