@joshuaswarren/openclaw-engram 9.1.7 → 9.1.8

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.
@@ -3,7 +3,7 @@ import {
3
3
  EngramAccessService,
4
4
  Orchestrator,
5
5
  parseConfig
6
- } from "./chunk-Z6PKTPAF.js";
6
+ } from "./chunk-5HN5NZMV.js";
7
7
  import "./chunk-UO4TIAAW.js";
8
8
  import "./chunk-IMMYYNXG.js";
9
9
  import "./chunk-YKWJUR3I.js";
@@ -28810,8 +28810,15 @@ var EngramAccessService = class {
28810
28810
  const lcmSessionKey = namespace !== this.orchestrator.config.defaultNamespace ? `${namespace}:${request.sessionKey}` : request.sessionKey;
28811
28811
  let lcmArchived = false;
28812
28812
  if (this.orchestrator.lcmEngine && this.orchestrator.lcmEngine.enabled) {
28813
- await this.orchestrator.lcmEngine.observeMessages(lcmSessionKey, request.messages);
28814
- lcmArchived = true;
28813
+ try {
28814
+ const lcmPromise = this.orchestrator.lcmEngine.observeMessages(lcmSessionKey, request.messages);
28815
+ lcmPromise.catch((err) => {
28816
+ log.error(`access-observe LCM archival failed: ${err}`);
28817
+ });
28818
+ lcmArchived = true;
28819
+ } catch (err) {
28820
+ log.error(`access-observe LCM enqueue failed: ${err}`);
28821
+ }
28815
28822
  }
28816
28823
  let extractionQueued = false;
28817
28824
  if (request.skipExtraction !== true) {
@@ -28978,4 +28985,4 @@ export {
28978
28985
  EngramAccessInputError,
28979
28986
  EngramAccessService
28980
28987
  };
28981
- //# sourceMappingURL=chunk-Z6PKTPAF.js.map
28988
+ //# sourceMappingURL=chunk-5HN5NZMV.js.map