Recall filters
typescripttypescript
await ctx.recall({
query: "billing",
filter: {
agent: "research",
includeArchived: false,
},
});Forget filters
typescripttypescript
await ctx.forget({
filter: { agent: "research" },
});Guides
Narrow recall and deletion with agent filters.
await ctx.recall({
query: "billing",
filter: {
agent: "research",
includeArchived: false,
},
});await ctx.forget({
filter: { agent: "research" },
});