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%
1/**2 * llmindex.io — CLI: pnpm index:refit — trigger IRT + BT refit, write new score run3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * License: Proprietary — © Simon-Pierre Boucher, all rights reserved6 */7import { prisma } from '@llmindex/db';8import '../env';9import { runRefit } from '../refit';1011runRefit()12 .then((r) => {13 if (r) console.log(JSON.stringify(r));14 else process.exitCode = 1;15 })16 .catch((err) => {17 console.error(String(err));18 process.exitCode = 1;19 })20 .finally(() => prisma.$disconnect());21