Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_en (ubuntu-latest, 3.10) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_zh (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.12) (push) Has been cancelled
13 lines
280 B
Python
13 lines
280 B
Python
# -*- coding: utf-8 -*-
|
|
"""The evaluator module in AgentScope."""
|
|
|
|
from ._evaluator_base import EvaluatorBase
|
|
from ._ray_evaluator import RayEvaluator
|
|
from ._general_evaluator import GeneralEvaluator
|
|
|
|
__all__ = [
|
|
"EvaluatorBase",
|
|
"RayEvaluator",
|
|
"GeneralEvaluator",
|
|
]
|