anushadudi's picture
Upload folder using huggingface_hub
4d0e1b9 verified
raw
history blame contribute delete
535 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.
"""
Number Guessing Game Environment for OpenEnv.
A simple RL environment where agents learn to guess numbers efficiently.
Perfect for teaching binary search strategies!
"""
from .client import NumberGuessEnv
from .models import GuessAction, GuessObservation
__all__ = ["NumberGuessEnv", "GuessAction", "GuessObservation"]