Add Word Hunt environment for training models on 4x4 letter grids

- Trie-based solver, official scoring, normalized rewards
- Configurable token limit and detailed README with dictionary download link
- Removes large Dictionary.txt from tracking and adds ignore rules
- All tests pass and pre-commit hooks are clean
This commit is contained in:
Abhaykhanna3 2025-07-28 00:28:14 -05:00
parent 6604a2255b
commit b5234d4214
9 changed files with 1214 additions and 0 deletions

View file

@ -0,0 +1,9 @@
"""
Word Hunt Environment Package
"""
from .word_hunt_config import WordHuntEnvConfig
from .word_hunt_env import WordHuntEnv
from .word_hunt_solver import WordHuntSolver
__all__ = ["WordHuntEnv", "WordHuntEnvConfig", "WordHuntSolver"]