Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.arcprize.org/llms.txt

Use this file to discover all available pages before exploring further.

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())