Spaces:
Running
Running
File size: 480 Bytes
5e1a30c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""
Text Chunking Implementations.
This package contains direct implementations of text chunking strategies.
All chunkers implement the TextChunker abstract base class and use
pure algorithms without external dependencies.
Available Chunkers:
- SentenceBoundaryChunker: Sentence-aware chunking for semantic coherence
- Future: SemanticChunker, StructuralChunker, FixedSizeChunker
"""
from .sentence_boundary import SentenceBoundaryChunker
__all__ = ['SentenceBoundaryChunker'] |