10 lines
389 B
Python
10 lines
389 B
Python
"""
|
|
FILE: app/core/chunking/__init__.py
|
|
DESCRIPTION: Package-Einstiegspunkt für Chunking. Exportiert assemble_chunks.
|
|
VERSION: 3.3.0
|
|
"""
|
|
from .chunking_processor import assemble_chunks
|
|
from .chunking_utils import get_chunk_config, extract_frontmatter_from_text
|
|
from .chunking_models import Chunk
|
|
|
|
__all__ = ["assemble_chunks", "get_chunk_config", "extract_frontmatter_from_text", "Chunk"] |