Skip to content

Commit 2fb8ef9

Browse files
chore: update standalone docs (#3582)
## Overview state that standalone is production ready ## Type of change **Type:** [Replace with: New documentation page / Update existing documentation / Fix typo/bug/link/formatting / Remove outdated content / Other] ## Related issues/PRs <!-- Link to related issues, feature PRs, or discussions (if applicable) To automatically close an issue when this PR is merged, use closing keywords: - "closes #123" or "fixes #123" or "resolves #123" For regular references without auto-closing, just use: - "#123" or "See issue #123" Examples: - closes #456 (will auto-close issue #456 when PR is merged) - See #789 for context (will reference but not auto-close issue #789) --> - GitHub issue: - Feature PR: <!-- For LangChain employees, if applicable: --> - Linear issue: - Slack thread: ## Checklist <!-- Put an 'x' in all boxes that apply --> - [ ] I have read the [contributing guidelines](README.md), including the [language policy](https://docs.langchain.com/oss/python/contributing/overview#language-policy) - [ ] I have tested my changes locally using `docs dev` - [ ] All code examples have been tested and work correctly - [ ] I have used **root relative** paths for internal links - [ ] I have updated navigation in `src/docs.json` if needed (Internal team members only / optional): Create a preview deployment as necessary using the [Create Preview Branch workflow](https://github.com/langchain-ai/docs/actions/workflows/create-preview-branch.yml) ## Additional notes <!-- Any other information that would be helpful for reviewers -->
1 parent 61e0b7b commit 2fb8ef9

File tree

2 files changed

+9
-18
lines changed

2 files changed

+9
-18
lines changed

src/docs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,8 +734,8 @@
734734
"group": "Deployment guides",
735735
"pages": [
736736
"langsmith/deploy-to-cloud",
737-
"langsmith/deploy-with-control-plane",
738737
"langsmith/deploy-standalone-server",
738+
"langsmith/deploy-with-control-plane",
739739
"langsmith/diagnostics-self-hosted"
740740
]
741741
},

src/langsmith/deploy-standalone-server.mdx

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,10 @@ icon: "server"
55
description: Deploy standalone Agent Servers using Docker, Docker Compose, or Kubernetes without the LangSmith control plane.
66
---
77

8-
This guide shows you how to deploy **standalone <Tooltip tip="The server that runs your LangGraph applications.">Agent Servers</Tooltip>** without the LangSmith UI or control plane. This is the most lightweight self-hosting option for running one or a few agents as independent services.
9-
10-
<Warning>
11-
This deployment option provides flexibility but requires you to manage your own infrastructure and configuration.
12-
13-
For production workloads, consider [self-hosting the full LangSmith platform](/langsmith/self-hosted) or [deploying with the control plane](/langsmith/deploy-with-control-plane), which offer standardized deployment patterns and UI-based management.
14-
</Warning>
8+
This guide shows you how to deploy **standalone <Tooltip tip="The server that runs your LangGraph applications.">Agent Servers</Tooltip>** directly, without using the [LangSmith control plane](/langsmith/deploy-with-control-plane). You can deploy the server independently and still use LangSmith separately for tracing and evaluation. Standalone servers are production-ready and provide the most lightweight self-hosting option for running agents.
159

1610
<Note>
17-
**This is the setup page for deploying Agent Servers directly without the LangSmith platform.**
18-
19-
Review the [self-hosted options](/langsmith/self-hosted) to understand:
20-
- [Standalone Server](/langsmith/self-hosted#standalone-server): What this guide covers (no UI, just servers).
21-
- [LangSmith](/langsmith/self-hosted#langsmith): For the full LangSmith platform with UI.
22-
- [LangSmith Deployment](/langsmith/self-hosted#enable-langsmith-deployment): For UI-based deployment management.
23-
24-
Before continuing, review the [standalone server overview](/langsmith/self-hosted#standalone-server).
11+
For an overview of self-hosted deployment options, see [self-hosted options](/langsmith/self-hosted).
2512
</Note>
2613

2714
## Prerequisites
@@ -54,12 +41,14 @@ Before continuing, review the [standalone server overview](/langsmith/self-hoste
5441
<a id="helm"></a>
5542
## Kubernetes
5643

57-
Use this [Helm chart](https://github.com/langchain-ai/helm/blob/main/charts/langgraph-cloud/README.md) to deploy an Agent Server to a Kubernetes cluster.
44+
Use this [Helm chart](https://github.com/langchain-ai/helm/blob/main/charts/langgraph-cloud/README.md) to deploy an Agent Server to a Kubernetes cluster. This is the recommended setup for production standalone server deployments.
5845

5946
The Helm chart (v0.2.6+) supports MongoDB checkpointing with a bundled instance (dev/testing) or an external deployment (production). Set `mongo.enabled: true` in your values file. See [Configure checkpointer backend](/langsmith/configure-checkpointer#deploy-by-environment) for full configuration details.
6047

6148
## Docker
6249

50+
This `docker` example is intended for local development and testing.
51+
6352
Run the following `docker` command:
6453

6554
```shell
@@ -82,7 +71,9 @@ and you should provide appropriate values for `REDIS_URI`, `DATABASE_URI`, and `
8271

8372
## Docker Compose
8473

85-
Docker Compose YAML file:
74+
This Docker Compose example is intended for local development and testing.
75+
76+
Use the following Docker Compose file:
8677

8778
```yml
8879
volumes:

0 commit comments

Comments
 (0)