Skip to content

Commit 907f9a8

Browse files
fix(blog): render markdown links inside Figure captions
Widen Figure caption prop from string to ReactNode so MDX captions can hold inline JSX (e.g. a source link). Convert the DSv4-Pro-Max vs Claude/GPT/Gemini caption to a JSX expression so the DeepSeek V4 preview release source renders as a real underlined external link instead of raw markdown syntax. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent deb7aad commit 907f9a8

2 files changed

Lines changed: 18 additions & 3 deletions

File tree

packages/app/content/blog/mi355x-deepseek-v4-pro-sglang-110x-in-26-days.mdx

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,23 @@ DeepSeek published the V4-Pro-Max evaluation at preview against Claude Opus 4.6,
4646
srcLight="/images/mi355x-deepseek-v4-pro-sglang-110x-in-26-days/quality-benchmarks-light.png"
4747
srcDark="/images/mi355x-deepseek-v4-pro-sglang-110x-in-26-days/quality-benchmarks-dark.png"
4848
alt="Bar chart comparing DeepSeek-V4-Pro-Max (blue hatched) against Claude Opus 4.6-Max, GPT-5.4-xHigh, and Gemini 3.1-Pro-High across SimpleQA Verified, HLE, Apex Shortlist, Codeforces, SWE Verified, Terminal Bench 2.0, and Toolathlon. DSv4 leads on SimpleQA Verified (57.9), Apex Shortlist (90.2), Codeforces (3206), and SWE Verified (80.6, tied)."
49-
caption="DeepSeek-V4-Pro-Max vs Claude Opus 4.6 / GPT-5.4 / Gemini 3.1 on knowledge+reasoning and agentic benchmarks (source: [DeepSeek V4 preview release](https://api-docs.deepseek.com/news/news260424)). DSv4-Pro leads on SimpleQA (57.9 vs Opus 46.2 / GPT 45.3), Apex Shortlist (90.2 vs Opus 85.9), Codeforces (3206 vs Opus 3168), and ties on SWE Verified (80.6 vs Opus 80.8 / GPT 80.6). Trails on Terminal Bench 2.0 (67.9 vs GPT 75.1) and Toolathlon (51.8 vs GPT 54.6).
50-
"
49+
caption={
50+
<>
51+
DeepSeek-V4-Pro-Max vs Claude Opus 4.6 / GPT-5.4 / Gemini 3.1 on knowledge+reasoning and
52+
agentic benchmarks (source:{' '}
53+
<a
54+
href="https://api-docs.deepseek.com/news/news260424"
55+
target="_blank"
56+
rel="noopener noreferrer"
57+
className="underline"
58+
>
59+
DeepSeek V4 preview release
60+
</a>
61+
). DSv4-Pro leads on SimpleQA (57.9 vs Opus 46.2 / GPT 45.3), Apex Shortlist (90.2 vs Opus
62+
85.9), Codeforces (3206 vs Opus 3168), and ties on SWE Verified (80.6 vs Opus 80.8 / GPT
63+
80.6). Trails on Terminal Bench 2.0 (67.9 vs GPT 75.1) and Toolathlon (51.8 vs GPT 54.6).
64+
</>
65+
}
5166
/>
5267

5368
That quality bar is the reason the AMD SGLang team under the leadership of HaiShaw treated MI355X serving as a 14-day sprint: a frontier open-weights coding model is worth the engineering investment, and once a usable curve exists on AMD silicon every percentage point of perf/$ on the serving stack moves real workloads.

packages/app/src/components/blog/mdx-components.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export function createMdxComponents(): Record<string, React.ComponentType<any>>
102102
srcLight?: string;
103103
srcDark?: string;
104104
alt?: string;
105-
caption?: string;
105+
caption?: ReactNode;
106106
}) => {
107107
const isFirst = figureCount === 0;
108108
figureCount++;

0 commit comments

Comments
 (0)