Skip to content

Commit

Permalink
release(langgraph): 0.2.27 (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 authored Dec 6, 2024
1 parent bbde3ed commit c713acd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libs/langgraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/langgraph",
"version": "0.2.26",
"version": "0.2.27",
"description": "LangGraph",
"type": "module",
"engines": {
Expand Down
5 changes: 2 additions & 3 deletions libs/langgraph/src/tests/pregel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import {
uuid5,
uuid6,
} from "@langchain/langgraph-checkpoint";
import { SqliteSaver } from "@langchain/langgraph-checkpoint-sqlite";
import {
_AnyIdAIMessage,
_AnyIdAIMessageChunk,
Expand Down Expand Up @@ -4455,7 +4454,7 @@ export function runPregelTests(
market: "US",
});

const checkpointer = SqliteSaver.fromConnString(":memory:");
const checkpointer = await createCheckpointer();
graph = builder.compile({ checkpointer });

const config = { configurable: { thread_id: "10" } };
Expand Down Expand Up @@ -4809,7 +4808,7 @@ export function runPregelTests(
});

const toolTwoWithCheckpointer = toolTwoBuilder.compile({
checkpointer: SqliteSaver.fromConnString(":memory:"),
checkpointer: await createCheckpointer(),
interruptBefore: ["tool_two_fast", "tool_two_slow"],
});

Expand Down

0 comments on commit c713acd

Please sign in to comment.