code-review-env / server /__init__.py
Dolphin-Syndrom's picture
v1 code review env
d1cfa81
raw
history blame contribute delete
483 Bytes
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""Code Review Env environment server components."""
from .code_review_env_environment import CodeReviewEnvironment
from .graders import grade_review
from .tasks import TASKS, Task, get_task
__all__ = ["CodeReviewEnvironment", "Task", "TASKS", "get_task", "grade_review"]