Skip to main content
Get up and running with arc-agi in just 4 lines:
import arc_agi
from arcengine import GameAction
arc = arc_agi.Arcade()
env = arc.make("ls20", render_mode="terminal")
See the actions you can take, take one, and check your scorecard:
print(env.action_space)
obs = env.step(GameAction.ACTION1)
print(arc.get_scorecard())