File size: 330 Bytes
585cd37
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""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"]