Coverage for src / local_deep_research / embeddings / splitters / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.12.0, created at 2026-01-11 00:51 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2026-01-11 00:51 +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"]