Instructions to use johnsutor/so101-nexus-envs with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LeRobot
How to use johnsutor/so101-nexus-envs with LeRobot:
- Notebooks
- Google Colab
- Kaggle
| """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"] | |