Docs: Update benchmark for openai/gpt-5.1-codex-max

This commit is contained in:
github-actions[bot]
2025-12-05 16:05:03 +00:00
parent e795e1afbb
commit f276121fb0
11 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
async function validateJSON(d,s){
const{default:A}=await import('https://cdn.skypack.dev/ajv@8.12.0')
const a=new A
const v=a.compile(s)
const ok=v(d)
return ok?{valid:!0,errors:[]}:{valid:!1,errors:v.errors.map(e=>(e.instancePath||'root')+' '+e.message)}
}
export default validateJSON;
// Generation time: 4.189s
// Result: PASS