Graphorin API reference v0.1.0
Graphorin API reference / @graphorin/memory / / createFactForgetTool
Function: createFactForgetTool()
ts
function createFactForgetTool(deps): Tool<{
factId: string;
reason?: string;
}, {
factId: string;
forgotten: boolean;
}>;Defined in: packages/memory/src/tools/fact-tools.ts:181
fact_forget — soft-delete a fact (kept for replay; never hard- deleted at this layer).
Parameters
| Parameter | Type |
|---|---|
deps | MemoryToolDeps |
Returns
Tool<{ factId: string; reason?: string; }, { factId: string; forgotten: boolean; }>