Skip to content

Commit 15b2d56

Browse files
committed
Fix conflicts
1 parent c3d8914 commit 15b2d56

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

src/docs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@
869869
{
870870
"group": "Releases & changelogs",
871871
"pages": [
872-
"langsmith/langgraph-server-changelog",
872+
"langsmith/agent-server-changelog",
873873
"langsmith/release-versions"
874874
]
875875
},
@@ -1191,7 +1191,7 @@
11911191
"group": "Deployment components",
11921192
"pages": [
11931193
"langsmith/components",
1194-
"langsmith/langgraph-server",
1194+
"langsmith/agent-server",
11951195
"langsmith/data-plane",
11961196
"langsmith/control-plane"
11971197
]

src/langsmith/cli.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ To build and run a valid application, the LangGraph CLI requires a JSON configur
7171
| <span style={{ whiteSpace: "nowrap" }}>`dockerfile_lines`</span> | Array of additional lines to add to Dockerfile following the import from parent image. |
7272
| <span style={{ whiteSpace: "nowrap" }}>`checkpointer`</span> | Configuration for the checkpointer. Supports: <ul><li>`ttl` (optional): Object with `strategy`, `sweep_interval_minutes`, `default_ttl` controlling checkpoint expiry.</li><li>`serde` (optional, 0.5+): Object with `allowed_json_modules` and `pickle_fallback` to tune deserialization behavior.</li></ul> |
7373
| <span style={{ whiteSpace: "nowrap" }}>`http`</span> | HTTP server configuration with the following fields: <ul><li>`app`: Path to custom Starlette/FastAPI app (e.g., `"./src/agent/webapp.py:app"`). See [custom routes guide](/langsmith/custom-routes).</li><li>`cors`: CORS configuration with fields such as `allow_origins`, `allow_methods`, `allow_headers`, `allow_credentials`, `allow_origin_regex`, `expose_headers`, and `max_age`.</li><li>`configurable_headers`: Define which request headers to expose as configurable values via `includes` / `excludes` patterns.</li><li>`logging_headers`: Mirror of `configurable_headers` for excluding sensitive headers from logs.</li><li>`middleware_order`: Choose how custom middleware and auth interact. `auth_first` runs authentication hooks before custom middleware, while `middleware_first` (default) runs your middleware first.</li><li>`enable_custom_route_auth`: Apply auth checks to routes added through `app`.</li><li>`disable_assistants`, `disable_mcp`, `disable_meta`, `disable_runs`, `disable_store`, `disable_threads`, `disable_ui`, `disable_webhooks`: Disable built-in routes or hooks.</li><li>`mount_prefix`: Prefix for mounted routes (e.g., "/my-deployment/api").</li></ul> |
74-
| <span style={{ whiteSpace: "nowrap" }}>`api_version`</span> | _(Added in v0.3.7)_ Which semantic version of the LangGraph API server to use (e.g., `"0.3"`). Defaults to latest. Check the server [changelog](/langsmith/langgraph-server-changelog) for details on each release. |
74+
| <span style={{ whiteSpace: "nowrap" }}>`api_version`</span> | _(Added in v0.3.7)_ Which semantic version of the LangGraph API server to use (e.g., `"0.3"`). Defaults to latest. Check the server [changelog](/langsmith/agent-server-changelog) for details on each release. |
7575
</Tab>
7676
<Tab title="JS">
7777
| Key | Description |
@@ -83,7 +83,7 @@ To build and run a valid application, the LangGraph CLI requires a JSON configur
8383
| <span style={{ whiteSpace: "nowrap" }}>`dockerfile_lines`</span> | Array of additional lines to add to Dockerfile following the import from parent image. |
8484
| <span style={{ whiteSpace: "nowrap" }}>`checkpointer`</span> | Configuration for the checkpointer. Supports: <ul><li>`ttl` (optional): Object with `strategy`, `sweep_interval_minutes`, `default_ttl` controlling checkpoint expiry.</li><li>`serde` (optional, 0.5+): Object with `allowed_json_modules` and `pickle_fallback` to tune deserialization behavior.</li></ul> |
8585
| <span style={{ whiteSpace: "nowrap" }}>`http`</span> | HTTP server configuration mirroring the Python options: <ul><li>`cors` with `allow_origins`, `allow_methods`, `allow_headers`, `allow_credentials`, `allow_origin_regex`, `expose_headers`, `max_age`.</li><li>`configurable_headers` and `logging_headers` pattern lists.</li><li>`middleware_order` (`auth_first` or `middleware_first`).</li><li>`enable_custom_route_auth` plus the same boolean route toggles as above.</li></ul> |
86-
| <span style={{ whiteSpace: "nowrap" }}>`api_version`</span> | _(Added in v0.3.7)_ Which semantic version of the LangGraph API server to use (e.g., `"0.3"`). Defaults to latest. Check the server [changelog](/langsmith/langgraph-server-changelog) for details on each release. |
86+
| <span style={{ whiteSpace: "nowrap" }}>`api_version`</span> | _(Added in v0.3.7)_ Which semantic version of the LangGraph API server to use (e.g., `"0.3"`). Defaults to latest. Check the server [changelog](/langsmith/agent-server-changelog) for details on each release. |
8787
</Tab>
8888
</Tabs>
8989

