mr-memory 2.9.3 → 2.9.4
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/index.ts +2 -2
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -233,7 +233,7 @@ const memoryRouterPlugin = {
|
|
|
233
233
|
|
|
234
234
|
if (data.context) {
|
|
235
235
|
log(
|
|
236
|
-
`memoryrouter: injected ${data.memories_found || 0} memories (${data.memory_tokens || 0}
|
|
236
|
+
`memoryrouter: injected ${data.memories_found || 0} memories (${data.memory_tokens || 0} tokens)`,
|
|
237
237
|
);
|
|
238
238
|
return { prependContext: wrapForInjection(data.context) };
|
|
239
239
|
}
|
|
@@ -335,7 +335,7 @@ const memoryRouterPlugin = {
|
|
|
335
335
|
|
|
336
336
|
if (data.context) {
|
|
337
337
|
log(
|
|
338
|
-
`memoryrouter: injected ${data.memories_found || 0} memories (${data.memory_tokens || 0}
|
|
338
|
+
`memoryrouter: injected ${data.memories_found || 0} memories (${data.memory_tokens || 0} tokens)`,
|
|
339
339
|
);
|
|
340
340
|
return { prependContext: wrapForInjection(data.context) };
|
|
341
341
|
}
|