SPB Git

spb/llmindex Public

The discriminative, contamination-resistant, fully transparent LLM ranking — updated live.

TypeScript 77.9% TeX 15.2% Python 3.7% SQL 1.4% JavaScript 1.1% Shell 0.5%
445 B · 20 lines make
Raw Blame History
1# llmindex.io — psychometrics make targets2# Author:  Simon-Pierre Boucher3# Contact: contact@spboucher.ai4# License: Proprietary — © Simon-Pierre Boucher, all rights reserved56PY ?= python37INPUT ?= ../../data/runs/latest-input.json8OUTPUT ?= ../../data/runs/latest-output.json910.PHONY: fit test install1112install:13	$(PY) -m pip install -r requirements.txt1415fit:16	$(PY) fit.py --input $(INPUT) --output $(OUTPUT)1718test:19	$(PY) -m pytest -q20