Docs: Update benchmark for anthropic/claude-fable-5

This commit is contained in:
github-actions[bot]
2026-06-12 00:26:12 +00:00
parent 2d6858fdb4
commit 0819bbafd9
12 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
let markedPromise;
const loadMarked = () =>
markedPromise ??= import('https://cdn.jsdelivr.net/npm/marked@12.0.2/+esm');
async function parseMarkdown(markdown) {
if (typeof markdown !== 'string') throw new TypeError('parseMarkdown expects a string');
const { marked } = await loadMarked();
return marked.parse(markdown, { gfm: true, async: true });
}
export default parseMarkdown;
// Generation time: 10.393s
// Result: PASS