REPL
ARC-AGI REPL Python Example
Get up and running with arc-agi in just 4 lines:
See the actions you can take, take one, and check your scorecard:
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ARC-AGI REPL Python Example
import arc_agi
from arcengine import GameAction
arc = arc_agi.Arcade()
env = arc.make("ls20", render_mode="terminal")
print(env.action_space)
obs = env.step(GameAction.ACTION1)
print(arc.get_scorecard())
Was this page helpful?
