Install and set up Poetiq for ARC-AGI reproduction
mainTo reproduce Poetiq's ARC-AGI results, follow these steps to set up a Python virtual environment and install the necessary dependencies.
Prerequisites
- Python 3.11 or higher
- API keys for the models you intend to test (e.g.,
GEMINI_API_KEY,OPENAI_API_KEY).
Installation Steps
- Create and activate a virtual environment:
python -m venv .venv source .venv/bin/activate - Install dependencies:
pip install -r requirements.txt - Configure environment variables:
Create a
.envfile in the root directory and add your API keys:GEMINI_API_KEY=your_key_here OPENAI_API_KEY=your_key_here
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt