@remnic/core 9.6.5 → 9.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/access-admin-ops-surface.d.ts +2 -2
- package/dist/access-admin-ops-surface.js +1 -1
- package/dist/access-boundary.d.ts +2 -2
- package/dist/access-boundary.js +2 -2
- package/dist/access-cli.js +9 -9
- package/dist/access-http.d.ts +2 -2
- package/dist/access-http.js +6 -6
- package/dist/access-identity-continuity-surface.d.ts +1 -1
- package/dist/access-identity-continuity-surface.js +1 -1
- package/dist/access-lcm-surface.d.ts +2 -2
- package/dist/access-lcm-surface.js +1 -1
- package/dist/access-mcp.d.ts +2 -2
- package/dist/access-mcp.js +5 -5
- package/dist/access-observe-write-surface.d.ts +2 -2
- package/dist/access-observe-write-surface.js +1 -1
- package/dist/access-operations-batch.js +3 -3
- package/dist/access-operations.d.ts +5 -5
- package/dist/access-operations.js +4 -4
- package/dist/access-recall-surface.d.ts +2 -2
- package/dist/access-recall-surface.js +1 -1
- package/dist/access-schema.d.ts +64 -64
- package/dist/{access-service-BjiJMXBo.d.ts → access-service-DK7s3wMj.d.ts} +1 -1
- package/dist/access-service.d.ts +2 -2
- package/dist/access-service.js +1 -1
- package/dist/access-surface-catalog.d.ts +2 -2
- package/dist/bootstrap.d.ts +1 -1
- package/dist/{chunk-N56UNLQ6.js → chunk-D3YEDDCC.js} +3 -3
- package/dist/{chunk-DTL3OPAJ.js → chunk-I7PEZK2A.js} +23 -13
- package/dist/chunk-I7PEZK2A.js.map +1 -0
- package/dist/{chunk-DKEBBOBM.js → chunk-KD6PBCXP.js} +4 -4
- package/dist/{chunk-TML6D45I.js → chunk-KJ3QGI63.js} +3 -3
- package/dist/{chunk-F5NN5J7O.js → chunk-L6NW2XSU.js} +3 -3
- package/dist/{chunk-IVE2J73I.js → chunk-OP47QBUR.js} +3 -27
- package/dist/chunk-OP47QBUR.js.map +1 -0
- package/dist/{chunk-R5OGPRLF.js → chunk-RSS3CZV7.js} +2 -2
- package/dist/{chunk-5MH5NF3U.js → chunk-U4CWMKN6.js} +3 -3
- package/dist/chunk-U4CWMKN6.js.map +1 -0
- package/dist/{chunk-J7NJZPWW.js → chunk-ZZYLM6KQ.js} +3 -3
- package/dist/{chunk-J7NJZPWW.js.map → chunk-ZZYLM6KQ.js.map} +1 -1
- package/dist/{cli-BkZQIerV.d.ts → cli-CLSdmOVU.d.ts} +35 -98
- package/dist/cli.d.ts +14 -14
- package/dist/cli.js +8 -8
- package/dist/explicit-capture.d.ts +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +9 -9
- package/dist/mcp-memory-inspector-app.d.ts +2 -2
- package/dist/operator-toolkit.d.ts +33 -31
- package/dist/operator-toolkit.js +1 -1
- package/dist/{orchestrator-BTbvvmgN.d.ts → orchestrator-BzXGNHco.d.ts} +102 -156
- package/dist/orchestrator.d.ts +2 -2
- package/dist/orchestrator.js +9 -9
- package/dist/schemas.d.ts +74 -74
- package/dist/shared-context/manager.d.ts +8 -8
- package/dist/transfer/types.d.ts +66 -66
- package/package.json +2 -2
- package/src/access-admin-ops-surface.ts +2 -2
- package/src/cli.ts +73 -74
- package/src/operator-toolkit.ts +37 -35
- package/src/orchestration/tier-migration-coordinator.ts +7 -9
- package/src/orchestrator.ts +0 -84
- package/dist/chunk-5MH5NF3U.js.map +0 -1
- package/dist/chunk-DTL3OPAJ.js.map +0 -1
- package/dist/chunk-IVE2J73I.js.map +0 -1
- /package/dist/{chunk-N56UNLQ6.js.map → chunk-D3YEDDCC.js.map} +0 -0
- /package/dist/{chunk-DKEBBOBM.js.map → chunk-KD6PBCXP.js.map} +0 -0
- /package/dist/{chunk-TML6D45I.js.map → chunk-KJ3QGI63.js.map} +0 -0
- /package/dist/{chunk-F5NN5J7O.js.map → chunk-L6NW2XSU.js.map} +0 -0
- /package/dist/{chunk-R5OGPRLF.js.map → chunk-RSS3CZV7.js.map} +0 -0
|
@@ -612,6 +612,100 @@ declare function locateTranscriptPath(hitPath: string): {
|
|
|
612
612
|
date: string;
|
|
613
613
|
} | null;
|
|
614
614
|
|
|
615
|
+
/**
|
|
616
|
+
* Conversation index coordinator — extracted from the orchestrator (issue #1526).
|
|
617
|
+
*
|
|
618
|
+
* Owns the conversation-index subsystem: semantic recall over past
|
|
619
|
+
* conversations, plus the build / update / rebuild / inspect / health
|
|
620
|
+
* lifecycle of the on-disk chunk store and its pluggable search backend
|
|
621
|
+
* (qmd or faiss). Behavior-preserving move from orchestrator.ts — no logic
|
|
622
|
+
* changes; the orchestrator constructs one instance and keeps thin
|
|
623
|
+
* delegating methods so existing call sites and tests that exercise the
|
|
624
|
+
* private API continue to work.
|
|
625
|
+
*
|
|
626
|
+
* The backend and transcript are read through getters (not captured at
|
|
627
|
+
* construction) so that post-construction reassignment of the orchestrator's
|
|
628
|
+
* live fields — exercised by the conversation-index integration tests and by
|
|
629
|
+
* backend swap-in at deferred-init time — is honored. This mirrors the
|
|
630
|
+
* TierMigrationCoordinator accessor pattern.
|
|
631
|
+
*/
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* Coordinator for the conversation-index subsystem.
|
|
635
|
+
*
|
|
636
|
+
* Holds the per-session last-update timestamps (previously an orchestrator
|
|
637
|
+
* field) and delegates chunk building / persistence / embedding to the
|
|
638
|
+
* configured backend.
|
|
639
|
+
*/
|
|
640
|
+
declare class ConversationIndexCoordinator {
|
|
641
|
+
private readonly config;
|
|
642
|
+
private readonly getTranscript;
|
|
643
|
+
private readonly getBackend;
|
|
644
|
+
private readonly indexDir;
|
|
645
|
+
private readonly lastUpdateAtMs;
|
|
646
|
+
constructor(options: {
|
|
647
|
+
config: PluginConfig;
|
|
648
|
+
getTranscript: () => TranscriptManager;
|
|
649
|
+
getBackend: () => ConversationIndexBackend | undefined;
|
|
650
|
+
indexDir: string;
|
|
651
|
+
});
|
|
652
|
+
/** Semantic recall over past-conversation chunks (fail-open: empty on miss). */
|
|
653
|
+
search(retrievalQuery: string, topK: number): Promise<ConversationSearchResult[]>;
|
|
654
|
+
/** Render conversation-recall search hits as a budgeted markdown section. */
|
|
655
|
+
formatRecallSection(results: ConversationSearchResult[], maxChars: number): string | null;
|
|
656
|
+
/** Recursively count `.md` chunk documents under a directory. */
|
|
657
|
+
countChunkDocs(dir: string): Promise<number>;
|
|
658
|
+
/** Read recent transcript entries and chunk them for indexing. */
|
|
659
|
+
buildChunks(sessionKey?: string, hours?: number): Promise<ConversationChunk[]>;
|
|
660
|
+
getHealth(): Promise<{
|
|
661
|
+
enabled: boolean;
|
|
662
|
+
backend: "qmd" | "faiss";
|
|
663
|
+
status: "ok" | "degraded" | "disabled";
|
|
664
|
+
chunkDocCount: number;
|
|
665
|
+
lastUpdateAt: string | null;
|
|
666
|
+
qmdAvailable?: boolean;
|
|
667
|
+
faiss?: {
|
|
668
|
+
ok: boolean;
|
|
669
|
+
status: "ok" | "degraded" | "error";
|
|
670
|
+
indexPath: string;
|
|
671
|
+
message?: string;
|
|
672
|
+
manifest?: {
|
|
673
|
+
version: number;
|
|
674
|
+
modelId: string;
|
|
675
|
+
normalizedModelId: string;
|
|
676
|
+
dimension: number;
|
|
677
|
+
chunkCount: number;
|
|
678
|
+
updatedAt: string;
|
|
679
|
+
lastSuccessfulRebuildAt: string;
|
|
680
|
+
};
|
|
681
|
+
};
|
|
682
|
+
}>;
|
|
683
|
+
inspect(): Promise<ConversationIndexBackendInspection & {
|
|
684
|
+
enabled: boolean;
|
|
685
|
+
chunkDocCount: number;
|
|
686
|
+
lastUpdateAt: string | null;
|
|
687
|
+
}>;
|
|
688
|
+
update(sessionKey: string, hours?: number, opts?: {
|
|
689
|
+
embed?: boolean;
|
|
690
|
+
enforceMinInterval?: boolean;
|
|
691
|
+
}): Promise<{
|
|
692
|
+
chunks: number;
|
|
693
|
+
skipped: boolean;
|
|
694
|
+
reason?: string;
|
|
695
|
+
retryAfterMs?: number;
|
|
696
|
+
embedded?: boolean;
|
|
697
|
+
}>;
|
|
698
|
+
rebuild(sessionKey?: string, hours?: number, opts?: {
|
|
699
|
+
embed?: boolean;
|
|
700
|
+
}): Promise<{
|
|
701
|
+
chunks: number;
|
|
702
|
+
skipped: boolean;
|
|
703
|
+
reason?: string;
|
|
704
|
+
embedded?: boolean;
|
|
705
|
+
rebuilt?: boolean;
|
|
706
|
+
}>;
|
|
707
|
+
}
|
|
708
|
+
|
|
615
709
|
/**
|
|
616
710
|
* Tier migration coordinator — extracted from the orchestrator (issue #1526).
|
|
617
711
|
*
|
|
@@ -622,15 +716,13 @@ declare function locateTranscriptPath(hitPath: string): {
|
|
|
622
716
|
* - promotion/demotion execution via TierMigrationExecutor
|
|
623
717
|
* - status recording through TierMigrationStatusStore
|
|
624
718
|
*
|
|
625
|
-
* The orchestrator constructs one instance and
|
|
626
|
-
*
|
|
627
|
-
* `
|
|
628
|
-
*
|
|
629
|
-
*
|
|
630
|
-
*
|
|
631
|
-
*
|
|
632
|
-
* orchestrator keeps thin delegating methods so existing call sites and
|
|
633
|
-
* tests that exercise the public API continue to work.
|
|
719
|
+
* The orchestrator constructs one instance and exposes it as the public
|
|
720
|
+
* `tierMigrationCoordinator` field. CLI commands and maintenance paths call
|
|
721
|
+
* `getStatus`/`runCycle` directly; the orchestrator keeps a private
|
|
722
|
+
* `runTierMigrationCycle` wrapper for the extraction-run dependency.
|
|
723
|
+
* Storage is passed per-call so extraction (which writes to a namespace-
|
|
724
|
+
* scoped storage) and maintenance/manual (which use the default storage)
|
|
725
|
+
* share one coordinator.
|
|
634
726
|
*/
|
|
635
727
|
|
|
636
728
|
/** Dependencies injected by the orchestrator. All stable references or live
|
|
@@ -1025,100 +1117,6 @@ declare class RecallResultFormatter {
|
|
|
1025
1117
|
} | null>;
|
|
1026
1118
|
}
|
|
1027
1119
|
|
|
1028
|
-
/**
|
|
1029
|
-
* Conversation index coordinator — extracted from the orchestrator (issue #1526).
|
|
1030
|
-
*
|
|
1031
|
-
* Owns the conversation-index subsystem: semantic recall over past
|
|
1032
|
-
* conversations, plus the build / update / rebuild / inspect / health
|
|
1033
|
-
* lifecycle of the on-disk chunk store and its pluggable search backend
|
|
1034
|
-
* (qmd or faiss). Behavior-preserving move from orchestrator.ts — no logic
|
|
1035
|
-
* changes; the orchestrator constructs one instance and keeps thin
|
|
1036
|
-
* delegating methods so existing call sites and tests that exercise the
|
|
1037
|
-
* private API continue to work.
|
|
1038
|
-
*
|
|
1039
|
-
* The backend and transcript are read through getters (not captured at
|
|
1040
|
-
* construction) so that post-construction reassignment of the orchestrator's
|
|
1041
|
-
* live fields — exercised by the conversation-index integration tests and by
|
|
1042
|
-
* backend swap-in at deferred-init time — is honored. This mirrors the
|
|
1043
|
-
* TierMigrationCoordinator accessor pattern.
|
|
1044
|
-
*/
|
|
1045
|
-
|
|
1046
|
-
/**
|
|
1047
|
-
* Coordinator for the conversation-index subsystem.
|
|
1048
|
-
*
|
|
1049
|
-
* Holds the per-session last-update timestamps (previously an orchestrator
|
|
1050
|
-
* field) and delegates chunk building / persistence / embedding to the
|
|
1051
|
-
* configured backend.
|
|
1052
|
-
*/
|
|
1053
|
-
declare class ConversationIndexCoordinator {
|
|
1054
|
-
private readonly config;
|
|
1055
|
-
private readonly getTranscript;
|
|
1056
|
-
private readonly getBackend;
|
|
1057
|
-
private readonly indexDir;
|
|
1058
|
-
private readonly lastUpdateAtMs;
|
|
1059
|
-
constructor(options: {
|
|
1060
|
-
config: PluginConfig;
|
|
1061
|
-
getTranscript: () => TranscriptManager;
|
|
1062
|
-
getBackend: () => ConversationIndexBackend | undefined;
|
|
1063
|
-
indexDir: string;
|
|
1064
|
-
});
|
|
1065
|
-
/** Semantic recall over past-conversation chunks (fail-open: empty on miss). */
|
|
1066
|
-
search(retrievalQuery: string, topK: number): Promise<ConversationSearchResult[]>;
|
|
1067
|
-
/** Render conversation-recall search hits as a budgeted markdown section. */
|
|
1068
|
-
formatRecallSection(results: ConversationSearchResult[], maxChars: number): string | null;
|
|
1069
|
-
/** Recursively count `.md` chunk documents under a directory. */
|
|
1070
|
-
countChunkDocs(dir: string): Promise<number>;
|
|
1071
|
-
/** Read recent transcript entries and chunk them for indexing. */
|
|
1072
|
-
buildChunks(sessionKey?: string, hours?: number): Promise<ConversationChunk[]>;
|
|
1073
|
-
getHealth(): Promise<{
|
|
1074
|
-
enabled: boolean;
|
|
1075
|
-
backend: "qmd" | "faiss";
|
|
1076
|
-
status: "ok" | "degraded" | "disabled";
|
|
1077
|
-
chunkDocCount: number;
|
|
1078
|
-
lastUpdateAt: string | null;
|
|
1079
|
-
qmdAvailable?: boolean;
|
|
1080
|
-
faiss?: {
|
|
1081
|
-
ok: boolean;
|
|
1082
|
-
status: "ok" | "degraded" | "error";
|
|
1083
|
-
indexPath: string;
|
|
1084
|
-
message?: string;
|
|
1085
|
-
manifest?: {
|
|
1086
|
-
version: number;
|
|
1087
|
-
modelId: string;
|
|
1088
|
-
normalizedModelId: string;
|
|
1089
|
-
dimension: number;
|
|
1090
|
-
chunkCount: number;
|
|
1091
|
-
updatedAt: string;
|
|
1092
|
-
lastSuccessfulRebuildAt: string;
|
|
1093
|
-
};
|
|
1094
|
-
};
|
|
1095
|
-
}>;
|
|
1096
|
-
inspect(): Promise<ConversationIndexBackendInspection & {
|
|
1097
|
-
enabled: boolean;
|
|
1098
|
-
chunkDocCount: number;
|
|
1099
|
-
lastUpdateAt: string | null;
|
|
1100
|
-
}>;
|
|
1101
|
-
update(sessionKey: string, hours?: number, opts?: {
|
|
1102
|
-
embed?: boolean;
|
|
1103
|
-
enforceMinInterval?: boolean;
|
|
1104
|
-
}): Promise<{
|
|
1105
|
-
chunks: number;
|
|
1106
|
-
skipped: boolean;
|
|
1107
|
-
reason?: string;
|
|
1108
|
-
retryAfterMs?: number;
|
|
1109
|
-
embedded?: boolean;
|
|
1110
|
-
}>;
|
|
1111
|
-
rebuild(sessionKey?: string, hours?: number, opts?: {
|
|
1112
|
-
embed?: boolean;
|
|
1113
|
-
}): Promise<{
|
|
1114
|
-
chunks: number;
|
|
1115
|
-
skipped: boolean;
|
|
1116
|
-
reason?: string;
|
|
1117
|
-
embedded?: boolean;
|
|
1118
|
-
rebuilt?: boolean;
|
|
1119
|
-
}>;
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
1120
|
/**
|
|
1123
1121
|
* Recall rerank coordinator — extracted from the orchestrator (issue #1526).
|
|
1124
1122
|
*
|
|
@@ -2630,34 +2628,6 @@ declare class Orchestrator {
|
|
|
2630
2628
|
}): Promise<boolean>;
|
|
2631
2629
|
private searchConversationRecallResults;
|
|
2632
2630
|
private formatConversationRecallSection;
|
|
2633
|
-
getConversationIndexHealth(): Promise<{
|
|
2634
|
-
enabled: boolean;
|
|
2635
|
-
backend: "qmd" | "faiss";
|
|
2636
|
-
status: "ok" | "degraded" | "disabled";
|
|
2637
|
-
chunkDocCount: number;
|
|
2638
|
-
lastUpdateAt: string | null;
|
|
2639
|
-
qmdAvailable?: boolean;
|
|
2640
|
-
faiss?: {
|
|
2641
|
-
ok: boolean;
|
|
2642
|
-
status: "ok" | "degraded" | "error";
|
|
2643
|
-
indexPath: string;
|
|
2644
|
-
message?: string;
|
|
2645
|
-
manifest?: {
|
|
2646
|
-
version: number;
|
|
2647
|
-
modelId: string;
|
|
2648
|
-
normalizedModelId: string;
|
|
2649
|
-
dimension: number;
|
|
2650
|
-
chunkCount: number;
|
|
2651
|
-
updatedAt: string;
|
|
2652
|
-
lastSuccessfulRebuildAt: string;
|
|
2653
|
-
};
|
|
2654
|
-
};
|
|
2655
|
-
}>;
|
|
2656
|
-
inspectConversationIndex(): Promise<ConversationIndexBackendInspection & {
|
|
2657
|
-
enabled: boolean;
|
|
2658
|
-
chunkDocCount: number;
|
|
2659
|
-
lastUpdateAt: string | null;
|
|
2660
|
-
}>;
|
|
2661
2631
|
getRecoverySummary(sessionKey?: string): Promise<{
|
|
2662
2632
|
generatedAt: string;
|
|
2663
2633
|
sessionKey?: string;
|
|
@@ -2667,25 +2637,6 @@ declare class Orchestrator {
|
|
|
2667
2637
|
brokenChains: number;
|
|
2668
2638
|
checkpointHealthy: boolean;
|
|
2669
2639
|
}>;
|
|
2670
|
-
updateConversationIndex(sessionKey: string, hours?: number, opts?: {
|
|
2671
|
-
embed?: boolean;
|
|
2672
|
-
enforceMinInterval?: boolean;
|
|
2673
|
-
}): Promise<{
|
|
2674
|
-
chunks: number;
|
|
2675
|
-
skipped: boolean;
|
|
2676
|
-
reason?: string;
|
|
2677
|
-
retryAfterMs?: number;
|
|
2678
|
-
embedded?: boolean;
|
|
2679
|
-
}>;
|
|
2680
|
-
rebuildConversationIndex(sessionKey?: string, hours?: number, opts?: {
|
|
2681
|
-
embed?: boolean;
|
|
2682
|
-
}): Promise<{
|
|
2683
|
-
chunks: number;
|
|
2684
|
-
skipped: boolean;
|
|
2685
|
-
reason?: string;
|
|
2686
|
-
embedded?: boolean;
|
|
2687
|
-
rebuilt?: boolean;
|
|
2688
|
-
}>;
|
|
2689
2640
|
private validateLocalLlmModel;
|
|
2690
2641
|
recall(prompt: string, sessionKey?: string, options?: RecallInvocationOptions): Promise<string>;
|
|
2691
2642
|
/**
|
|
@@ -2875,11 +2826,6 @@ declare class Orchestrator {
|
|
|
2875
2826
|
runExtraction(...args: Parameters<ExtractionRunCoordinator["runExtraction"]>): Promise<ExtractionRunResult>;
|
|
2876
2827
|
private recordProcessedExtractionFingerprint;
|
|
2877
2828
|
private runTierMigrationCycle;
|
|
2878
|
-
getTierMigrationStatus(): Promise<TierMigrationStatusSnapshot>;
|
|
2879
|
-
runTierMigrationNow(options?: {
|
|
2880
|
-
dryRun?: boolean;
|
|
2881
|
-
limit?: number;
|
|
2882
|
-
}): Promise<TierMigrationCycleSummary>;
|
|
2883
2829
|
private maybeScheduleConsolidation;
|
|
2884
2830
|
requestQmdMaintenance(): void;
|
|
2885
2831
|
/**
|
|
@@ -3039,4 +2985,4 @@ declare class Orchestrator {
|
|
|
3039
2985
|
private readArchivedMemoriesForNamespaces;
|
|
3040
2986
|
}
|
|
3041
2987
|
|
|
3042
|
-
export { type
|
|
2988
|
+
export { type GraphRecallShadowComparison as $, memoryStatusForMode as A, resolveSpeaker as B, ConversationIndexCoordinator as C, DEFAULT_SELF_NAME as D, resolveSyncDates as E, sanitizeSessionKeyForFilename as F, type GraphRecallSnapshot as G, saveSpeakerRegistry as H, type IntentDebugSnapshot as I, speakerRegistryKey as J, speakersFilePath as K, syncWearableSource as L, wearableDayTag as M, wearableSourceLabel as N, Orchestrator as O, type PatternReinforcementResult as P, writeDailyDigestMemory as Q, type ResolvedScopeProfilePlan as R, type ScopeProfileLayerResolution as S, TierMigrationCoordinator as T, type BulkImportBatchIngestResult as U, BulkImportBatchPartialFailureError as V, WearablesService as W, COMPACTION_SIGNAL_MAX_AGE_MS as X, type DaySummaryGatherOptions as Y, type ExtractionRunResult as Z, type GraphRecallRankedResult as _, type ScopeProfilePromotionResolution as a, type QmdRecallSnapshot as a0, type QueryAwarePrefilter as a1, type RecallInvocationOptions as a2, type RecallModeDecision as a3, appendMemoryToGraphContext as a4, applyQueryAwareCandidateFilter as a5, blendGraphExpandedRecallScore as a6, buildCompressionGuidelinesMarkdown as a7, buildMemoryPathById as a8, computeArtifactCandidateFetchLimit as a9, shouldFilterLifecycleRecallCandidate as aA, splitTurnsBySourceValidAt as aB, summarizeGraphShadowComparison as aC, targetSourceValidAtSortMs as aD, throwIfRecallAborted as aE, tokenizeRecallQuery as aF, utcDateKeysForLocalDay as aG, computeArtifactRecallLimit as aa, computeQmdHybridFetchLimit as ab, deriveTopicsFromExtraction as ac, filterHourlySummaryMarkdownForLocalDay as ad, filterRecallCandidates as ae, formatDateInTimeZone as af, graphPathRelativeToStorage as ag, hasIdentityRecoveryIntent as ah, isArtifactMemoryPath as ai, lifecycleRecallScoreAdjustment as aj, mapRecallSourceToXrayServedBy as ak, mergeArtifactRecallCandidates as al, mergeGraphExpandedResults as am, normalizeIanaTimeZone as an, parseFiniteDate as ao, parseGraphRecallRankedResults as ap, parseMemoryIntentSnapshot as aq, parseQmdRecallResults as ar, qmdStartupCollectionCheckWithTimeout as as, raceRecallAbort as at, resolveEffectiveIdentityInjectionMode as au, resolveEffectiveRecallMode as av, resolvePersistedMemoryRelativePath as aw, resolveRecallModeDecision as ax, resolveRecallModeDecisionAsync as ay, resolveRecentThreadMemoryPaths as az, type SpeakerRegistry as b, type ResolvedSpeaker as c, type SpeakerOverride as d, WEARABLE_SOURCE_PREFIX as e, type WearableDayTranscriptView as f, type WearableMemoryGenDeps as g, type WearableMemoryGenResult as h, type WearableMemorySearchResult as i, type WearableMemoryWriter as j, type WearableSearchBackend as k, type WearableStorageIo as l, type WearableSyncDeps as m, type WearableSyncOptions as n, type WearableTranscriptSearchResult as o, type WearablesServiceDeps as p, buildExtractionTurns as q, dateInTimezone as r, defaultTimezone as s, defaultWorkspaceDir as t, distinctSpeakerLabels as u, emptySpeakerRegistry as v, generateWearableMemories as w, importNativeMemories as x, loadSpeakerRegistry as y, locateTranscriptPath as z };
|
package/dist/orchestrator.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import './summarizer.js';
|
|
|
8
8
|
import './local-llm.js';
|
|
9
9
|
import './fallback-llm.js';
|
|
10
10
|
import './orchestration/maintenance.js';
|
|
11
|
-
export {
|
|
11
|
+
export { U as BulkImportBatchIngestResult, V as BulkImportBatchPartialFailureError, X as COMPACTION_SIGNAL_MAX_AGE_MS, Y as DaySummaryGatherOptions, Z as ExtractionRunResult, _ as GraphRecallRankedResult, $ as GraphRecallShadowComparison, G as GraphRecallSnapshot, I as IntentDebugSnapshot, O as Orchestrator, a0 as QmdRecallSnapshot, a1 as QueryAwarePrefilter, a2 as RecallInvocationOptions, a3 as RecallModeDecision, a4 as appendMemoryToGraphContext, a5 as applyQueryAwareCandidateFilter, a6 as blendGraphExpandedRecallScore, a7 as buildCompressionGuidelinesMarkdown, a8 as buildMemoryPathById, a9 as computeArtifactCandidateFetchLimit, aa as computeArtifactRecallLimit, ab as computeQmdHybridFetchLimit, t as defaultWorkspaceDir, ac as deriveTopicsFromExtraction, ad as filterHourlySummaryMarkdownForLocalDay, ae as filterRecallCandidates, af as formatDateInTimeZone, ag as graphPathRelativeToStorage, ah as hasIdentityRecoveryIntent, ai as isArtifactMemoryPath, aj as lifecycleRecallScoreAdjustment, ak as mapRecallSourceToXrayServedBy, al as mergeArtifactRecallCandidates, am as mergeGraphExpandedResults, an as normalizeIanaTimeZone, ao as parseFiniteDate, ap as parseGraphRecallRankedResults, aq as parseMemoryIntentSnapshot, ar as parseQmdRecallResults, as as qmdStartupCollectionCheckWithTimeout, at as raceRecallAbort, au as resolveEffectiveIdentityInjectionMode, av as resolveEffectiveRecallMode, aw as resolvePersistedMemoryRelativePath, ax as resolveRecallModeDecision, ay as resolveRecallModeDecisionAsync, az as resolveRecentThreadMemoryPaths, F as sanitizeSessionKeyForFilename, aA as shouldFilterLifecycleRecallCandidate, aB as splitTurnsBySourceValidAt, aC as summarizeGraphShadowComparison, aD as targetSourceValidAtSortMs, aE as throwIfRecallAborted, aF as tokenizeRecallQuery, aG as utcDateKeysForLocalDay } from './orchestrator-BzXGNHco.js';
|
|
12
12
|
export { formatCompressionGuidelinesForRecall } from './orchestration/compression-guideline-coordinator.js';
|
|
13
13
|
import './live-connectors-runner.js';
|
|
14
14
|
import './model-registry.js';
|
|
@@ -23,7 +23,6 @@ import './replay/types.js';
|
|
|
23
23
|
import './types-DDUDgd7T.js';
|
|
24
24
|
import './lcm/engine.js';
|
|
25
25
|
import './semantic-consolidation-BTShF2Fo.js';
|
|
26
|
-
import './conversation-index/backend.js';
|
|
27
26
|
import './catalog-9WanSGtt.js';
|
|
28
27
|
import './namespaces/search.js';
|
|
29
28
|
import './shared-context/manager.js';
|
|
@@ -59,6 +58,7 @@ import './work-product-ledger.js';
|
|
|
59
58
|
import './trust-score-stage.js';
|
|
60
59
|
import './trust-score.js';
|
|
61
60
|
import './conversation-index/chunker.js';
|
|
61
|
+
import './conversation-index/backend.js';
|
|
62
62
|
import './faiss-adapter-BHecI1fF.js';
|
|
63
63
|
import './runtime/child-process.js';
|
|
64
64
|
import './capabilities.js';
|
package/dist/orchestrator.js
CHANGED
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
throwIfRecallAborted,
|
|
44
44
|
tokenizeRecallQuery,
|
|
45
45
|
utcDateKeysForLocalDay
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-OP47QBUR.js";
|
|
47
47
|
import "./chunk-J3XHPFEU.js";
|
|
48
48
|
import "./chunk-JODHPNLN.js";
|
|
49
49
|
import "./chunk-I74SUMNI.js";
|
|
@@ -125,7 +125,7 @@ import "./chunk-Q6IP2ARR.js";
|
|
|
125
125
|
import "./chunk-6HEM6HTQ.js";
|
|
126
126
|
import "./chunk-O2EL7EGG.js";
|
|
127
127
|
import "./chunk-FVTLSFWU.js";
|
|
128
|
-
import "./chunk-
|
|
128
|
+
import "./chunk-I7PEZK2A.js";
|
|
129
129
|
import "./chunk-MMACM5G2.js";
|
|
130
130
|
import "./chunk-54BGIBCR.js";
|
|
131
131
|
import "./chunk-H4CKS5B2.js";
|
|
@@ -169,7 +169,7 @@ import "./chunk-GQGDRLDM.js";
|
|
|
169
169
|
import "./chunk-SFQ6QNL7.js";
|
|
170
170
|
import "./chunk-3T74IZB3.js";
|
|
171
171
|
import "./chunk-33JBK2XP.js";
|
|
172
|
-
import "./chunk-
|
|
172
|
+
import "./chunk-U4CWMKN6.js";
|
|
173
173
|
import "./chunk-VHJARF5R.js";
|
|
174
174
|
import "./chunk-JZKR6ZAV.js";
|
|
175
175
|
import "./chunk-23G3T2Q5.js";
|
|
@@ -216,7 +216,7 @@ import "./chunk-G6NKALRN.js";
|
|
|
216
216
|
import "./chunk-OO42R444.js";
|
|
217
217
|
import "./chunk-K6MV3TRQ.js";
|
|
218
218
|
import "./chunk-OADWQ5CR.js";
|
|
219
|
-
import "./chunk-
|
|
219
|
+
import "./chunk-KD6PBCXP.js";
|
|
220
220
|
import "./chunk-V7IZKJI3.js";
|
|
221
221
|
import "./chunk-SEDEKFYQ.js";
|
|
222
222
|
import "./chunk-RKNJBZ55.js";
|
|
@@ -225,13 +225,13 @@ import "./chunk-RSUYKGGZ.js";
|
|
|
225
225
|
import "./chunk-42NQ7AVG.js";
|
|
226
226
|
import "./chunk-TMSXWOBZ.js";
|
|
227
227
|
import "./chunk-7RXCMVFQ.js";
|
|
228
|
-
import "./chunk-
|
|
228
|
+
import "./chunk-L6NW2XSU.js";
|
|
229
229
|
import "./chunk-IC2TCZJ2.js";
|
|
230
230
|
import "./chunk-D24OXEPB.js";
|
|
231
231
|
import "./chunk-5RUE3GHQ.js";
|
|
232
|
-
import "./chunk-
|
|
232
|
+
import "./chunk-D3YEDDCC.js";
|
|
233
233
|
import "./chunk-UPSAT4PY.js";
|
|
234
|
-
import "./chunk-
|
|
234
|
+
import "./chunk-KJ3QGI63.js";
|
|
235
235
|
import "./chunk-HLTAPHZZ.js";
|
|
236
236
|
import "./chunk-YF6FMLBT.js";
|
|
237
237
|
import "./chunk-KQDNAXOM.js";
|
|
@@ -239,9 +239,9 @@ import "./chunk-PRTA6444.js";
|
|
|
239
239
|
import "./chunk-35NN3ZFA.js";
|
|
240
240
|
import "./chunk-FTYDWKO6.js";
|
|
241
241
|
import "./chunk-T4WDJPEZ.js";
|
|
242
|
-
import "./chunk-
|
|
242
|
+
import "./chunk-RSS3CZV7.js";
|
|
243
243
|
import "./chunk-D7FOKIY5.js";
|
|
244
|
-
import "./chunk-
|
|
244
|
+
import "./chunk-ZZYLM6KQ.js";
|
|
245
245
|
import "./chunk-GDASG7NC.js";
|
|
246
246
|
import "./chunk-GDB4J2H3.js";
|
|
247
247
|
import "./chunk-CYWCKFCL.js";
|