so101-nexus-envs / envs /WarpStackCube-v1.py
johnsutor's picture
Publish SO101-Nexus EnvHub entry points
cd86289 verified
Raw
History Blame Contribute Delete
366 Bytes
"""LeRobot EnvHub entry point for the WarpStackCube-v1 environment.
The implementation lives in ``so101_nexus.envhub`` so it is versioned and tested
with the library (see ``requirements.txt``).
"""
from functools import partial
from so101_nexus.envhub import make_env as _make_env
make_env = partial(_make_env, env_id="WarpStackCube-v1")
__all__ = ["make_env"]