14 lines
345 B
Python
14 lines
345 B
Python
"""
|
|
Report Engine
|
|
一个智能报告生成AI代理实现
|
|
基于三个子agent的输出和论坛日志生成综合HTML报告
|
|
"""
|
|
|
|
from .agent import ReportAgent, create_agent
|
|
from .utils.config import Config, load_config
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Report Engine Team"
|
|
|
|
__all__ = ["ReportAgent", "create_agent", "Config", "load_config"]
|