__init__.py 274 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 """ Report Engine 一个智能报告生成AI代理实现 基于三个子agent的输出和论坛日志生成综合HTML报告 """ from .agent import ReportAgent, create_agent __version__ = "1.0.0" __author__ = "Report Engine Team" __all__ = ["ReportAgent", "create_agent"]