Docs: Update benchmark for google/gemini-3.5-flash

This commit is contained in:
github-actions[bot]
2026-05-19 23:06:38 +00:00
parent a037a78102
commit 1dfaf490cd
12 changed files with 389 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
export const parseMarkdown = async (markdown) => {
try {
const { marked } = await import('https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js');
return marked.parse(markdown || '');
} catch (error) {
console.error('Failed to parse Markdown:', error);
return '';
}
};
export default parseMarkdown;
// Generation time: 8.849s
// Result: PASS