mr-memory 2.11.4 → 2.11.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/upload.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mr-memory",
3
- "version": "2.11.4",
3
+ "version": "2.11.5",
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
@@ -14,7 +14,7 @@ type MemoryLine = {
14
14
  const MAX_ITEM_CHARS = 8000;
15
15
  const TARGET_CHUNK_CHARS = 4000;
16
16
  const MAX_BATCH_BYTES = 2_000_000;
17
- const MAX_BATCH_COUNT = 100;
17
+ const MAX_BATCH_COUNT = 25;
18
18
  const BATCH_SLEEP_MS = 150;
19
19
  const MAX_HTTP_RETRIES = 3;
20
20