@langchain/core 0.3.70 → 0.3.71-rc.0

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.
@@ -68,6 +68,7 @@ class LangChainTracer extends base_js_1.BaseTracer {
68
68
  return this.runTreeMap.get(id);
69
69
  }
70
70
  updateFromRunTree(runTree) {
71
+ this.runTreeMap.set(runTree.id, runTree);
71
72
  let rootRun = runTree;
72
73
  const visited = new Set();
73
74
  while (rootRun.parent_run) {
@@ -65,6 +65,7 @@ export class LangChainTracer extends BaseTracer {
65
65
  return this.runTreeMap.get(id);
66
66
  }
67
67
  updateFromRunTree(runTree) {
68
+ this.runTreeMap.set(runTree.id, runTree);
68
69
  let rootRun = runTree;
69
70
  const visited = new Set();
70
71
  while (rootRun.parent_run) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/core",
3
- "version": "0.3.70",
3
+ "version": "0.3.71-rc.0",
4
4
  "description": "Core LangChain.js abstractions and schemas",
5
5
  "type": "module",
6
6
  "engines": {