output model count

This commit is contained in:
Aidan 2025-07-03 01:20:31 -04:00
parent 973d224bf7
commit 2c696654aa

View file

@ -198,6 +198,8 @@ export async function preChecks() {
} }
checked++; checked++;
console.log(`[✨ AI] Pre-checks passed [${checked}/${envs.length + 1}]`) console.log(`[✨ AI] Pre-checks passed [${checked}/${envs.length + 1}]`)
const modelCount = models.reduce((acc, model) => acc + model.models.length, 0);
console.log(`[✨ AI] Found ${modelCount} models.`);
return true return true
} }