@joshuaswarren/openclaw-engram 9.1.4 → 9.1.6
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-cli.js
CHANGED
|
@@ -28570,8 +28570,15 @@ var EngramAccessService = class {
|
|
|
28570
28570
|
content: m.content,
|
|
28571
28571
|
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
28572
28572
|
}));
|
|
28573
|
-
|
|
28574
|
-
|
|
28573
|
+
try {
|
|
28574
|
+
const extractionPromise = this.orchestrator.ingestReplayBatch(turns);
|
|
28575
|
+
extractionPromise.catch((err) => {
|
|
28576
|
+
log.error(`access-observe background extraction failed: ${err}`);
|
|
28577
|
+
});
|
|
28578
|
+
extractionQueued = true;
|
|
28579
|
+
} catch (err) {
|
|
28580
|
+
log.error(`access-observe extraction enqueue failed: ${err}`);
|
|
28581
|
+
}
|
|
28575
28582
|
}
|
|
28576
28583
|
log.info(
|
|
28577
28584
|
`access-observe namespace=${namespace} sessionKey=${request.sessionKey} messages=${request.messages.length} lcm=${lcmArchived} extraction=${extractionQueued}`
|
|
@@ -28719,4 +28726,4 @@ export {
|
|
|
28719
28726
|
EngramAccessInputError,
|
|
28720
28727
|
EngramAccessService
|
|
28721
28728
|
};
|
|
28722
|
-
//# sourceMappingURL=chunk-
|
|
28729
|
+
//# sourceMappingURL=chunk-HPTDE747.js.map
|