mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-07 18:27:52 +02:00
97 lines
3.4 KiB
Markdown
97 lines
3.4 KiB
Markdown
# Deployment Options
|
||
|
||
!!! info "Prerequisites"
|
||
|
||
- [LangGraph Platform](./langgraph_platform.md)
|
||
- [LangGraph Server](./langgraph_server.md)
|
||
- [LangGraph Platform Plans](./plans.md)
|
||
|
||
## Overview
|
||
|
||
There are 4 main options for deploying with the LangGraph Platform:
|
||
|
||
1. **[Self-Hosted Lite](#self-hosted-lite)**: Available for all plans.
|
||
|
||
2. **[Self-Hosted Enterprise](#self-hosted-enterprise)**: Available for the **Enterprise** plan.
|
||
|
||
3. **[Cloud SaaS](#cloud-saas)**: Available for **Plus** and **Enterprise** plans.
|
||
|
||
4. **[Bring Your Own Cloud](#bring-your-own-cloud)**: Available only for **Enterprise** plans and **only on AWS**.
|
||
|
||
Please see the [LangGraph Platform Plans](./plans.md) for more information on the different plans.
|
||
|
||
The guide below will explain the differences between the deployment options.
|
||
|
||
## Self-Hosted Enterprise
|
||
|
||
!!! important
|
||
|
||
The Self-Hosted Enterprise version is only available for the **Enterprise** plan.
|
||
|
||
With a Self-Hosted Enterprise deployment, you are responsible for managing the infrastructure, including setting up and maintaining required databases and Redis instances.
|
||
|
||
You’ll build a Docker image using the [LangGraph CLI](./langgraph_cli.md), which can then be deployed on your own infrastructure.
|
||
|
||
For more information, please see:
|
||
|
||
* [Self-Hosted conceptual guide](./self_hosted.md)
|
||
* [Self-Hosted Deployment how-to guide](../how-tos/deploy-self-hosted.md)
|
||
|
||
## Self-Hosted Lite
|
||
|
||
!!! important
|
||
|
||
The Self-Hosted Lite version is available for all plans.
|
||
|
||
The Self-Hosted Lite deployment option is a free (up to 1 million nodes executed), limited version of LangGraph Platform that you can run locally or in a self-hosted manner.
|
||
|
||
With a Self-Hosted Lite deployment, you are responsible for managing the infrastructure, including setting up and maintaining required databases and Redis instances.
|
||
|
||
You’ll build a Docker image using the [LangGraph CLI](./langgraph_cli.md), which can then be deployed on your own infrastructure.
|
||
|
||
|
||
For more information, please see:
|
||
|
||
* [Self-Hosted conceptual guide](./self_hosted.md)
|
||
* [Self-Hosted deployment how-to guide](../how-tos/deploy-self-hosted.md)
|
||
|
||
## Cloud SaaS
|
||
|
||
!!! important
|
||
|
||
The Cloud SaaS version of LangGraph Platform is only available for **Plus** and **Enterprise** plans.
|
||
|
||
|
||
The [Cloud SaaS](./langgraph_cloud.md) version of LangGraph Platform is hosted as part of [LangSmith](https://smith.langchain.com/).
|
||
|
||
The Cloud SaaS version of LangGraph Platform provides a simple way to deploy and manage your LangGraph applications.
|
||
|
||
This deployment option provides an integration with GitHub, allowing you to deploy code from any of your repositories on GitHub.
|
||
|
||
For more information, please see:
|
||
|
||
* [Cloud SaaS Conceptual Guide](./langgraph_cloud.md)
|
||
* [How to deploy to Cloud SaaS](../cloud/deployment/cloud.md)
|
||
|
||
|
||
## Bring Your Own Cloud
|
||
|
||
!!! important
|
||
|
||
The Bring Your Own Cloud version of LangGraph Platform is only available for **Enterprise** plans.
|
||
|
||
|
||
This combines the best of both worlds for Cloud and Self-Hosted. We manage the infrastructure, so you don't have to, but the infrastructure all runs within your cloud. This is currently only available on AWS.
|
||
|
||
For more information please see:
|
||
|
||
* [Bring Your Own Cloud Conceptual Guide](./bring_your_own_cloud.md)
|
||
|
||
## Related
|
||
|
||
For more information, please see:
|
||
|
||
* [LangGraph Platform plans](./plans.md)
|
||
* [LangGraph Platform pricing](https://www.langchain.com/langgraph-platform-pricing)
|
||
* [Deployment how-to guides](../how-tos/index.md#deployment)
|