Docs: Update benchmark for openrouter/sherlock-think-alpha

This commit is contained in:
github-actions[bot]
2025-11-16 00:31:00 +00:00
parent fc98f13849
commit 9450b6f936
10 changed files with 208 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
async function calculateDeterminant(matrix) {
const { det } = await import('https://esm.sh/mathjs');
return det(matrix);
}
export default calculateDeterminant;