calendar-gym / server /calendar_environment.py
santosh-iima's picture
Upload 91 files
beb8990 verified
raw
history blame contribute delete
598 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.
"""
Calendar Environment wrapper.
This file provides the standard environment class name expected in OpenEnv
layouts while reusing the existing MCP environment implementation.
"""
from .openenv_wrapper.mcp_env_environment import MCPEnvironment
class CalendarEnvironment(MCPEnvironment):
"""Calendar environment backed by MCP tools."""
pass
__all__ = ["CalendarEnvironment"]