Docs: Update benchmark for moonshotai/kimi-k2.5

This commit is contained in:
github-actions[bot]
2026-01-28 02:13:45 +00:00
parent 0aa1b6e96e
commit 0f6d112bfb
11 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
const analyzeGPS = async (r, b) => {
const {booleanPointInPolygon, lineString, length} = await import('https://cdn.jsdelivr.net/npm/@turf/turf@6/turf.min.js');
const v = r.filter(x => booleanPointInPolygon({type: 'Point', coordinates: x.loc}, b, {ignoreBoundary: true})).sort((a, b) => a.ts - b.ts);
return v.length < 2 ? 0 : Math.round(length(lineString(v.map(x => x.loc))) * 100) / 100;
};
export default analyzeGPS;
// Generation time: 30.668s
// Result: FAIL