LangChain - Text Splitting
Given the following code snippet using RecursiveCharacterTextSplitter:
splitter = RecursiveCharacterTextSplitter(chunk_size=50, chunk_overlap=10) text = "abcdefghij" * 10 chunks = splitter.split_text(text) print(len(chunks))What will be the output number of chunks?
