mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
- 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
9 lines
237 B
Python
9 lines
237 B
Python
"""
|
|
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"]
|