@xdarkicex/openclaw-memory-libravdb 1.9.10-beta.4 → 1.9.10-beta.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/context-engine.js +1 -1
- package/dist/index.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/context-engine.js
CHANGED
|
@@ -1770,7 +1770,7 @@ export function buildContextEngineFactory(runtime, cfg, logger = console) {
|
|
|
1770
1770
|
btLog(`BeforeTurnKernel skipped: non-interactive trigger sessionId=${sessionId}`);
|
|
1771
1771
|
}
|
|
1772
1772
|
else {
|
|
1773
|
-
beforeTurnQueryHint = extractQueryHint(messages, (text) => typeof text === "string" ? text
|
|
1773
|
+
beforeTurnQueryHint = extractQueryHint(messages, (text) => typeof text === "string" ? stripOpenClawUntrustedMetadataEnvelope(text).trim() : text);
|
|
1774
1774
|
if (!beforeTurnQueryHint) {
|
|
1775
1775
|
btLog(`BeforeTurnKernel skipped: no query hint extracted sessionId=${sessionId}`);
|
|
1776
1776
|
}
|
package/dist/index.js
CHANGED
|
@@ -36997,7 +36997,7 @@ function buildContextEngineFactory(runtime, cfg, logger = console) {
|
|
|
36997
36997
|
} else {
|
|
36998
36998
|
beforeTurnQueryHint = extractQueryHint(
|
|
36999
36999
|
messages,
|
|
37000
|
-
(text) => typeof text === "string" ? text
|
|
37000
|
+
(text) => typeof text === "string" ? stripOpenClawUntrustedMetadataEnvelope(text).trim() : text
|
|
37001
37001
|
);
|
|
37002
37002
|
if (!beforeTurnQueryHint) {
|
|
37003
37003
|
btLog(`BeforeTurnKernel skipped: no query hint extracted sessionId=${sessionId}`);
|
package/openclaw.plugin.json
CHANGED