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

1""" 

2Text splitters for document chunking. 

3 

4This module provides various text splitting strategies for RAG indexing. 

5""" 

6 

7from .text_splitter_registry import get_text_splitter, VALID_SPLITTER_TYPES 

8 

9__all__ = ["get_text_splitter", "VALID_SPLITTER_TYPES"]