Files
NetMesh/infrastructure/ai/harness/compactionStatusKeys.ts

10 lines
367 B
TypeScript
Raw Permalink Normal View History

/** i18n keys for compaction status — resolved in useAgentCompactionUi. */
export const CATTY_COMPACTION_STATUS_KEYS = {
preTurn: 'ai.chat.compactingContext',
step: 'ai.chat.compactingStep',
retry: 'ai.chat.compactionRetry',
} as const;
export type CattyCompactionStatusKey =
typeof CATTY_COMPACTION_STATUS_KEYS[keyof typeof CATTY_COMPACTION_STATUS_KEYS];