



LangChain's hierarchical text chunking strategy achieving 85-90% accuracy by recursively splitting using progressively finer separators to preserve semantic boundaries.
Loading more......
RecursiveCharacterTextSplitter is LangChain's implementation using a hierarchy of separators to preserve semantic boundaries, recursively splitting text using progressively finer separators until chunks reach target size.
Default order: ["\n\n", "\n", " ", ""]
Free and open-source (part of LangChain)