Docs: Update benchmark for openai/gpt-5.1-codex-max

This commit is contained in:
github-actions[bot]
2025-12-05 16:05:03 +00:00
parent e795e1afbb
commit f276121fb0
11 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
async function analyzeGPS(readings, boundary) {
const { point, booleanPointInPolygon, lineString, length } = await import('https://cdn.skypack.dev/@turf/turf')
const v = readings.filter(r => booleanPointInPolygon(point(r.loc), boundary, { ignoreBoundary: true })).sort((a, b) => a.ts - b.ts)
if (v.length < 2) return 0
const l = lineString(v.map(r => r.loc))
return +length(l, { units: 'kilometers' }).toFixed(2)
}
export default analyzeGPS;
// Generation time: 10.671s
// Result: PASS