Docs: Update benchmark for openai/gpt-5.5 EFF:high

This commit is contained in:
github-actions[bot]
2026-05-18 02:58:30 +00:00
parent 275b423549
commit 542af993bf
12 changed files with 714 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
const parseMarkdown = (() => {
let libs;
return async markdown => {
libs ||= Promise.all([
import("https://cdn.jsdelivr.net/npm/marked@13/+esm"),
import("https://cdn.jsdelivr.net/npm/dompurify@3/+esm")
]);
const [{ marked }, { default: DOMPurify }] = await libs;
marked.use({
gfm: true,
breaks: false,
async: false
});
return DOMPurify.sanitize(
marked.parse(String(markdown ?? ""))
);
};
})();
export default parseMarkdown;
// Generation time: 13.490s
// Result: PASS