Skip to content

Graphorin API reference v0.1.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;
  deepModel: string | null;
  onExceed: OnBudgetExceed;
  phases: ReadonlyArray<ConsolidatorPhase>;
}>>;

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

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