Spaces:
Sleeping
Sleeping
File size: 678 Bytes
7f40db3 08f8699 7f40db3 08f8699 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | """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__",
]
|