fish_farm_env / models.py
rahul24raj's picture
Upload folder using huggingface_hub
585cd37 verified
raw
history blame contribute delete
330 Bytes
"""Data models for the Fish Farm OpenEnv Environment.
Re-exports from the internal package so that the OpenEnv push structure
(which expects models.py at the environment root) works correctly.
"""
from src.agentic_rl.models import FarmAction, FarmObservation, FarmState
__all__ = ["FarmAction", "FarmObservation", "FarmState"]