in scripts/inference-providers/scripts/generate.ts [215:222]
async function fetchOneSpec(
task: PipelineType,
name: SpecNameType,
): Promise<JsonObject | undefined> {
const url = SPECS_URL_TEMPLATE({ task, name });
console.log(` 🕸️ Fetching ${task} ${name} specs`);
return (await authFetchJson(url)) ?? undefined;
}