diff --git a/docs/docs/cloud/deployment/setup.md b/docs/docs/cloud/deployment/setup.md index 4688a6abd..dff3bdbb8 100644 --- a/docs/docs/cloud/deployment/setup.md +++ b/docs/docs/cloud/deployment/setup.md @@ -19,6 +19,24 @@ After each step, an example file directory is provided to demonstrate how code c Dependencies can optionally be specified in one of the following files: `pyproject.toml`, `setup.py`, or `requirements.txt`. If none of these files is created, then dependencies can be specified later in the [LangGraph API configuration file](#create-langgraph-api-config). +Constraints: +``` +langgraph>=0.1.7 +langchain-core>=0.2.7 +orjson>=3.10.1 +langsmith>=0.1.50 +httpx>=0.27.0 +langchain-core>=0.2.8 +langsmith>=0.1.63 +tenacity>=8.3.0 +uvicorn>=0.29.0 +sse-starlette>=2.1.0 +uvloop>=0.19.0 +httptools>=0.6.1 +jsonschema-rs>=0.18.0 +croniter>=1.0.1 +``` + Example `requirements.txt` file: ``` langgraph diff --git a/docs/docs/cloud/deployment/setup_pyproject.md b/docs/docs/cloud/deployment/setup_pyproject.md index 875abed3b..f2c499fbc 100644 --- a/docs/docs/cloud/deployment/setup_pyproject.md +++ b/docs/docs/cloud/deployment/setup_pyproject.md @@ -20,6 +20,24 @@ After each step, an example file directory is provided to demonstrate how code c Dependencies can optionally be specified in one of the following files: `pyproject.toml`, `setup.py`, or `requirements.txt`. If none of these files is created, then dependencies can be specified later in the [LangGraph API configuration file](#create-langgraph-api-config). +Constraints: +``` +langgraph>=0.1.7 +langchain-core>=0.2.7 +orjson>=3.10.1 +langsmith>=0.1.50 +httpx>=0.27.0 +langchain-core>=0.2.8 +langsmith>=0.1.63 +tenacity>=8.3.0 +uvicorn>=0.29.0 +sse-starlette>=2.1.0 +uvloop>=0.19.0 +httptools>=0.6.1 +jsonschema-rs>=0.18.0 +croniter>=1.0.1 +``` + Example `pyproject.toml` file: ```toml @@ -33,7 +51,7 @@ readme = "README.md" [tool.poetry.dependencies] python = ">=3.9.0,<3.13" -langgraph = "^0.1.0" +langgraph = "^0.1.7" langchain-fireworks = "^0.1.3"