docs/guides/agent/ingestion_pipeline/configure_chunker_component.md
The Chunker component intelligently splits text. Its goal is to prevent overflow of the AI context window and improve semantic accuracy in hybrid search.
There are two core methods, which can be used sequentially:
Token-based chunking (default):
\n (line break) by default to split first at natural paragraph boundaries and avoid cutting in the middle of sentences.Title-based chunking (hierarchical):
:::caution IMPORTANT In the current design, if both token-based and title-based methods are used, connect the Token Chunker component first, and then connect the Title Chunker component. Connecting the Title Chunker directly to the Parser may cause formatting errors for emails, images, spreadsheets and text files. :::