Skip to content

Commit 4edbd9e

Browse files
committed
fix broken links / images
1 parent 0f14910 commit 4edbd9e

File tree

214 files changed

+491
-487
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+491
-487
lines changed

pipeline/tools/docusaurus_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def replace_link(match: re.Match[str]) -> str:
281281

282282
return f"{link_text}({new_url})"
283283

284-
# Handle relative links (./file or ../category/file)
284+
# Handle relative links (/oss/file or ../category/file)
285285
if link_url.startswith(("./", "../")) and link_url.endswith(".md"):
286286
# Remove .md extension if present
287287
new_url = link_url[:-3] # Remove .md

src/index.mdx

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mode: "wide"
88

99
# Frameworks
1010

11-
<CardGroup cols={2}>
11+
<CardGroup cols={3}>
1212
<Card
1313
title="LangChain - Python"
1414
href="https://python.langchain.com/docs/introduction/"
@@ -22,19 +22,10 @@ mode: "wide"
2222
>
2323
Open-source framework for developing applications powered by large language models (LLMs).
2424
</Card>
25-
</CardGroup>
2625

27-
<CardGroup cols={2}>
2826
<Card
29-
title="LangGraph - Python"
30-
href="https://langchain-ai.github.io/langgraph/"
31-
>
32-
Low-level orchestration framework for building, managing, and deploying long-running, stateful agents.
33-
</Card>
34-
35-
<Card
36-
title="LangGraph - JavaScript"
37-
href="https://langchain-ai.github.io/langgraphjs/"
27+
title="LangGraph"
28+
href="/oss"
3829
>
3930
Low-level orchestration framework for building, managing, and deploying long-running, stateful agents.
4031
</Card>
@@ -43,21 +34,14 @@ mode: "wide"
4334

4435
# Platforms
4536

46-
<CardGroup cols={3}>
37+
<CardGroup cols={2}>
4738
<Card
48-
title="LangGraph Platform - Python"
49-
href="https://langchain-ai.github.io/langgraph/concepts/langgraph_platform/"
39+
title="LangGraph Platform"
40+
href="/langgraph-platform/"
5041
>
5142
Commercial platform for developing, deploying, and scaling long-running agents and worflows.
5243
</Card>
5344

54-
<Card
55-
title="LangGraph Platform - JavaScript"
56-
href="https://langchain-ai.github.io/langgraphjs/concepts/#langgraph-platform"
57-
>
58-
Commercial platform for developing, deploying, and scaling long-running agents and workflows.
59-
</Card>
60-
6145
<Card
6246
title="LangSmith"
6347
href="https://docs.smith.langchain.com/"

src/langgraph-platform/add-human-in-the-loop.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Human-in-the-loop using server API
33
sidebarTitle: Human-in-the-loop using server API
44
---
5-
To review, edit, and approve tool calls in an agent or workflow, use LangGraph's [human-in-the-loop](https://langchain-ai.github.io/langgraph/concepts/human_in_the_loop/) features.
5+
To review, edit, and approve tool calls in an agent or workflow, use LangGraph's [human-in-the-loop](/oss/human-in-the-loop) features.
66

77
## Dynamic interrupts
88

