SRE_Env / server /__init__.py
Atharva1232's picture
Upload folder using huggingface_hub
652881d verified
Raw
History Blame Contribute Delete
592 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.
"""SRE Terminal Agent environment server components."""
# Lazy import to avoid circular dependencies and missing optional dependencies
def __getattr__(name):
if name == "SREEnvironment":
from .SRE_Env_environment import SREEnvironment
return SREEnvironment
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
__all__ = ["SREEnvironment"]