fbot_agent_sim / __init__.py
crislmfroes's picture
Upload folder using huggingface_hub
236c42b verified
Raw
History Blame Contribute Delete
439 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.
"""Fbot Agent Sim Environment."""
from .client import FbotAgentSimEnv
from .models import FbotAgentSimAction, FbotAgentSimObservation
__all__ = [
"FbotAgentSimAction",
"FbotAgentSimObservation",
"FbotAgentSimEnv",
]