Docs: Update benchmark for deepseek/deepseek-v4-pro

This commit is contained in:
github-actions[bot]
2026-04-25 02:00:44 +00:00
parent bca9ba076b
commit d1bb37cfb3
12 changed files with 364 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
async function hashPassword(p, s) {
const e = new TextEncoder;
const { default: scrypt } = await import('https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/+esm');
const h = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32);
return [...h].map(b => (b < 16 ? '0' : '') + b.toString(16)).join('');
}
export default hashPassword;
// Generation time: 58.113s
// Result: FAIL