Installation
Create an isolated environment and install the package in editable mode.
python -m venv .venv
source .venv/bin/activate
pip install -e .[dev]
For OpenAI-backed bots or judges:
pip install -e .[dev,openai]
export OPENAI_API_KEY=your_key_here
To build the documentation as well:
pip install -e .[docs]
sphinx-build -b html docs docs/_build/html