@remnic/plugin-openclaw 9.45.3 → 9.45.5
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/index.js +2 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -7743,7 +7743,7 @@ Keep the reflection grounded in the evidence below.
|
|
|
7743
7743
|
});
|
|
7744
7744
|
const activeRecallEngine = createActiveRecallEngine(
|
|
7745
7745
|
{
|
|
7746
|
-
recall: async (query, sessionKey) => orchestrator.recall(query, sessionKey),
|
|
7746
|
+
recall: async (query, sessionKey) => orchestrator.recall(query, sessionKey, { sourceConnector: "openclaw" }),
|
|
7747
7747
|
getLastRecallSnapshot: (sessionKey) => orchestrator.getLastRecall(sessionKey),
|
|
7748
7748
|
explainLastRecall: cfg.activeRecallAttachRecallExplain === true ? async () => await orchestrator.recallIntrospection.explainLastQmdRecall().catch(() => null) : void 0
|
|
7749
7749
|
},
|
|
@@ -8512,6 +8512,7 @@ Keep the reflection grounded in the evidence below.
|
|
|
8512
8512
|
).catch(() => []);
|
|
8513
8513
|
let recallComposition;
|
|
8514
8514
|
const context = await orchestrator.recall(prompt, sessionKey, {
|
|
8515
|
+
sourceConnector: "openclaw",
|
|
8515
8516
|
onContextComposition: (composition) => {
|
|
8516
8517
|
recallComposition = composition;
|
|
8517
8518
|
}
|