Docs: Update benchmark for openai/gpt-5.2

This commit is contained in:
github-actions[bot]
2025-12-11 18:42:54 +00:00
parent 0e0b16be72
commit 901bde7c8a
11 changed files with 379 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
let _d3
async function findLISLength(a) {
if (!Array.isArray(a)) throw new TypeError("Expected an array of numbers")
let { bisectLeft: b } = await (_d3 ||= import("https://cdn.jsdelivr.net/npm/d3-array@3/+esm"))
let t = []
for (let x of a) t[b(t, x)] = x
return t.length
}
export default findLISLength;
// Generation time: 9.821s
// Result: PASS