Steps the environment with the given action.
(self, action: types.Part)
| 50 | """Environment protocol.""" |
| 51 | |
| 52 | def step(self, action: types.Part) -> EnvResponse: |
| 53 | """Steps the environment with the given action.""" |
| 54 | ... |
| 55 | |
| 56 | def reset(self, task_index: int) -> EnvResponse: |
| 57 | """Resets the environment to the given task index.""" |