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.
- package/package.json +1 -1
- package/upload.ts +2 -1
package/package.json
CHANGED
package/upload.ts
CHANGED
|
@@ -402,7 +402,8 @@ export async function runUpload(params: {
|
|
|
402
402
|
return;
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
|
|
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;
|