diff --git a/docs/docs/cloud/deployment/setup.md b/docs/docs/cloud/deployment/setup.md index c1e0359ee..42e956e70 100644 --- a/docs/docs/cloud/deployment/setup.md +++ b/docs/docs/cloud/deployment/setup.md @@ -36,8 +36,8 @@ Dependencies can optionally be specified in one of the following files: `pyproje The dependencies below will be included in the image, you can also use them in your code, as long as with a compatible version range: ``` -langgraph>=0.2.30,<0.3.0 -langgraph-checkpoint>=1.0.14 +langgraph>=0.2.56,<0.3.0 +langgraph-checkpoint>=2.0.5,<3.0 langchain-core>=0.2.38,<0.4.0 langsmith>=0.1.63 orjson>=3.9.7 diff --git a/docs/docs/cloud/deployment/setup_pyproject.md b/docs/docs/cloud/deployment/setup_pyproject.md index 09e1a4975..ccb02a79d 100644 --- a/docs/docs/cloud/deployment/setup_pyproject.md +++ b/docs/docs/cloud/deployment/setup_pyproject.md @@ -36,8 +36,8 @@ Dependencies can optionally be specified in one of the following files: `pyproje The dependencies below will be included in the image, you can also use them in your code, as long as with a compatible version range: ``` -langgraph>=0.2.30,<0.3.0 -langgraph-checkpoint>=1.0.14 +langgraph>=0.2.56,<0.3.0 +langgraph-checkpoint>=2.0.5,<3.0 langchain-core>=0.2.38,<0.4.0 langsmith>=0.1.63 orjson>=3.9.7 diff --git a/docs/docs/cloud/reference/cli.md b/docs/docs/cloud/reference/cli.md index 914611ffe..6503fb583 100644 --- a/docs/docs/cloud/reference/cli.md +++ b/docs/docs/cloud/reference/cli.md @@ -134,6 +134,11 @@ langgraph [OPTIONS] COMMAND [ARGS] Run LangGraph API server in development mode with hot reloading and debugging capabilities. This lightweight server requires no Docker installation and is suitable for development and testing. State is persisted to a local directory. +!!! note "Python only" + + Currently, the CLI only supports Python >= 3.11. + JS support is coming soon. + **Installation** This command requires the "inmem" extra to be installed: diff --git a/docs/docs/concepts/langgraph_cli.md b/docs/docs/concepts/langgraph_cli.md index 0b930b45b..a302eb622 100644 --- a/docs/docs/concepts/langgraph_cli.md +++ b/docs/docs/concepts/langgraph_cli.md @@ -33,6 +33,11 @@ The `langgraph build` command builds a Docker image for the [LangGraph API serve !!! note "New in version 0.1.55" The `langgraph dev` command was introduced in langgraph-cli version 0.1.55. +!!! note "Python only" + + Currently, the CLI only supports Python >= 3.11. + JS support is coming soon. + The `langgraph dev` command starts a lightweight development server that requires no Docker installation. This server is ideal for rapid development and testing, with features like: - Hot reloading: Changes to your code are automatically detected and reloaded