__init__.py 321 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 """ Report Engine。 一个智能报告生成AI代理实现,聚合 Query/Media/Insight 三个子引擎的 Markdown 与论坛讨论,最终落地结构化HTML报告。 """ from .agent import ReportAgent, create_agent __version__ = "1.0.0" __author__ = "Report Engine Team" __all__ = ["ReportAgent", "create_agent"]