From 3224f2d928daeb698ed696239788b788857e0582 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Tue, 23 Sep 2025 18:34:49 -0400 Subject: [PATCH 1/3] nits --- src/docs.json | 4 ++-- src/langgraph-platform/deploy-hybrid.mdx | 2 +- src/langgraph-platform/deploy-self-hosted-full-platform.mdx | 2 +- src/langgraph-platform/deploy-standalone-server.mdx | 2 +- src/langgraph-platform/deploy-to-cloud.mdx | 2 +- src/langgraph-platform/setup-app-requirements-txt.mdx | 2 +- src/langgraph-platform/setup-pyproject.mdx | 2 +- src/langgraph-platform/use-remote-graph.mdx | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/docs.json b/src/docs.json index 13434b036..dc3f49fe5 100644 --- a/src/docs.json +++ b/src/docs.json @@ -573,7 +573,7 @@ ] }, { - "group": "Configure your application for deployment", + "group": "Configure app for deployment", "pages": [ "langgraph-platform/setup-app-requirements-txt", "langgraph-platform/setup-pyproject", @@ -1628,7 +1628,7 @@ ] }, { - "group": "Configure your application for deployment", + "group": "Configure app for deployment", "pages": [ "langgraph-platform/setup-app-requirements-txt", "langgraph-platform/setup-pyproject", diff --git a/src/langgraph-platform/deploy-hybrid.mdx b/src/langgraph-platform/deploy-hybrid.mdx index 44e573fe0..94d532365 100644 --- a/src/langgraph-platform/deploy-hybrid.mdx +++ b/src/langgraph-platform/deploy-hybrid.mdx @@ -1,6 +1,6 @@ --- title: How to deploy hybrid -sidebarTitle: Deploy hybrid +sidebarTitle: Hybrid delpoyment --- Before deploying, review the [conceptual guide for the Hybrid](/langgraph-platform/hybrid) deployment option. diff --git a/src/langgraph-platform/deploy-self-hosted-full-platform.mdx b/src/langgraph-platform/deploy-self-hosted-full-platform.mdx index 84436a949..bb2b2e3d7 100644 --- a/src/langgraph-platform/deploy-self-hosted-full-platform.mdx +++ b/src/langgraph-platform/deploy-self-hosted-full-platform.mdx @@ -1,6 +1,6 @@ --- title: How to deploy self-hosted full platform -sidebarTitle: Deploy self-hosted full platform +sidebarTitle: Self-hosted full platform --- Before deploying, review the [conceptual guide for the Self-Hosted Full Platform](/langgraph-platform/self-hosted) deployment option. diff --git a/src/langgraph-platform/deploy-standalone-server.mdx b/src/langgraph-platform/deploy-standalone-server.mdx index 8695b61d2..7ebb62f4a 100644 --- a/src/langgraph-platform/deploy-standalone-server.mdx +++ b/src/langgraph-platform/deploy-standalone-server.mdx @@ -1,6 +1,6 @@ --- title: How to deploy self-hosted standalone server -sidebarTitle: Deploy self-hosted standalone server +sidebarTitle: Self-hosted standalone server --- Before deploying, review the [conceptual guide for the Standalone Server](/langgraph-platform/self-hosted#standalone-server) deployment option. diff --git a/src/langgraph-platform/deploy-to-cloud.mdx b/src/langgraph-platform/deploy-to-cloud.mdx index 3b6b96646..b857cd320 100644 --- a/src/langgraph-platform/deploy-to-cloud.mdx +++ b/src/langgraph-platform/deploy-to-cloud.mdx @@ -1,6 +1,6 @@ --- title: How to deploy to cloud -sidebarTitle: Deploy to cloud +sidebarTitle: Cloud deployment --- Before deploying, review the [conceptual guide for the Cloud](/langgraph-platform/cloud) deployment option. diff --git a/src/langgraph-platform/setup-app-requirements-txt.mdx b/src/langgraph-platform/setup-app-requirements-txt.mdx index 08f121c92..67d99b841 100644 --- a/src/langgraph-platform/setup-app-requirements-txt.mdx +++ b/src/langgraph-platform/setup-app-requirements-txt.mdx @@ -1,6 +1,6 @@ --- title: How to set up a LangGraph application with requirements.txt -sidebarTitle: Set up a LangGraph application with requirements.txt +sidebarTitle: With requirements.txt --- A LangGraph application must be configured with a [LangGraph configuration file](/langgraph-platform/cli#configuration-file) in order to be deployed to LangGraph Platform (or to be self-hosted). This how-to guide discusses the basic steps to setup a LangGraph application for deployment using `requirements.txt` to specify project dependencies. diff --git a/src/langgraph-platform/setup-pyproject.mdx b/src/langgraph-platform/setup-pyproject.mdx index f090c8f5f..892d462dc 100644 --- a/src/langgraph-platform/setup-pyproject.mdx +++ b/src/langgraph-platform/setup-pyproject.mdx @@ -1,6 +1,6 @@ --- title: How to set up a LangGraph application with pyproject.toml -sidebarTitle: Set up a LangGraph application with pyproject.toml +sidebarTitle: With pyproject.toml --- A LangGraph application must be configured with a [LangGraph configuration file](/langgraph-platform/cli#configuration-file) in order to be deployed to LangGraph Platform (or to be self-hosted). This how-to guide discusses the basic steps to setup a LangGraph application for deployment using `pyproject.toml` to define your package's dependencies. diff --git a/src/langgraph-platform/use-remote-graph.mdx b/src/langgraph-platform/use-remote-graph.mdx index 7554fd301..05026f785 100644 --- a/src/langgraph-platform/use-remote-graph.mdx +++ b/src/langgraph-platform/use-remote-graph.mdx @@ -1,6 +1,6 @@ --- title: How to interact with a deployment using RemoteGraph -sidebarTitle: Interact with a deployment using RemoteGraph +sidebarTitle: Interact using RemoteGraph --- [`RemoteGraph`](https://langchain-ai.github.io/langgraph/reference/remote_graph) is a client-side interface that allows you to interact with your [deployment](/langgraph-platform/deployment-options) as if it were a local graph. It provides API parity with [`CompiledGraph`](/oss/langgraph/graph-api#compiling-your-graph), which means that you can use the same methods (`invoke()`, `stream()`, `get_state()`, etc.) in your development and production environments. This page describes how to initialize a `RemoteGraph` and interact with it. From 6947860fac6a29e7ce5fe5974bd4463c76c63203 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Tue, 23 Sep 2025 23:50:31 -0400 Subject: [PATCH 2/3] Update src/langgraph-platform/deploy-hybrid.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/langgraph-platform/deploy-hybrid.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/langgraph-platform/deploy-hybrid.mdx b/src/langgraph-platform/deploy-hybrid.mdx index 94d532365..722fa160e 100644 --- a/src/langgraph-platform/deploy-hybrid.mdx +++ b/src/langgraph-platform/deploy-hybrid.mdx @@ -1,6 +1,6 @@ --- title: How to deploy hybrid -sidebarTitle: Hybrid delpoyment +sidebarTitle: Hybrid deployment --- Before deploying, review the [conceptual guide for the Hybrid](/langgraph-platform/hybrid) deployment option. From 4f3019a6eea3be0a958354beb5151440ddab2cc8 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Wed, 24 Sep 2025 16:45:59 -0400 Subject: [PATCH 3/3] Update sidebar title for RemoteGraph documentation --- src/langgraph-platform/use-remote-graph.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/langgraph-platform/use-remote-graph.mdx b/src/langgraph-platform/use-remote-graph.mdx index 05026f785..7554fd301 100644 --- a/src/langgraph-platform/use-remote-graph.mdx +++ b/src/langgraph-platform/use-remote-graph.mdx @@ -1,6 +1,6 @@ --- title: How to interact with a deployment using RemoteGraph -sidebarTitle: Interact using RemoteGraph +sidebarTitle: Interact with a deployment using RemoteGraph --- [`RemoteGraph`](https://langchain-ai.github.io/langgraph/reference/remote_graph) is a client-side interface that allows you to interact with your [deployment](/langgraph-platform/deployment-options) as if it were a local graph. It provides API parity with [`CompiledGraph`](/oss/langgraph/graph-api#compiling-your-graph), which means that you can use the same methods (`invoke()`, `stream()`, `get_state()`, etc.) in your development and production environments. This page describes how to initialize a `RemoteGraph` and interact with it.