toolforge-env / graders.py
Hugging-coder14's picture
Upload folder using huggingface_hub
2b3313a verified
Raw
History Blame Contribute Delete
344 Bytes
"""
Backward-compatible grader re-exports.
The canonical graders now live in server/graders.py.
This file re-exports them so existing imports still work.
"""
from server.graders import grade_easy, grade_medium, grade_hard, EpisodeGrader
__all__ = [
"grade_easy",
"grade_medium",
"grade_hard",
"EpisodeGrader",
]