From d688d6057b342d2c3d60b54bb4f498cabe6af549 Mon Sep 17 00:00:00 2001 From: Cristiano Calcagno Date: Tue, 21 Oct 2025 05:23:23 +0200 Subject: [PATCH] Fix command to copy .env example file --- index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.mdx b/index.mdx index 265bc4e..df7a5de 100644 --- a/index.mdx +++ b/index.mdx @@ -62,7 +62,7 @@ git clone https://github.com/arcprize/ARC-AGI-3-Agents.git && cd ARC-AGI-3-Agent ### 3. Set up environment variables ```bash -cp .env-example .env +cp .env.example .env ``` You will need to set the `ARC_API_KEY` in the `.env` file. You can get your ARC_API_KEY from your user profile after registration on the [ARC-AGI-3 website](https://three.arcprize.org). @@ -84,4 +84,4 @@ After running your first agent: 2. **Explore a game's replay** - Via your scorecard, view the per-game replays of your agent (ex: `https://three.arcprize.org/replay/ls20-016295f7601e/794795bf-d05f-4bf5-885a-b8a8f37a89fd`) 3. **Try a different game** - Run `uv run main.py --agent=random --game=<>` See a list of games available at three.arcprize.org or via [api](/api-reference/games/list-available-games) 4. **Try using a LLM** - Try `uv run main.py --agent=llm --game=ls20` (requires an `OPENAI_API_KEY` in `.env`) or explore other [templates](/partner_templates/langchain). -5. **Build your own agent** - Follow the [Agents Quickstart](./agents-quickstart) guide and [view the agent tutorial](https://www.youtube.com/watch?v=xEVg9dcJMkw). \ No newline at end of file +5. **Build your own agent** - Follow the [Agents Quickstart](./agents-quickstart) guide and [view the agent tutorial](https://www.youtube.com/watch?v=xEVg9dcJMkw).