Docs: Update benchmark for openai/gpt-5.3-codex

This commit is contained in:
github-actions[bot]
2026-02-24 23:25:47 +00:00
parent e913b42a5d
commit dce9c2a746
12 changed files with 422 additions and 27 deletions

View File

@@ -1,4 +1,16 @@
const loadHandlebars = (() => {
let p;
return () =>
p ??= import('https://cdn.jsdelivr.net/npm/handlebars@4.7.8/+esm').then(
m => m.default ?? m
);
})();
async function renderTemplate(template, data = {}) {
if (typeof template !== 'string') throw new TypeError('template must be a string');
if (!data || typeof data !== 'object' || Array.isArray(data)) throw new TypeError('data must be an object');
return (await loadHandlebars()).compile(template)(data);
}
export default renderTemplate;
// Generation time: 0.438s
// Result: FAIL
// Generation time: 7.680s
// Result: PASS