@langchain/core 0.2.13 → 0.2.14

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.
@@ -88,12 +88,12 @@ function drawMermaid(nodes, edges, config) {
88
88
  return acc;
89
89
  }, [])
90
90
  .join("<br>");
91
- if (edge.conditional) {
92
- edgeLabel = ` -. ${edgeData} .-> `;
93
- }
94
- else {
95
- edgeLabel = ` -- ${edgeData} --> `;
96
- }
91
+ }
92
+ if (edge.conditional) {
93
+ edgeLabel = ` -. ${edgeData} .-> `;
94
+ }
95
+ else {
96
+ edgeLabel = ` -- ${edgeData} --> `;
97
97
  }
98
98
  }
99
99
  else {
@@ -85,12 +85,12 @@ export function drawMermaid(nodes, edges, config) {
85
85
  return acc;
86
86
  }, [])
87
87
  .join("<br>");
88
- if (edge.conditional) {
89
- edgeLabel = ` -. ${edgeData} .-> `;
90
- }
91
- else {
92
- edgeLabel = ` -- ${edgeData} --> `;
93
- }
88
+ }
89
+ if (edge.conditional) {
90
+ edgeLabel = ` -. ${edgeData} .-> `;
91
+ }
92
+ else {
93
+ edgeLabel = ` -- ${edgeData} --> `;
94
94
  }
95
95
  }
96
96
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/core",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "Core LangChain.js abstractions and schemas",
5
5
  "type": "module",
6
6
  "engines": {
@@ -50,7 +50,7 @@
50
50
  "mustache": "^4.2.0",
51
51
  "p-queue": "^6.6.2",
52
52
  "p-retry": "4",
53
- "uuid": "^9.0.0",
53
+ "uuid": "^10.0.0",
54
54
  "zod": "^3.22.4",
55
55
  "zod-to-json-schema": "^3.22.3"
56
56
  },