Guides

Filtering

Narrow recall and deletion with agent filters.

Recall filters

typescripttypescript
await ctx.recall({
  query: "billing",
  filter: {
    agent: "research",
    includeArchived: false,
  },
});

Forget filters

typescripttypescript
await ctx.forget({
  filter: { agent: "research" },
});