LangChain - Text Splitting
Given the following code snippet, what will be the length of the first two chunks?
splitter = RecursiveCharacterTextSplitter(chunk_size=50, chunk_overlap=10, separators=[" "]) text = 'a' * 100 chunks = splitter.split_text(text) first_chunk = chunks[0] second_chunk = chunks[1]
