Skip to content

Graphorin API reference v0.7.0


Graphorin API reference / @graphorin/memory / / CONSOLIDATOR_TIER_DEFAULTS

Variable: CONSOLIDATOR_TIER_DEFAULTS

ts
const CONSOLIDATOR_TIER_DEFAULTS: Readonly<Record<ConsolidatorTier, {
  ceilings: ConsolidatorCeilings;
  cheapModel: string | null;
  contextualRetrieval: ContextualRetrievalMode;
  deepModel: string | null;
  formEpisodes: boolean;
  importanceScoring: boolean;
  importanceThreshold: number;
  learnedContext: boolean;
  learnedContextMaxChars: number;
  maxTranscriptChars: number;
  onExceed: OnBudgetExceed;
  phases: ReadonlyArray<ConsolidatorPhase>;
  reflection: boolean;
  reflectionMaxQuarantinedInsights: number;
  reflectionMaxQuestions: number;
}>>;

Defined in: packages/memory/src/consolidator/types.ts:482

Tier preset table. The defaults follow ADR-038 §4 - 'free' disables every LLM phase and pins zero ceilings, the upper tiers widen the budget envelope progressively.

Stable