@@ -250,7 +250,7 @@ To build and run a valid application, the LangGraph CLI requires a JSON configur
250250
You can configure the time-to-live (TTL) for checkpoints using the `checkpointer` key. This determines how long checkpoint data is retained before being automatically handled according to the specified strategy (e.g., deletion). Two optional sub-objects are supported:
251251

252252
* `ttl`: Includes `strategy`, `sweep_interval_minutes`, and `default_ttl`, which collectively set how checkpoints expire.
253-
* `serde` _(LangGraph server 0.5+)_ : Lets you control deserialization behavior for checkpoint payloads.
253+
* `serde` _(Agent server 0.5+)_ : Lets you control deserialization behavior for checkpoint payloads.
254254

255255
Here's an example setting a default TTL of 30 days (43200 minutes):
256256

src/oss/langchain/deploy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Before you begin, ensure you have the following:
1515

1616
### 1. Create a repository on GitHub
1717

18-
Your application's code must reside in a GitHub repository to be deployed on LangSmith. Both public and private repositories are supported. For this quickstart, first make sure your app is LangGraph-compatible by following the [local server setup guide](/oss/langchain/studio#setup-local-langgraph-server). Then, push your code to the repository.
18+
Your application's code must reside in a GitHub repository to be deployed on LangSmith. Both public and private repositories are supported. For this quickstart, first make sure your app is LangGraph-compatible by following the [local server setup guide](/oss/langchain/studio#setup-local-agent-server). Then, push your code to the repository.
1919

2020
<deploy />

src/oss/langchain/studio.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ import Studio from '/snippets/oss/studio.mdx';
77
<Studio/>
88

99
<Tip>
10-
For more information about local and deployed agents, see [Set up local Agent Server](/oss/langchain/studio#setup-local-langgraph-server) and [Deploy](/oss/langchain/deploy).
10+
For more information about local and deployed agents, see [Set up local Agent Server](/oss/langchain/studio#setup-local-agent-server) and [Deploy](/oss/langchain/deploy).
1111
</Tip>

src/oss/langchain/ui.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import chat_uiJS from '/snippets/oss/ui-js.mdx';
1515

1616
### Connect to your agent
1717

18-
Agent Chat UI can connect to both [local](/oss/langchain/studio#setup-local-langgraph-server) and [deployed agents](/oss/langchain/deploy).
18+
Agent Chat UI can connect to both [local](/oss/langchain/studio#setup-local-agent-server) and [deployed agents](/oss/langchain/deploy).
1919

2020
After starting Agent Chat UI, you'll need to configure it to connect to your agent:
2121

src/oss/langgraph/deploy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ Before you begin, ensure you have the following:
1717

1818
### 1. Create a repository on GitHub
1919

20-
Your application's code must reside in a GitHub repository to be deployed on LangSmith. Both public and private repositories are supported. For this quickstart, first make sure your app is LangGraph-compatible by following the [local server setup guide](/oss/langgraph/studio#setup-local-langgraph-server). Then, push your code to the repository.
20+
Your application's code must reside in a GitHub repository to be deployed on LangSmith. Both public and private repositories are supported. For this quickstart, first make sure your app is LangGraph-compatible by following the [local server setup guide](/oss/langgraph/studio#setup-local-agent-server). Then, push your code to the repository.
2121

2222
<deploy />

src/oss/langgraph/ui.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import chat_uiJS from '/snippets/oss/ui-js.mdx';
1414

1515
### Connect to your agent
1616

17-
Agent Chat UI can connect to both [local](/oss/langgraph/studio#setup-local-langgraph-server) and [deployed agents](/oss/langgraph/deploy).
17+
Agent Chat UI can connect to both [local](/oss/langgraph/studio#setup-local-agent-server) and [deployed agents](/oss/langgraph/deploy).
1818

1919
After starting Agent Chat UI, you'll need to configure it to connect to your agent:
2020

0 commit comments

Comments
 (0)