@positronic/mem0 0.0.73 → 0.0.75

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.
@@ -161,11 +161,11 @@ import { BRAIN_EVENTS } from '@positronic/core';
161
161
  startEvent = event;
162
162
  existing = buffers.get(brainRunId);
163
163
  if (existing) {
164
- existing.userId = startEvent.currentUser.id;
164
+ existing.userId = startEvent.currentUser.name;
165
165
  } else {
166
166
  buffers.set(brainRunId, {
167
167
  agentId: '',
168
- userId: startEvent.currentUser.id,
168
+ userId: startEvent.currentUser.name,
169
169
  messages: []
170
170
  });
171
171
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@positronic/mem0",
3
- "version": "0.0.73",
3
+ "version": "0.0.75",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -29,6 +29,6 @@
29
29
  "zod": "^3.24.1"
30
30
  },
31
31
  "peerDependencies": {
32
- "@positronic/core": "^0.0.73"
32
+ "@positronic/core": "^0.0.75"
33
33
  }
34
34
  }