llm/AGENTS.md
2025-06-03 15:57:59 -07:00

425 B

AGENTS.md

This project uses a Python environment for development and tests.

Setting up a development environment

  1. Install the project with its test dependencies:
    pip install -e '.[test]'
    
  2. Run the tests:
    pytest
    

Building the documentation

Run the following commands if you want to build the docs locally:

cd docs
pip install -r requirements.txt
make html