mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
7e42dae611
* refactor(memory-core): split index manager along the inheritance chain * fix(memory): restore the manager lazy boundary * refactor(memory-core): delete dead manager plumbing * chore(lint): ratchet max-lines baseline after memory manager split * fix(memory): keep the manager out of the runtime facade * test(memory): cover transitive manager facade imports
36 lines
1.4 KiB
TypeScript
36 lines
1.4 KiB
TypeScript
// Memory Core API module exposes the plugin public contract.
|
|
export { getMemorySearchManager } from "./src/memory/index.js";
|
|
export { memoryRuntime } from "./src/runtime-provider.js";
|
|
export {
|
|
DEFAULT_LOCAL_MODEL,
|
|
getBuiltinMemoryEmbeddingProviderDoctorMetadata,
|
|
listBuiltinAutoSelectMemoryEmbeddingProviderDoctorMetadata,
|
|
} from "./src/memory/provider-adapters.js";
|
|
export { createEmbeddingProvider } from "./src/memory/embeddings.js";
|
|
export {
|
|
resolveMemoryCacheSummary,
|
|
resolveMemoryFtsState,
|
|
resolveMemoryVectorState,
|
|
type Tone,
|
|
} from "openclaw/plugin-sdk/memory-core-host-status";
|
|
export { hasConfiguredMemorySecretInput } from "openclaw/plugin-sdk/memory-core-host-secret";
|
|
export { auditDreamingArtifacts, repairDreamingArtifacts } from "./src/dreaming-repair.js";
|
|
export { configureMemoryCoreDreamingState } from "./src/dreaming-state.js";
|
|
export {
|
|
auditShortTermPromotionArtifacts,
|
|
loadShortTermPromotionDreamingStats,
|
|
removeGroundedShortTermCandidates,
|
|
repairShortTermPromotionArtifacts,
|
|
} from "./src/short-term-promotion.js";
|
|
export type { BuiltinMemoryEmbeddingProviderDoctorMetadata } from "./src/memory/provider-adapters.js";
|
|
export type {
|
|
DreamingArtifactsAuditSummary,
|
|
RepairDreamingArtifactsResult,
|
|
} from "./src/dreaming-repair.js";
|
|
export type {
|
|
RepairShortTermPromotionArtifactsResult,
|
|
ShortTermDreamingStats,
|
|
ShortTermDreamingStatsEntry,
|
|
ShortTermAuditSummary,
|
|
} from "./src/short-term-promotion.js";
|