Spaces:
Sleeping
Sleeping
| """Fish Farm OpenEnv Environment — Agentic RL.""" | |
| try: | |
| from .models import FarmAction, FarmObservation, FarmState | |
| __all__ = [ | |
| "FarmAction", | |
| "FarmObservation", | |
| "FarmState", | |
| ] | |
| except ImportError: | |
| # openenv-core requires Python 3.10+; allow sub-packages (e.g. engine, | |
| # constants) to remain importable on older interpreters. | |
| __all__ = [] | |