Spaces:
Sleeping
Sleeping
File size: 387 Bytes
585cd37 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """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__ = []
|