julia_env-v2-1-0 / server /__init__.py
burtenshaw's picture
burtenshaw HF Staff
Upload folder using huggingface_hub
11952db verified
raw
history blame contribute delete
613 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.
"""Julia Environment Server."""
# Support both in-repo and standalone imports
try:
from .julia_codeact_env import JuliaCodeActEnv
from .julia_transforms import create_safe_julia_transform
except ImportError:
from server.julia_codeact_env import JuliaCodeActEnv
from server.julia_transforms import create_safe_julia_transform
__all__ = ["JuliaCodeActEnv", "create_safe_julia_transform"]