/** * llmindex.io — CLI: pnpm index:refit — trigger IRT + BT refit, write new score run * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * License: Proprietary — © Simon-Pierre Boucher, all rights reserved */ import { prisma } from '@llmindex/db'; import '../env'; import { runRefit } from '../refit'; runRefit() .then((r) => { if (r) console.log(JSON.stringify(r)); else process.exitCode = 1; }) .catch((err) => { console.error(String(err)); process.exitCode = 1; }) .finally(() => prisma.$disconnect());