# llmindex.io — psychometrics make targets # Author: Simon-Pierre Boucher # Contact: contact@spboucher.ai # License: Proprietary — © Simon-Pierre Boucher, all rights reserved PY ?= python3 INPUT ?= ../../data/runs/latest-input.json OUTPUT ?= ../../data/runs/latest-output.json .PHONY: fit test install install: $(PY) -m pip install -r requirements.txt fit: $(PY) fit.py --input $(INPUT) --output $(OUTPUT) test: $(PY) -m pytest -q