physix-live / __init__.py
Pratyush-01's picture
cleanup: trim verbose comments, drop dead code, fix stale tests, proper Dockerfile + .gitignore
7f40db3 verified
"""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__",
]