Skip to content

Commit bd9133b

Browse files
authored
Add more quotes 2 (#40)
* add SGLang quote from Mingyi Lu * exclude lower-tier quotes from carousel, keep on supporters page * shorten PyTorch Foundation to PyTorch in carousel labels
1 parent 54ad401 commit bd9133b

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

393 KB
Loading

packages/app/src/components/page-content.tsx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,23 @@ export function PageContent({ initialTab = 'inference' }: { initialTab?: string
303303
<div className="mt-4 pt-4 border-t border-border/50">
304304
<QuoteCarousel
305305
quotes={QUOTES.filter(
306-
(q) => !['NVIDIA', 'AMD', 'Supermicro', 'Vultr'].includes(q.org),
306+
(q) =>
307+
![
308+
'NVIDIA',
309+
'AMD',
310+
'Supermicro',
311+
'Vultr',
312+
'Prime Intellect',
313+
'DatologyAI',
314+
'Stas Bekman',
315+
].includes(q.org),
307316
)}
308317
overrides={{
309318
order: ['OpenAI'],
310-
labels: { 'Together AI': 'Tri Dao' },
319+
labels: {
320+
'Together AI': 'Tri Dao',
321+
'PyTorch Foundation': 'PyTorch',
322+
},
311323
}}
312324
moreHref="/quotes"
313325
/>

packages/app/src/components/quotes/quotes-data.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,11 @@ export const QUOTES: Quote[] = [
183183
title: 'Developer & Author of Machine Learning Engineering Open Book',
184184
org: 'Stas Bekman',
185185
},
186+
{
187+
text: "SGLang is the inference engine behind many production inference factories such as xAI's Grok, earning its recognition as THE Inference King. At scale, we see firsthand how much performance varies across hardware, models, and configurations. InferenceX\u2122 benchmarks SGLang across every major GPU platform nightly, capturing that variance in a way no other benchmark does, continuously, & reproducibly.",
188+
name: 'Mingyi Lu',
189+
title: 'SGLang Product Lead',
190+
org: 'SGLang',
191+
logo: 'sglang.png',
192+
},
186193
];

0 commit comments

Comments
 (0)