mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-20 17:41:33 -06:00
28630a9a65
* feat(memory): add provenance and recall metadata to the memory index * feat(memory): provenance-gated promotion and capture hygiene * feat(dreaming): LLM consolidation with deterministic gates, on by default * feat(active-memory): deterministic recall lane with escalation default * feat(memory): user model file and standing intents * docs(memory): document the memory architecture * fix(memory): live-QA fixes — metadata writers, provenance classes, intent scope, claim accumulation
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
/**
|
|
* Public SDK subpath for memory host status and dreaming state helpers.
|
|
*/
|
|
export {
|
|
resolveMemoryCacheSummary,
|
|
resolveMemoryFtsState,
|
|
resolveMemoryVectorState,
|
|
} from "../../packages/memory-host-sdk/src/status.js";
|
|
export type { Tone } from "../../packages/memory-host-sdk/src/status.js";
|
|
export {
|
|
formatMemoryDreamingDay,
|
|
isSameMemoryDreamingDay,
|
|
resolveMemoryDeepDreamingConfig,
|
|
resolveMemoryDreamingConfig,
|
|
resolveMemoryDreamingWorkspaces,
|
|
resolveMemoryLightDreamingConfig,
|
|
resolveMemoryRemDreamingConfig,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_LIMIT,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MAX_PROMOTED_SNIPPET_TOKENS,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MAX_PRIOR_ENTRY_LOSS_FRACTION,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MIN_RECALL_COUNT,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MIN_SCORE,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_MIN_UNIQUE_QUERIES,
|
|
DEFAULT_MEMORY_DEEP_DREAMING_RECENCY_HALF_LIFE_DAYS,
|
|
DEFAULT_MEMORY_DREAMING_FREQUENCY,
|
|
LEGACY_MEMORY_LIGHT_DREAMING_CRON_NAME,
|
|
LEGACY_MEMORY_LIGHT_DREAMING_CRON_TAG,
|
|
LEGACY_MEMORY_LIGHT_DREAMING_EVENT_TEXT,
|
|
LEGACY_MEMORY_REM_DREAMING_CRON_NAME,
|
|
LEGACY_MEMORY_REM_DREAMING_CRON_TAG,
|
|
LEGACY_MEMORY_REM_DREAMING_EVENT_TEXT,
|
|
MANAGED_MEMORY_DREAMING_CRON_NAME,
|
|
MANAGED_MEMORY_DREAMING_CRON_TAG,
|
|
MEMORY_DREAMING_SYSTEM_EVENT_TEXT,
|
|
} from "../memory-host-sdk/dreaming.js";
|
|
export type {
|
|
MemoryDreamingPhaseName,
|
|
MemoryDreamingStorageConfig,
|
|
} from "../memory-host-sdk/dreaming.js";
|