Skip to content

Graphorin API reference v0.1.0


Graphorin API reference / @graphorin/memory / / AutoRecallConfig

Type Alias: AutoRecallConfig

ts
type AutoRecallConfig = 
  | false
  | {
  strategy?: AutoRecallStrategy;
  threshold?: number;
  topK?: number;
};

Defined in: packages/memory/src/context-engine/engine.ts:102

Auto-recall config knob. false disables; { topK } enables the heuristic with a bounded top-K.

Stable