diff --git a/packages/app/public/logos/sglang.png b/packages/app/public/logos/sglang.png new file mode 100644 index 00000000..2a8bc258 Binary files /dev/null and b/packages/app/public/logos/sglang.png differ diff --git a/packages/app/src/components/page-content.tsx b/packages/app/src/components/page-content.tsx index 6c706137..0f6fc4aa 100644 --- a/packages/app/src/components/page-content.tsx +++ b/packages/app/src/components/page-content.tsx @@ -303,11 +303,23 @@ export function PageContent({ initialTab = 'inference' }: { initialTab?: string
!['NVIDIA', 'AMD', 'Supermicro', 'Vultr'].includes(q.org), + (q) => + ![ + 'NVIDIA', + 'AMD', + 'Supermicro', + 'Vultr', + 'Prime Intellect', + 'DatologyAI', + 'Stas Bekman', + ].includes(q.org), )} overrides={{ order: ['OpenAI'], - labels: { 'Together AI': 'Tri Dao' }, + labels: { + 'Together AI': 'Tri Dao', + 'PyTorch Foundation': 'PyTorch', + }, }} moreHref="/quotes" /> diff --git a/packages/app/src/components/quotes/quotes-data.ts b/packages/app/src/components/quotes/quotes-data.ts index 4a7fcb6d..7f564e4c 100644 --- a/packages/app/src/components/quotes/quotes-data.ts +++ b/packages/app/src/components/quotes/quotes-data.ts @@ -183,4 +183,11 @@ export const QUOTES: Quote[] = [ title: 'Developer & Author of Machine Learning Engineering Open Book', org: 'Stas Bekman', }, + { + 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.", + name: 'Mingyi Lu', + title: 'SGLang Product Lead', + org: 'SGLang', + logo: 'sglang.png', + }, ];