fish_farm_env / src /agentic_rl /__init__.py
rahul24raj's picture
Upload folder using huggingface_hub
585cd37 verified
raw
history blame contribute delete
387 Bytes
"""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__ = []