10 lines
418 B
Python
10 lines
418 B
Python
"""
|
|
FILE: app/core/chunker.py
|
|
DESCRIPTION: Facade für das Chunking-Package. Stellt 100% Abwärtskompatibilität sicher.
|
|
VERSION: 3.3.0
|
|
"""
|
|
from .chunking.chunking_processor import assemble_chunks
|
|
from .chunking.chunking_utils import get_chunk_config, extract_frontmatter_from_text
|
|
from .chunking.chunking_models import Chunk
|
|
|
|
__all__ = ["assemble_chunks", "get_chunk_config", "extract_frontmatter_from_text", "Chunk"] |