Docs: Update benchmark for anthropic/claude-opus-4.6 TEMP:0.7

This commit is contained in:
github-actions[bot]
2026-02-05 19:39:59 +00:00
parent b0c93b9efa
commit 73a72a2b7e
11 changed files with 298 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
async function analyzeGPS(readings, boundary) {
const turf = await import("https://cdn.jsdelivr.net/npm/@turf/turf@7/+esm");
const valid = readings
.filter(r => turf.booleanPointInPolygon(turf.point(r.loc), boundary, { ignoreBoundary: true }))
.sort((a, b) => a.ts - b.ts);
if (valid.length < 2) return 0;
const line = turf.lineString(valid.map(r => r.loc));
const len = turf.length(line, { units: "kilometers" });
return Math.round(len * 100) / 100;
}
export default analyzeGPS;
// Generation time: 3.774s
// Result: PASS