Overview
The ARC-AGI Toolkit provides access to a variety of interactive puzzle environments. Before playing, you can discover what games are available using theget_environments() method.
Listing All Available Games
Useget_environments() to retrieve all games you have access to:
environment_files directory) and remote games available via the API.
Working with Game Information
Each game in the list is anEnvironmentInfo object with useful properties:
Selecting a Game to Play
Once you’ve found a game you want to play, use itsgame_id with the make() method:
Local vs Remote Games
The games returned depend on your operation mode:| Mode | Games Returned |
|---|---|
NORMAL (default) | Local + Remote games |
ONLINE | Remote games only |
OFFLINE | Local games only |

