Skip to main content
Splits text hierarchically using multiple separators (paragraphs → sentences → words). Ideal for structured documents like markdown.

Quick Start

When to Use

Good For

  • Markdown documentation
  • Technical manuals
  • Structured content
  • Code with comments

Consider Alternatives

  • Unstructured prose
  • Stream of consciousness
  • Very short documents
  • Topic-based splitting needed

Parameters

Examples

Documentation

Large Codebase

How It Works

The recursive approach tries larger separators first (paragraphs), then falls back to smaller ones (sentences, words) only when needed.

Best Practices

  1. Match chunk size to content density - Dense technical docs need smaller chunks
  2. Use with markdown - Recursive chunking respects markdown structure well
  3. Combine with semantic search - The hierarchical splits provide logical boundaries for retrieval