| name: number-guess-env | |
| version: 1.0.0 | |
| description: A number guessing game environment where agents learn binary search strategies | |
| author: OpenEnv Community | |
| license: BSD-3-Clause | |
| # Environment configuration | |
| environment: | |
| type: game | |
| action_space: discrete | |
| observation_space: structured | |
| # Tags for discovery | |
| tags: | |
| - game | |
| - reasoning | |
| - binary-search | |
| - beginner-friendly | |
| # Python dependencies (will be installed in container) | |
| dependencies: | |
| - fastapi>=0.104.0 | |
| - uvicorn>=0.24.0 | |
| - pydantic>=2.0.0 | |
| - requests>=2.25.0 | |
| # Optional: Add links | |
| links: | |
| repository: https://github.com/anushadudi/OpenEnv | |
| documentation: https://github.com/anushadudi/OpenEnv/blob/main/src/envs/number_guess_env/README.md | |