use cases
Where agent memory earns its place
Three kinds of agent that get better when they remember. Each page shows the calls that do the work, the code in TypeScript and Python that both test suites run, and the limits worth knowing before you start.
Pick the agent you are building
Customer support agents
Remember each customer across tickets, keep personal data out of the prompt, and erase a customer in one call.
injectMemory · retrieveContext · storeTurn · eraseAgentMemories
Read the use caseCoding assistants
Learn each repository’s conventions once, and recall only the ones a task needs, inside the token budget you set.
injectMemory · retrieveContext · storeTurn
Read the use casePersonal assistants
Remember the person across conversations, with every fact tagged by sensitivity so you decide what the model sees.
injectMemory · storeTurn · clearSession · retrieveContext
Read the use case