22 lines
543 B
Python
22 lines
543 B
Python
# Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""
|
|
Report Quality Evaluation Module for DeerFlow.
|
|
|
|
This module provides objective methods to evaluate generated report quality,
|
|
including automated metrics and LLM-based evaluation.
|
|
"""
|
|
|
|
from .evaluator import ReportEvaluator
|
|
from .metrics import ReportMetrics, compute_metrics
|
|
from .llm_judge import LLMJudge, evaluate_with_llm
|
|
|
|
__all__ = [
|
|
"ReportEvaluator",
|
|
"ReportMetrics",
|
|
"compute_metrics",
|
|
"LLMJudge",
|
|
"evaluate_with_llm",
|
|
]
|