langchain_agentx_stream_ui 0.1.1 → 0.1.2
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/dist/{chunk-Q4HRD7EM.js → chunk-3B4WC67E.js} +9 -1
- package/dist/chunk-3B4WC67E.js.map +1 -0
- package/dist/{chunk-R35BQYAY.js → chunk-A4W6B7C3.js} +2 -2
- package/dist/default.css +11 -0
- package/dist/index.d.ts +28 -6
- package/dist/index.js +156 -159
- package/dist/index.js.map +1 -1
- package/dist/multi-session.js +2 -2
- package/dist/virtual.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-Q4HRD7EM.js.map +0 -1
- /package/dist/{chunk-R35BQYAY.js.map → chunk-A4W6B7C3.js.map} +0 -0
|
@@ -2324,6 +2324,14 @@ var ExploreCollapseAccumulator = class {
|
|
|
2324
2324
|
}
|
|
2325
2325
|
continue;
|
|
2326
2326
|
}
|
|
2327
|
+
if (entry.payload.canonicalType === "memory_saved") {
|
|
2328
|
+
group = group ?? this.newGroup();
|
|
2329
|
+
const count = Number(entry.payload.count ?? 1);
|
|
2330
|
+
group.memoryWriteCount += Math.max(1, count);
|
|
2331
|
+
group.sourceNodeIds.push(entry.sourceNodeIds[0] ?? "mem");
|
|
2332
|
+
group.absorbed.push(entry);
|
|
2333
|
+
continue;
|
|
2334
|
+
}
|
|
2327
2335
|
if (!isToolUseEntry2(entry)) {
|
|
2328
2336
|
flush();
|
|
2329
2337
|
result.push(entry);
|
|
@@ -5286,4 +5294,4 @@ export {
|
|
|
5286
5294
|
VirtualTimeline,
|
|
5287
5295
|
SessionTimeline
|
|
5288
5296
|
};
|
|
5289
|
-
//# sourceMappingURL=chunk-
|
|
5297
|
+
//# sourceMappingURL=chunk-3B4WC67E.js.map
|