physix / client.py
Pratyush-01's picture
Upload folder using huggingface_hub
0e24aff verified
"""OpenEnv root client shim — re-exports ``physix.client``.
OpenEnv's CLI validator and auto-discovery expect ``client.py`` at the
env-directory root. The real implementation lives in
``physix/client.py``; this file just re-exports it so the OpenEnv
contract is satisfied without duplicating any code.
"""
from physix.client import PhysiXEnv, PhysixEnv # noqa: F401
__all__ = ["PhysiXEnv", "PhysixEnv"]