Chunking modules split large pieces of text into smaller, manageable segments. Overlapping helps maintain context between chunks, making them essential for Retrieval-Augmented Generation (RAG) pipelines and other text-processing tasks.
Module | Description |
---|---|
ChunkDefault | Splits large texts into smaller chunks while maintaining context through overlap. |
ChunkCount | Segments text based on a specific count pattern. |
ChunkQuery | Filters and retrieves chunks most relevant to a given query. |
ChunkSimilarity | Splits and ranks chunks based on their similarity. |