Skip to content

Commit 4f94548

Browse files
docs: fix vocabs and missing redirect links in concepts (#31352)
### Description Fix typo errors and missing redirect links in LangChain concepts documents. ### Issue None ### Dependencies None --------- Co-authored-by: μ •ν˜„μ€€/AIX νŒ€ <[email protected]>
1 parent 71cf260 commit 4f94548

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

β€Ždocs/docs/concepts/agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ LangChain previously introduced the `AgentExecutor` as a runtime for agents.
1515
While it served as an excellent starting point, its limitations became apparent when dealing with more sophisticated and customized agents.
1616
As a result, we're gradually phasing out `AgentExecutor` in favor of more flexible solutions in LangGraph.
1717

18-
### Transitioning from AgentExecutor to langgraph
18+
### Transitioning from AgentExecutor to LangGraph
1919

2020
If you're currently using `AgentExecutor`, don't worry! We've prepared resources to help you:
2121

β€Ždocs/docs/concepts/async.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ LLM based applications often involve a lot of I/O-bound operations, such as maki
99

1010
:::note
1111
You are expected to be familiar with asynchronous programming in Python before reading this guide. If you are not, please find appropriate resources online to learn how to program asynchronously in Python.
12-
This guide specifically focuses on what you need to know to work with LangChain in an asynchronous context, assuming that you are already familiar with asynch
12+
This guide specifically focuses on what you need to know to work with LangChain in an asynchronous context, assuming that you are already familiar with asynchronous programming.
1313
:::
1414

1515
## Langchain asynchronous APIs

β€Ždocs/docs/concepts/callbacks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
LangChain provides a callback system that allows you to hook into the various stages of your LLM application. This is useful for logging, monitoring, streaming, and other tasks.
88

9-
You can subscribe to these events by using the `callbacks` argument available throughout the API. This argument is list of handler objects, which are expected to implement one or more of the methods described below in more detail.
9+
You can subscribe to these events by using the `callbacks` argument available throughout the API. This argument is a list of handler objects, which are expected to implement one or more of the methods described below in more detail.
1010

1111
## Callback events
1212

β€Ždocs/docs/concepts/text_splitters.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
:::info[Prerequisites]
55

6-
* [Documents](/docs/concepts/retrievers/#interface)
7-
* Tokenization(/docs/concepts/tokens)
6+
* [Documents](./retrievers.mdx)
7+
* [Tokenization](./tokens.mdx)
88
:::
99

1010
## Overview

0 commit comments

Comments
Β (0)