| # 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"] | |