Docs: Update benchmark for google/gemini-3.1-pro-preview

This commit is contained in:
github-actions[bot]
2026-02-19 16:23:35 +00:00
parent f3e94e99ff
commit 75b92c832f
12 changed files with 219 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
const analyzeGPS = async (r, b) => {
const t = await import('https://cdn.jsdelivr.net/npm/@turf/turf/+esm');
const v = r
.filter(p => t.booleanPointInPolygon(t.point(p.loc), b, { ignoreBoundary: true }))
.sort((x, y) => x.ts - y.ts);
return v.length < 2 ? 0 : +t.length(t.lineString(v.map(p => p.loc))).toFixed(2);
};
export default analyzeGPS;
// Generation time: 23.653s
// Result: PASS