@@ -487,5 +487,5 @@ The following example shows how to add static interrupts:
487487
488488
## Learn more
489489
490-
* [Human-in-the-loop conceptual guide](https://langchain-ai.github.io/langgraph/concepts/human_in_the_loop/): learn more about LangGraph human-in-the-loop features.
491-
* [Common patterns](https://langchain-ai.github.io/langgraph/how-tos/human_in_the_loop/add-human-in-the-loop/#common-patterns): learn how to implement patterns like approving/rejecting actions, requesting user input, tool call review, and validating human input.
490+
* [Human-in-the-loop conceptual guide](/oss/human-in-the-loop): learn more about LangGraph human-in-the-loop features.
491+
* [Common patterns](/oss/add-human-in-the-loop#common-patterns): learn how to implement patterns like approving/rejecting actions, requesting user input, tool call review, and validating human input.

src/langgraph-platform/assistants.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The LangGraph Cloud API provides several endpoints for creating and managing ass
1717

1818
## Configuration
1919

20-
Assistants build on the LangGraph open source concept of [configuration](https://langchain-ai.github.io/langgraph/concepts/low_level/#configuration).
20+
Assistants build on the LangGraph open source concept of [configuration](/oss/graph-api#configuration).
2121
While configuration is available in the open source LangGraph library, assistants are only present in [LangGraph Platform](/langgraph-platform/index). This is due to the fact that assistants are tightly coupled to your deployed graph. Upon deployment, LangGraph Server will automatically create a default assistant for each graph using the graph's default configuration settings.
2222

2323
In practice, an assistant is just an _instance_ of a graph with a specific configuration. Therefore, multiple assistants can reference the same graph but can contain different configurations (e.g. prompts, models, tools). The LangGraph Server API provides several endpoints for creating and managing assistants. See the [API reference](https://langchain-ai.github.io/langgraph/cloud/reference/api/api_ref/) and [this how-to](/langgraph-platform/configuration-cloud) for more details on how to create assistants.
@@ -29,6 +29,6 @@ Once you've created an assistant, subsequent edits to that assistant will create
2929

3030
## Execution
3131

32-
A **run** is an invocation of an assistant. Each run may have its own input, configuration, and metadata, which may affect execution and output of the underlying graph. A run can optionally be executed on a [thread](https://langchain-ai.github.io/langgraph/concepts/persistence/#threads).
32+
A **run** is an invocation of an assistant. Each run may have its own input, configuration, and metadata, which may affect execution and output of the underlying graph. A run can optionally be executed on a [thread](/oss/persistence#threads).
3333

3434
The LangGraph Platform API provides several endpoints for creating and managing runs. See the [API reference](https://langchain-ai.github.io/langgraph/cloud/reference/api/api_ref/) for more details.

src/langgraph-platform/auth.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ For more information, see the [Use custom auth](/langgraph-platform/custom-auth#
181181

182182
### Agent authentication with MCP
183183

184-
For information on how to authenticate an agent to an MCP server, see the [MCP conceptual guide](https://langchain-ai.github.io/langgraph/concepts/mcp/).
184+
For information on how to authenticate an agent to an MCP server, see the [MCP conceptual guide](/oss/mcp).
185185

186186
## Authorization
187187

src/langgraph-platform/autogen-integration.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ This guide shows how to integrate AutoGen agents with LangGraph to leverage feat
66

77
Integrating AutoGen with LangGraph provides several benefits:
88

9-
* Enhanced features: Add [persistence](https://langchain-ai.github.io/langgraph/concepts/persistence/), [streaming](/langgraph-platform/streaming), [short and long-term memory](https://langchain-ai.github.io/langgraph/concepts/memory/) and more to your AutoGen agents.
10-
* Multi-agent systems: Build [multi-agent systems](https://langchain-ai.github.io/langgraph/concepts/multi_agent/) where individual agents are built with different frameworks.
9+
* Enhanced features: Add [persistence](/oss/persistence), [streaming](/langgraph-platform/streaming), [short and long-term memory](/oss/memory) and more to your AutoGen agents.
10+
* Multi-agent systems: Build [multi-agent systems](/oss/multi-agent) where individual agents are built with different frameworks.
1111
* Production deployment: Deploy your integrated solution to [LangGraph Platform](/langgraph-platform/index) for scalable production use.
1212

1313
## Prerequisites
@@ -165,7 +165,7 @@ To find numbers between 10 and 30 in the Fibonacci sequence, we can generate the
165165
...
166166
```
167167

168-
Since we're leveraging LangGraph's [persistence](https://langchain-ai.github.io/langgraph/concepts/persistence/) features we can now continue the conversation using the same thread ID -- LangGraph will automatically pass previous history to the AutoGen agent:
168+
Since we're leveraging LangGraph's [persistence](/oss/persistence) features we can now continue the conversation using the same thread ID -- LangGraph will automatically pass previous history to the AutoGen agent:
169169

170170
```python
171171
for chunk in graph.stream(

src/langgraph-platform/configure-ttl.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebarTitle: Add TTLs to your LangGraph application
44
---
55
<Tip>
66
**Prerequisites**
7-
This guide assumes familiarity with the [LangGraph Platform](/langgraph-platform/index), [Persistence](https://langchain-ai.github.io/langgraph/concepts/persistence/), and [Cross-thread persistence](https://langchain-ai.github.io/langgraph/concepts/persistence/#memory-store) concepts.
7+
This guide assumes familiarity with the [LangGraph Platform](/langgraph-platform/index), [Persistence](/oss/persistence), and [Cross-thread persistence](/oss/persistence#memory-store) concepts.
88
</Tip>
99

1010
<Note>
@@ -13,7 +13,7 @@ sidebarTitle: Add TTLs to your LangGraph application
1313
TTLs are only supported for LangGraph platform deployments. This guide does not apply to LangGraph OSS.
1414
</Note>
1515

16-
The LangGraph Platform persists both [checkpoints](https://langchain-ai.github.io/langgraph/concepts/persistence/#checkpoints) (thread state) and [cross-thread memories](https://langchain-ai.github.io/langgraph/concepts/persistence/#memory-store) (store items). Configure Time-to-Live (TTL) policies in `langgraph.json` to automatically manage the lifecycle of this data, preventing indefinite accumulation.
16+
The LangGraph Platform persists both [checkpoints](/oss/persistence#checkpoints) (thread state) and [cross-thread memories](/oss/persistence#memory-store) (store items). Configure Time-to-Live (TTL) policies in `langgraph.json` to automatically manage the lifecycle of this data, preventing indefinite accumulation.
1717

1818
## Configuring Checkpoint TTL
1919

src/langgraph-platform/control-plane.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ Database disk size for `Development` type deployments can be manually increased
8686

8787
### Database Provisioning
8888

89-
The control plane and [LangGraph Data Plane](/langgraph-platform/data-plane) "listener" application coordinate to automatically create a Postgres database for each deployment. The database serves as the [persistence layer](https://langchain-ai.github.io/langgraph/concepts/persistence/#memory-store) for the deployment.
89+
The control plane and [LangGraph Data Plane](/langgraph-platform/data-plane) "listener" application coordinate to automatically create a Postgres database for each deployment. The database serves as the [persistence layer](/oss/persistence#memory-store) for the deployment.
9090

91-
When implementing a LangGraph application, a [checkpointer](https://langchain-ai.github.io/langgraph/concepts/persistence/#checkpointer-libraries) does not need to be configured by the developer. Instead, a checkpointer is automatically configured for the graph. Any checkpointer configured for a graph will be replaced by the one that is automatically configured.
91+
When implementing a LangGraph application, a [checkpointer](/oss/persistence#checkpointer-libraries) does not need to be configured by the developer. Instead, a checkpointer is automatically configured for the graph. Any checkpointer configured for a graph will be replaced by the one that is automatically configured.
9292

9393
There is no direct access to the database. All access to the database occurs through the [LangGraph Server](/langgraph-platform/langgraph-server).
9494

src/langgraph-platform/data-plane.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In other words, the data plane "listener" reads the latest state of the control
2626

2727
## Postgres
2828

29-
Postgres is the persistence layer for all user, run, and long-term memory data in a LangGraph Server. This stores both checkpoints (see more info [here](https://langchain-ai.github.io/langgraph/concepts/persistence)), server resources (threads, runs, assistants and crons), as well as items saved in the long-term memory store (see more info [here](https://langchain-ai.github.io/langgraph/concepts/persistence/#memory-store)).
29+
Postgres is the persistence layer for all user, run, and long-term memory data in a LangGraph Server. This stores both checkpoints (see more info [here](/oss/persistence)), server resources (threads, runs, assistants and crons), as well as items saved in the long-term memory store (see more info [here](/oss/persistence#memory-store)).
3030

3131
## Redis
3232

src/langgraph-platform/deploy-self-hosted-full-platform.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: How to deploy self-hosted full platform
33
sidebarTitle: Deploy self-hosted full platform
44
---
5-
Before deploying, review the [conceptual guide for the Self-Hosted Full Platform](/langgraph-platform/self-hosted-full-platform) deployment option.
5+
Before deploying, review the [conceptual guide for the Self-Hosted Full Platform](/langgraph-platform/self-hosted) deployment option.
66

77
<Info>
88
**Important**

0 commit comments

Comments
 (0)