File size: 716 Bytes
4d0e1b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
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
|