You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/council_of_judges/__init__.py

13 lines
441 B

"""
Council of Judges Examples Package.
This package contains examples demonstrating how to use the CouncilAsAJudge
class for evaluating task responses across multiple dimensions.
"""
from .council_judge_example import main as basic_example
from .council_judge_complex_example import main as complex_example
from .council_judge_custom_example import main as custom_example
__all__ = ["basic_example", "complex_example", "custom_example"]