@langchain/langgraph 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -243,7 +243,7 @@ Is there anything else you'd like to know about the weather in New York or any o
243
243
  - [Tutorials](https://langchain-ai.github.io/langgraphjs/tutorials/): Learn to build with LangGraph through guided examples.
244
244
  - [How-to Guides](https://langchain-ai.github.io/langgraphjs/how-tos/): Accomplish specific things within LangGraph, from streaming, to adding memory & persistence, to common design patterns (branching, subgraphs, etc.). These are the place to go if you want to copy and run a specific code snippet.
245
245
  - [Conceptual Guides](https://langchain-ai.github.io/langgraphjs/concepts/): In-depth explanations of the key concepts and principles behind LangGraph, such as nodes, edges, state and more.
246
- - [API Reference](https://langchain-ai.github.io/langgraphjs/reference/graphs/): Review important classes and methods, simple examples of how to use the graph and checkpointing APIs, higher-level prebuilt components and more.
246
+ - [API Reference](https://langchain-ai.github.io/langgraphjs/reference/): Review important classes and methods, simple examples of how to use the graph and checkpointing APIs, higher-level prebuilt components and more.
247
247
 
248
248
  ## Running Example Jupyter Notebooks
249
249
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "LangGraph",
5
5
  "type": "module",
6
6
  "engines": {
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "scripts": {
16
16
  "build": "yarn turbo:command build:internal --filter=@langchain/langgraph",
17
- "build:internal": "yarn lc_build_v2 --create-entrypoints --pre --tree-shaking",
17
+ "build:internal": "yarn lc_build --create-entrypoints --pre --tree-shaking",
18
18
  "lint:eslint": "NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/",
19
19
  "lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
20
20
  "lint": "yarn lint:eslint && yarn lint:dpdm",
@@ -31,8 +31,8 @@
31
31
  "license": "MIT",
32
32
  "dependencies": {
33
33
  "@langchain/core": ">=0.2.20 <0.3.0",
34
- "@langchain/langgraph-checkpoint": "0.0.0",
35
- "@langchain/langgraph-checkpoint-sqlite": "0.0.0",
34
+ "@langchain/langgraph-checkpoint": "~0.0.1",
35
+ "@langchain/langgraph-checkpoint-sqlite": "~0.0.1",
36
36
  "double-ended-queue": "^2.1.0-0",
37
37
  "uuid": "^10.0.0",
38
38
  "zod": "^3.23.8"
@@ -50,7 +50,7 @@
50
50
  "@langchain/anthropic": "^0.2.12",
51
51
  "@langchain/community": "^0.2.25",
52
52
  "@langchain/openai": "^0.2.4",
53
- "@langchain/scripts": "^0.0.23",
53
+ "@langchain/scripts": ">=0.1.0 <0.2.0",
54
54
  "@swc/core": "^1.3.90",
55
55
  "@swc/jest": "^0.2.29",
56
56
  "@tsconfig/recommended": "^1.0.3",