Chunking 101 [LangChain]

Very Easy50 pts0 solves
[LangChain-specific] LangChain's most popular splitter tries paragraph breaks first, then sentences, then words, then characters. Other frameworks (LlamaIndex, Haystack) have their own splitters with different APIs. What is the exact LangChain class name? Flag format: CONGRESS{[ClassName]} Example: CONGRESS{TokenTextSplitter}
Hint
The name describes what it does: recursive + character + text + splitter.