RecordableEnvMixin¶
- class maze.core.env.recordable_env_mixin.RecordableEnvMixin¶
This interface provides a standard way of exposing internal MazeState and MazeAction objects for trajectory data recording.
- abstract get_episode_id() str¶
Get ID of the current episode. Usually a UUID converted to a string, but can be a custom string as well.
- Returns:
Episode ID string
- abstract get_maze_action() Any¶
Return the last MazeAction taken in the environment
- Returns:
Last MazeAction object.