Docs: Update benchmark for openai/gpt-5.5 EFF:high

This commit is contained in:
github-actions[bot]
2026-05-18 02:58:30 +00:00
parent 275b423549
commit 542af993bf
12 changed files with 714 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
async function analyzeGPS(readings, boundary) {
const turf = await import("https://esm.sh/@turf/turf@7.2.0");
const valid = readings
.filter(({ loc }) =>
turf.booleanPointInPolygon(turf.point(loc), boundary, { ignoreBoundary: true })
)
.sort((a, b) => a.ts - b.ts);
if (valid.length < 2) return 0;
const line = turf.lineString(valid.map(({ loc }) => loc));
const km = turf.length(line, { units: "kilometers" });
return +km.toFixed(2);
}
export default analyzeGPS;
// Generation time: 13.413s
// Result: PASS