Sweep: bits

This commit is contained in:
Enrico Ros
2026-02-05 02:38:39 -08:00
parent 748991249a
commit b0c791a055
2 changed files with 1 additions and 5 deletions
@@ -46,7 +46,6 @@
"tools": ["oai-image-generation","oai-web-search"]
},
"gpt-5.1-chat-latest": {
"oai-reasoning-effort": ["medium"],
"temperature": [1],
"tools": ["oai-image-generation","oai-web-search"]
},
@@ -72,7 +71,6 @@
"tools": ["oai-image-generation","oai-web-search"]
},
"gpt-5.2-chat-latest": {
"oai-reasoning-effort": ["medium"],
"temperature": [1],
"tools": ["oai-image-generation","oai-web-search"]
},
@@ -100,7 +98,6 @@
"temperature-range": [0,2]
},
"o3-deep-research-2025-06-26": {
"oai-reasoning-effort": ["medium"],
"temperature-range": [0,2]
},
"o3-mini-2025-01-31": {
@@ -117,7 +114,6 @@
"temperature-range": [0,2]
},
"o4-mini-deep-research-2025-06-26": {
"oai-reasoning-effort": ["medium"],
"temperature-range": [0,2]
}
}
+1 -1
View File
@@ -635,7 +635,7 @@ function printSweepSummary(results: VendorSweepResult[]): void {
console.log(`${COLORS.bright}${vendor.vendorName}${COLORS.reset} (${vendor.dialect})`);
for (const model of vendor.models) {
console.log(` ${COLORS.bright}${COLORS.yellow}${model.modelId}${COLORS.reset} ${COLORS.dim}(${model.modelLabel})${COLORS.reset}`);
console.log(` ${COLORS.bright}${model.modelId}${COLORS.reset} ${COLORS.dim}(${model.modelLabel})${COLORS.reset}`);
// Group results by sweep name
const bySweep = new Map<string, TestResult[]>();