mr-memory 2.18.1 → 2.18.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/upload.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mr-memory",
3
- "version": "2.18.1",
3
+ "version": "2.18.3",
4
4
  "description": "MemoryRouter persistent memory plugin for OpenClaw — your AI remembers every conversation",
5
5
  "type": "module",
6
6
  "files": [
package/upload.ts CHANGED
@@ -402,7 +402,8 @@ export async function runUpload(params: {
402
402
  return;
403
403
  }
404
404
 
405
- console.log(`Uploading ${files.length} files to MemoryRouter...`);
405
+ const modelLabel = embeddings ? `(model: ${embeddings})` : "(model: bge)";
406
+ console.log(`Uploading ${files.length} files to MemoryRouter ${modelLabel}...`);
406
407
 
407
408
  const allLines: MemoryLine[] = [];
408
409
  let skippedEmpty = 0;