reasoning-gym/reasoning_gym/coaching/__init__.py
Andreas Koepf 8772041afb Add attributes for curriculum
Co-authored-by: EduardDurech <39579228+EduardDurech@users.noreply.github.com>
2025-02-10 18:58:07 +01:00

14 lines
380 B
Python

from .attributes import AttributeDefinition, AttributeType, RangeAttributeDefinition
from .base_curriculum import BaseCurriculum
from .coach import Coach, GroupedScores, ScoreBoard, ScoreStats
__all__ = [
"AttributeType",
"AttributeDefinition",
"RangeAttributeDefinition",
"BaseCurriculum",
"Coach",
"ScoreBoard",
"GroupedScores",
"ScoreStats",
]