@langchain/langgraph 0.2.30 → 0.2.31
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/pregel/loop.cjs +3 -0
- package/dist/pregel/loop.js +3 -0
- package/package.json +2 -2
package/dist/pregel/loop.cjs
CHANGED
|
@@ -418,6 +418,9 @@ class PregelLoop {
|
|
|
418
418
|
this.checkpointPendingWrites.push([taskId, c, v]);
|
|
419
419
|
}
|
|
420
420
|
}
|
|
421
|
+
else {
|
|
422
|
+
this.checkpointPendingWrites.push([taskId, c, v]);
|
|
423
|
+
}
|
|
421
424
|
}
|
|
422
425
|
const putWritePromise = this.checkpointer?.putWrites({
|
|
423
426
|
...this.checkpointConfig,
|
package/dist/pregel/loop.js
CHANGED
|
@@ -414,6 +414,9 @@ export class PregelLoop {
|
|
|
414
414
|
this.checkpointPendingWrites.push([taskId, c, v]);
|
|
415
415
|
}
|
|
416
416
|
}
|
|
417
|
+
else {
|
|
418
|
+
this.checkpointPendingWrites.push([taskId, c, v]);
|
|
419
|
+
}
|
|
417
420
|
}
|
|
418
421
|
const putWritePromise = this.checkpointer?.putWrites({
|
|
419
422
|
...this.checkpointConfig,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/langgraph",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.31",
|
|
4
4
|
"description": "LangGraph",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"author": "LangChain",
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@langchain/langgraph-checkpoint": "~0.0.
|
|
34
|
+
"@langchain/langgraph-checkpoint": "~0.0.13",
|
|
35
35
|
"@langchain/langgraph-sdk": "~0.0.21",
|
|
36
36
|
"uuid": "^10.0.0",
|
|
37
37
|
"zod": "^3.23.8"
|