Spaces:
Sleeping
Sleeping
cleanup: trim verbose comments, drop dead code, fix stale tests, proper Dockerfile + .gitignore
7f40db3 verified | """OpenEnv root models shim — re-exports ``physix.models``.""" | |
| from physix.models import ( # noqa: F401 | |
| CONVERGENCE_THRESHOLD, | |
| DEFAULT_MAX_TURNS, | |
| REWARD_WEIGHTS, | |
| HistoryEntry, | |
| PhysiXAction, | |
| PhysiXObservation, | |
| PhysiXState, | |
| RewardBreakdown, | |
| ) | |
| __all__ = [ | |
| "CONVERGENCE_THRESHOLD", | |
| "DEFAULT_MAX_TURNS", | |
| "REWARD_WEIGHTS", | |
| "HistoryEntry", | |
| "PhysiXAction", | |
| "PhysiXObservation", | |
| "PhysiXState", | |
| "RewardBreakdown", | |
| ] | |