From 0a8ba20f5ff9583951df9d30b5588db2511d8e53 Mon Sep 17 00:00:00 2001 From: Sam Crowder Date: Mon, 30 Jun 2025 19:41:05 -0700 Subject: [PATCH] docs: remove beta flag on self hosted plane (#5288) --- docs/docs/cloud/deployment/self_hosted_control_plane.md | 2 +- docs/docs/cloud/deployment/self_hosted_data_plane.md | 2 +- docs/docs/cloud/reference/cli.md | 4 ++-- docs/docs/concepts/faq.md | 2 +- docs/docs/concepts/langgraph_self_hosted_control_plane.md | 2 +- docs/docs/concepts/langgraph_self_hosted_data_plane.md | 2 +- libs/cli/langgraph_cli/cli.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/docs/cloud/deployment/self_hosted_control_plane.md b/docs/docs/cloud/deployment/self_hosted_control_plane.md index 2211e12f8..0a8575080 100644 --- a/docs/docs/cloud/deployment/self_hosted_control_plane.md +++ b/docs/docs/cloud/deployment/self_hosted_control_plane.md @@ -3,7 +3,7 @@ Before deploying, review the [conceptual guide for the Self-Hosted Control Plane](../../concepts/langgraph_self_hosted_control_plane.md) deployment option. !!! info "Important" - The Self-Hosted Control Plane deployment option is currently in beta stage and requires an [Enterprise](../../concepts/plans.md) plan. + The Self-Hosted Control Plane deployment option requires an [Enterprise](../../concepts/plans.md) plan. ## Prerequisites diff --git a/docs/docs/cloud/deployment/self_hosted_data_plane.md b/docs/docs/cloud/deployment/self_hosted_data_plane.md index df0a658c6..bcb07028c 100644 --- a/docs/docs/cloud/deployment/self_hosted_data_plane.md +++ b/docs/docs/cloud/deployment/self_hosted_data_plane.md @@ -3,7 +3,7 @@ Before deploying, review the [conceptual guide for the Self-Hosted Data Plane](../../concepts/langgraph_self_hosted_data_plane.md) deployment option. !!! info "Important" - The Self-Hosted Data Plane deployment option is currently in beta stage and requires an [Enterprise](../../concepts/plans.md) plan. + The Self-Hosted Data Plane deployment option requires an [Enterprise](../../concepts/plans.md) plan. ## Prerequisites diff --git a/docs/docs/cloud/reference/cli.md b/docs/docs/cloud/reference/cli.md index c33b8ed75..84e5f3f66 100644 --- a/docs/docs/cloud/reference/cli.md +++ b/docs/docs/cloud/reference/cli.md @@ -395,7 +395,7 @@ The LangGraph CLI requires a JSON configuration file that follows this [schema]( === "Python" - Start LangGraph API server. For local testing, requires a LangSmith API key with access to LangGraph Platform closed beta. Requires a license key for production use. + Start LangGraph API server. For local testing, requires a LangSmith API key with access to LangGraph Platform. Requires a license key for production use. **Usage** @@ -422,7 +422,7 @@ The LangGraph CLI requires a JSON configuration file that follows this [schema]( === "JS" - Start LangGraph API server. For local testing, requires a LangSmith API key with access to LangGraph Platform closed beta. Requires a license key for production use. + Start LangGraph API server. For local testing, requires a LangSmith API key with access to LangGraph Platform. Requires a license key for production use. **Usage** diff --git a/docs/docs/concepts/faq.md b/docs/docs/concepts/faq.md index bd1df3a56..9ff68ff9f 100644 --- a/docs/docs/concepts/faq.md +++ b/docs/docs/concepts/faq.md @@ -47,7 +47,7 @@ LangGraph is a stateful, orchestration framework that brings added control to ag No. LangGraph Platform is proprietary software. -There is a free, self-hosted version of LangGraph Platform with access to basic features. The Cloud SaaS deployment option is free while in beta, but will eventually be a paid service. We will always give ample notice before charging for a service and reward our early adopters with preferential pricing. The Self-Hosted deployment options are paid services. [Contact our sales team](https://www.langchain.com/contact-sales) to learn more. +There is a free, self-hosted version of LangGraph Platform with access to basic features. The Cloud SaaS deployment option and the Self-Hosted deployment options are paid services. [Contact our sales team](https://www.langchain.com/contact-sales) to learn more. For more information, see our [LangGraph Platform pricing page](https://www.langchain.com/pricing-langgraph-platform). diff --git a/docs/docs/concepts/langgraph_self_hosted_control_plane.md b/docs/docs/concepts/langgraph_self_hosted_control_plane.md index 7434072ce..02fef232d 100644 --- a/docs/docs/concepts/langgraph_self_hosted_control_plane.md +++ b/docs/docs/concepts/langgraph_self_hosted_control_plane.md @@ -3,7 +3,7 @@ There are two versions of the self-hosted deployment: [Self-Hosted Data Plane](./deployment_options.md#self-hosted-data-plane) and [Self-Hosted Control Plane](./deployment_options.md#self-hosted-control-plane). !!! info "Important" - The Self-Hosted Control Plane deployment option is currently in beta stage and requires an [Enterprise](plans.md) plan. + The Self-Hosted Control Plane deployment option requires an [Enterprise](plans.md) plan. ## Requirements diff --git a/docs/docs/concepts/langgraph_self_hosted_data_plane.md b/docs/docs/concepts/langgraph_self_hosted_data_plane.md index 710e58018..15c91ef27 100644 --- a/docs/docs/concepts/langgraph_self_hosted_data_plane.md +++ b/docs/docs/concepts/langgraph_self_hosted_data_plane.md @@ -8,7 +8,7 @@ search: There are two versions of the self-hosted deployment: [Self-Hosted Data Plane](./deployment_options.md#self-hosted-data-plane) and [Self-Hosted Control Plane](./deployment_options.md#self-hosted-control-plane). !!! info "Important" - The Self-Hosted Data Plane deployment option is currently in beta stage and requires an [Enterprise](plans.md) plan. + The Self-Hosted Data Plane deployment option requires an [Enterprise](plans.md) plan. ## Requirements diff --git a/libs/cli/langgraph_cli/cli.py b/libs/cli/langgraph_cli/cli.py index c968f33bc..91980d3ae 100644 --- a/libs/cli/langgraph_cli/cli.py +++ b/libs/cli/langgraph_cli/cli.py @@ -208,7 +208,7 @@ def up( ): click.secho("Starting LangGraph API server...", fg="green") click.secho( - """For local dev, requires env var LANGSMITH_API_KEY with access to LangGraph Platform closed beta. + """For local dev, requires env var LANGSMITH_API_KEY with access to LangGraph Platform. For production use, requires a license key in env var LANGGRAPH_CLOUD_LICENSE_KEY.""", ) with Runner() as runner, Progress(message="Pulling...") as set: