Replies: 1 comment 2 replies
-
The recommended values for from langchain_text_splitters import RecursiveCharacterTextSplitter
chunk_size = 250
chunk_overlap = 30
text_splitter = RecursiveCharacterTextSplitter(
chunk_size=chunk_size,
chunk_overlap=chunk_overlap
) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What is the recommended value for chunk_size and chunk_overlap when calling RecursiveCharacterTextSplitter?
Beta Was this translation helpful? Give feedback.
All reactions