Spaces:
Sleeping
Sleeping
| """ | |
| HARvestGym — Root models.py (required by OpenEnv spec). | |
| Re-exports Action and Observation classes from server/models.py. | |
| """ | |
| from server.models import HarvestGymAction as HARvestGymAction | |
| from server.models import HarvestGymObservation as HARvestGymObservation | |
| # OpenEnv spec requires these names at module root | |
| Action = HARvestGymAction | |
| Observation = HARvestGymObservation | |
| __all__ = ["HARvestGymAction", "HARvestGymObservation", "Action", "Observation"] | |