mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 02:41:59 -04:00
9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
```ts
|
|
const textSplitter = new RecursiveCharacterTextSplitter({
|
|
chunkSize: 1000,
|
|
chunkOverlap: 200,
|
|
});
|
|
const allSplits = await textSplitter.splitDocuments(docs);
|
|
console.log(`Split documentation into ${allSplits.length} chunks.`);
|
|
```
|