"""OpenEnv root package shim — re-exports the public API from ``physix``. OpenEnv's CLI validator expects ``__init__.py``, ``client.py``, and ``models.py`` at the env-directory root. The real implementation lives under ``physix/``; these root files are thin re-exports so the wheel build and runtime imports stay at ``from physix.* import ...``. """ from physix import ( # noqa: F401 GRAMMAR_HINT, PhysiXAction, PhysiXEnv, PhysiXObservation, PhysiXState, RewardBreakdown, __version__, ) __all__ = [ "PhysiXEnv", "PhysiXAction", "PhysiXObservation", "PhysiXState", "RewardBreakdown", "GRAMMAR_HINT", "__version__", ]