rohit2008/celestial-red-team2
0
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7"""Celestial Red Team2 Environment."""8 9from .client import CelestialRedTeam2Env10from .models import CelestialRedTeam2Action, CelestialRedTeam2Observation11 12__all__ = [13 "CelestialRedTeam2Action",14 "CelestialRedTeam2Observation",15 "CelestialRedTeam2Env",16]17 