local-frontier / scripts /validate-profiles.mjs
Onur Solmaz
feat: add audited model profile bounds
04b48d1
Raw
History Blame Contribute Delete
304 Bytes
import { validateProfiles } from "./profile-utils.mjs";
const result = validateProfiles();
if (result.errors.length) {
console.error(result.errors.join("\n"));
process.exit(1);
}
console.log(
`validated ${result.profiles.length} model profiles for ${result.catalogCount} scraped model rows`,
);