Skip to content

Commit 2ca5a44

Browse files
authored
## Overview Fix subset of broken links. Still 368 to go ## Type of change **Type:** Bug fix ## 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 langchain-ai#123" or "fixes langchain-ai#123" or "resolves langchain-ai#123" For regular references without auto-closing, just use: - "langchain-ai#123" or "See issue langchain-ai#123" Examples: - closes langchain-ai#456 (will auto-close issue langchain-ai#456 when PR is merged) - See langchain-ai#789 for context (will reference but not auto-close issue langchain-ai#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) - [ ] 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 - I have gotten approval from the relevant reviewers - (Internal team members only / optional) I have created a preview deployment 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 77b17f3 commit 2ca5a44

228 files changed

Lines changed: 436 additions & 641 deletions

File tree

Some content is hidden

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

‎src/docs.json‎

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -321,11 +321,11 @@
321321
"group": "Conceptual overviews",
322322
"icon": "book",
323323
"pages": [
324-
"oss/python/memory",
325-
"oss/python/context",
324+
"oss/python/concepts/memory",
325+
"oss/python/concepts/context",
326326
"oss/python/langgraph/graph-api",
327327
"oss/python/langgraph/functional-api",
328-
"oss/python/subgraphs"
328+
"oss/python/concepts/subgraphs"
329329
]
330330
},
331331
{
@@ -1299,24 +1299,24 @@
12991299
"group": "Google",
13001300
"pages": [
13011301
"oss/javascript/integrations/providers/google",
1302-
"/oss/javascript/integrations/chat/google_generative_ai",
1303-
"/oss/javascript/integrations/text_embedding/google_generativeai"
1302+
"/oss/integrations/chat/google_generative_ai",
1303+
"/oss/integrations/text_embedding/google_generativeai"
13041304
]
13051305
},
13061306
{
13071307
"group": "AWS",
13081308
"pages": [
13091309
"oss/javascript/integrations/providers/aws",
1310-
"/oss/javascript/integrations/chat/bedrock",
1311-
"/oss/javascript/integrations/text_embedding/bedrock"
1310+
"/oss/integrations/chat/bedrock",
1311+
"/oss/integrations/text_embedding/bedrock"
13121312
]
13131313
},
13141314
{
13151315
"group": "Microsoft",
13161316
"pages": [
13171317
"oss/javascript/integrations/providers/microsoft",
1318-
"/oss/javascript/integrations/chat/azure",
1319-
"/oss/javascript/integrations/text_embedding/azure_openai"
1318+
"/oss/integrations/chat/azure",
1319+
"/oss/integrations/text_embedding/azure_openai"
13201320
]
13211321
}
13221322
]
@@ -1370,11 +1370,11 @@
13701370
"group": "Conceptual overviews",
13711371
"icon": "book",
13721372
"pages": [
1373-
"oss/javascript/memory",
1374-
"oss/javascript/context",
1373+
"oss/javascript/concepts/memory",
1374+
"oss/javascript/concepts/context",
13751375
"oss/javascript/langgraph/graph-api",
13761376
"oss/javascript/langgraph/functional-api",
1377-
"oss/javascript/subgraphs"
1377+
"oss/javascript/concepts/subgraphs"
13781378
]
13791379
},
13801380
{

‎src/langgraph-platform/use-remote-graph.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ console.log(threadState);
232232
If you need to use a `checkpointer` with a graph that has a `RemoteGraph` subgraph node, make sure to use UUIDs as thread IDs.
233233
</Note>
234234

235-
A graph can also call out to multiple `RemoteGraph` instances as [_subgraph_](/oss/langgraph/subgraphs) nodes. This allows for modular, scalable workflows where different responsibilities are split across separate graphs.
235+
A graph can also call out to multiple `RemoteGraph` instances as [_subgraph_](/oss/langgraph/use-subgraphs) nodes. This allows for modular, scalable workflows where different responsibilities are split across separate graphs.
236236

237237
`RemoteGraph` exposes the same interface as a regular `CompiledGraph`, so you can use it directly as a subgraph inside another graph. For example:
238238

‎src/oss/contributing/implement-langchain.mdx‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ Your integration package will typically implement a subclass of at least one of
2828
<Tab title="Retrievers">
2929
Retrievers are used to retrieve documents from APIs, databases, or other sources based on a query. The Retriever class must inherit from the BaseRetriever base class.
3030

31-
See the [retriever integration guide](/oss/integrations/guide/retrievers) for details on implementing a retriever integration.
31+
See the [retriever integration guide](/oss/integrations/retrievers) for details on implementing a retriever integration.
3232
</Tab>
3333
<Tab title="Vector Stores">
3434
All vector stores must inherit from the [`VectorStore`](https://python.langchain.com/api_reference/core/vectorstores/langchain_core.vectorstores.base.VectorStore.html) base class. This interface consists of methods for writing, deleting and searching for documents in the vector store.
3535

36-
See the [vector store integration guide](/oss/integrations/vector-stores) for details on implementing a vector store integration.
36+
See the [vector store integration guide](/oss/integrations/vectorstores) for details on implementing a vector store integration.
3737
</Tab>
3838
<Tab title="Embeddings">
3939
Embedding models are subclasses of the [`Embeddings`](https://python.langchain.com/api_reference/core/embeddings/langchain_core.embeddings.embeddings.Embeddings.html) class.
4040

41-
See the [embedding model integration guide](/oss/integrations/embeddings) for details on implementing an embedding model integration.
41+
See the [embedding model integration guide](/oss/integrations/text_embedding) for details on implementing an embedding model integration.
4242
</Tab>
4343
</Tabs>

‎src/oss/contributing/publish-langchain.mdx‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ Depending on the type of integration you have built, you will need to create dif
7979
:::
8080
:::js
8181
<CardGroup>
82-
<Card title="Chat models" icon="message" href="https://docs.langchain.com/oss/javascript/integrations/chat/TEMPLATE.mdx" arrow/>
83-
<Card title="Tools/toolkits" icon="wrench" href="https://docs.langchain.com/oss/javascript/integrations/tools/TEMPLATE.mdx" arrow/>
84-
<Card title="Retrievers" icon="magnifying-glass" href="https://docs.langchain.com/oss/javascript/integrations/retrievers/TEMPLATE.mdx" arrow/>
85-
<Card title="Vector stores" icon="database" href="https://docs.langchain.com/oss/javascript/integrations/vectorstores/TEMPLATE.mdx" arrow/>
86-
<Card title="Embedding models" icon="layer-group" href="https://docs.langchain.com/oss/javascript/integrations/text_embedding/TEMPLATE.mdx" arrow/>
82+
<Card title="Chat models" icon="message" href="https://docs.langchain.com/oss/integrations/chat/TEMPLATE.mdx" arrow/>
83+
<Card title="Tools/toolkits" icon="wrench" href="https://docs.langchain.com/oss/integrations/tools/TEMPLATE.mdx" arrow/>
84+
<Card title="Retrievers" icon="magnifying-glass" href="https://docs.langchain.com/oss/integrations/retrievers/TEMPLATE.mdx" arrow/>
85+
<Card title="Vector stores" icon="database" href="https://docs.langchain.com/oss/integrations/vectorstores/TEMPLATE.mdx" arrow/>
86+
<Card title="Embedding models" icon="layer-group" href="https://docs.langchain.com/oss/integrations/text_embedding/TEMPLATE.mdx" arrow/>
8787
</CardGroup>
8888
:::
8989

‎src/oss/javascript/integrations/chat/anthropic.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This will help you getting started with Anthropic [chat models](/oss/langchain/m
1818

1919
See the links in the table headers below for guides on how to use specific features.
2020

21-
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/how-to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/how-to/chat_token_usage_tracking/) | [Logprobs](/oss/how-to/logprobs/) |
21+
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/langchain/messages#multimodal) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/langchain/models#token-usage) | [Logprobs](/oss/langchain/models#log-probabilities) |
2222
| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
2323
||||||||||
2424

@@ -458,7 +458,7 @@ When messages are passed in as input, they will be formatted into a string under
458458
459459
LangChain does not host any LLMs, rather we rely on third party integrations.
460460
461-
For specifics on how to use LLMs, see the [relevant how-to guides here](/oss/how-to/#llms).
461+
For specifics on how to use LLMs, see the [relevant how-to guides here](/oss/langchain/models).
462462
463463
### Message types
464464

‎src/oss/javascript/integrations/chat/azure.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This will help you getting started with AzureChatOpenAI [chat models](/oss/langc
1818

1919
See the links in the table headers below for guides on how to use specific features.
2020

21-
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/how-to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/how-to/chat_token_usage_tracking/) | [Logprobs](/oss/how-to/logprobs/) |
21+
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/langchain/messages#multimodal) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/langchain/models#token-usage) | [Logprobs](/oss/langchain/models#log-probabilities) |
2222
| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
2323
||||||||||
2424

‎src/oss/javascript/integrations/chat/bedrock.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The newer [`ChatBedrockConverse` chat model is now available via the dedicated `
2424

2525
See the links in the table headers below for guides on how to use specific features.
2626

27-
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/how-to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/how-to/chat_token_usage_tracking/) | [Logprobs](/oss/how-to/logprobs/) |
27+
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/langchain/messages#multimodal) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/langchain/models#token-usage) | [Logprobs](/oss/langchain/models#log-probabilities) |
2828
| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
2929
||||||||||
3030

‎src/oss/javascript/integrations/chat/bedrock_converse.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This will help you getting started with Amazon Bedrock Converse [chat models](/o
1818

1919
See the links in the table headers below for guides on how to use specific features.
2020

21-
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/how-to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/how-to/chat_token_usage_tracking/) | [Logprobs](/oss/how-to/logprobs/) |
21+
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/langchain/messages#multimodal) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/langchain/models#token-usage) | [Logprobs](/oss/langchain/models#log-probabilities) |
2222
| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
2323
||||||||||
2424

‎src/oss/javascript/integrations/chat/cerebras.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This will help you getting started with ChatCerebras [chat models](/oss/langchai
2626

2727
See the links in the table headers below for guides on how to use specific features.
2828

29-
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/how-to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/how-to/chat_token_usage_tracking/) | [Logprobs](/oss/how-to/logprobs/) |
29+
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/langchain/messages#multimodal) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/langchain/models#token-usage) | [Logprobs](/oss/langchain/models#log-probabilities) |
3030
| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
3131
||||||||||
3232

‎src/oss/javascript/integrations/chat/cloudflare_workersai.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This will help you getting started with Cloudflare Workers AI [chat models](/oss
1818

1919
See the links in the table headers below for guides on how to use specific features.
2020

21-
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/how-to/multimodal_inputs/) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/how-to/chat_token_usage_tracking/) | [Logprobs](/oss/how-to/logprobs/) |
21+
| [Tool calling](/oss/langchain/tools) | [Structured output](/oss/langchain/structured-output) | JSON mode | [Image input](/oss/langchain/messages#multimodal) | Audio input | Video input | [Token-level streaming](/oss/langchain/streaming/) | [Token usage](/oss/langchain/models#token-usage) | [Logprobs](/oss/langchain/models#log-probabilities) |
2222
| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
2323
||||||||||
2424

0 commit comments

Comments
 (0)