Files
bettafish-company/ReportEngine/core/__init__.py
T
2025-11-13 10:56:28 +08:00

17 lines
391 B
Python

"""
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",
]