Skip to main content

Overview

The ARC-AGI Toolkit provides access to a variety of interactive puzzle environments. Before playing, you can discover what games are available using the get_environments() method.

Listing All Available Games

Use get_environments() to retrieve all games you have access to:
This returns both local games (from your environment_files directory) and remote games available via the API.

Working with Game Information

Each game in the list is an EnvironmentInfo object with useful properties:

Selecting a Game to Play

Once you’ve found a game you want to play, use its game_id with the make() method:

Local vs Remote Games

The games returned depend on your operation mode:

Next Steps