text(accuracy): add Grok-4-fast, remove default temperature

This commit is contained in:
Johann Schopplich
2025-10-28 22:54:00 +01:00
parent e400e68ad6
commit ecf578a7dc
13 changed files with 301 additions and 117 deletions

View File

@@ -84,8 +84,8 @@ for (const model of activeModels) {
const rpmLimit = MODEL_RPM_LIMITS[modelId]
const queue = new PQueue({
concurrency: DEFAULT_CONCURRENCY,
intervalCap: rpmLimit,
interval: rpmLimit ? 60_000 : undefined,
intervalCap: rpmLimit ?? Infinity,
interval: rpmLimit ? 60_000 : 0,
})
const evalSpinner = prompts.spinner()