mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 02:41:59 -04:00
9 lines
203 B
Plaintext
9 lines
203 B
Plaintext
```ts
|
|
const docsList = docs.flat();
|
|
const textSplitter = new RecursiveCharacterTextSplitter({
|
|
chunkSize: 500,
|
|
chunkOverlap: 50,
|
|
});
|
|
const docSplits = await textSplitter.splitDocuments(docsList);
|
|
```
|