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
17 lines
331 B
Python
17 lines
331 B
Python
# -*- coding: utf-8 -*-
|
|
"""The ACE benchmark related implementations in AgentScope."""
|
|
|
|
from ._ace_benchmark import ACEBenchmark
|
|
from ._ace_metric import (
|
|
ACEAccuracy,
|
|
ACEProcessAccuracy,
|
|
)
|
|
from ._ace_tools_zh import ACEPhone
|
|
|
|
__all__ = [
|
|
"ACEBenchmark",
|
|
"ACEPhone",
|
|
"ACEAccuracy",
|
|
"ACEProcessAccuracy",
|
|
]
|