__init__.py 391 Bytes
"""
Report Engine核心工具集合。

包含模板切片、章节存储等基础能力,供agent流水线复用。
"""

from .template_parser import TemplateSection, parse_template_sections
from .chapter_storage import ChapterStorage
from .stitcher import DocumentComposer

__all__ = [
    "TemplateSection",
    "parse_template_sections",
    "ChapterStorage",
    "DocumentComposer",
]