Files
openclaw/src/context-engine/index.ts
Josh Lehman 751d5b7849 feat: add context engine transcript maintenance (#51191)
Merged via squash.

Prepared head SHA: b42a3c28b4
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Reviewed-by: @jalehman
2026-03-20 16:28:27 -07:00

26 lines
673 B
TypeScript

export type {
ContextEngine,
ContextEngineInfo,
AssembleResult,
CompactResult,
ContextEngineMaintenanceResult,
ContextEngineRuntimeContext,
IngestResult,
TranscriptRewriteReplacement,
TranscriptRewriteRequest,
TranscriptRewriteResult,
} from "./types.js";
export {
registerContextEngine,
getContextEngineFactory,
listContextEngineIds,
resolveContextEngine,
} from "./registry.js";
export type { ContextEngineFactory } from "./registry.js";
export { LegacyContextEngine, registerLegacyContextEngine } from "./legacy.js";
export { delegateCompactionToRuntime } from "./delegate.js";
export { ensureContextEnginesInitialized } from "./init.js";