Coverage for src / local_deep_research / embeddings / splitters / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-02-25 01:07 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-02-25 01:07 +0000
1"""
2Text splitters for document chunking.
4This module provides various text splitting strategies for RAG indexing.
5"""
7from .text_splitter_registry import get_text_splitter, VALID_SPLITTER_TYPES
9__all__ = ["get_text_splitter", "VALID_SPLITTER_TYPES"]