Skip to content

Commit df1795a

Browse files
authored
site: add anthropic logo to site (#1381)
**Description** This PR adds the Anthropic logo to the LLM providers section and sorts all providers alphabetically for better organization. **Changes:** - Added Anthropic SVG logo to static assets - Updated provider list in both README.md and website component - Implemented alphabetical sorting for the provider list on homepage - Updated website description to clarify that providers are displayed alphabetically **Related Issues/PRs:** Related PR: #1369 --------- Signed-off-by: Erica Hughberg <[email protected]>
1 parent 69ac17e commit df1795a

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ Envoy AI Gateway supports a wide range of AI providers, making it easy to integr
8383
<br><sub><b>Tetrate Agent Router Service</b></sub>
8484
</td>
8585
</tr>
86+
<tr>
87+
<td align="center" width="120">
88+
<img src="site/static/img/providers/anthropic.svg" width="60" height="60" alt="Anthropic"/>
89+
<br><sub><b>Anthropic</b></sub>
90+
</td>
91+
</tr>
8692
</table>
8793
</div>
8894

site/src/components/LLMProviders/index.tsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,13 @@ const LLMProvidersList: LLMProvider[] = [
8484
name: 'Tetrate Agent Router Service',
8585
logoUrl: '/img/providers/tars.svg',
8686
status: 'supported',
87+
},
88+
{
89+
name: 'Anthropic',
90+
logoUrl: '/img/providers/anthropic.svg',
91+
status: 'supported',
8792
}
88-
];
93+
].sort((a, b) => a.name.localeCompare(b.name)) as LLMProvider[];
8994

9095
function ProviderLogo({ name, logoUrl, status }: LLMProvider) {
9196
return (
@@ -122,8 +127,8 @@ export default function LLMProviders(): React.ReactElement {
122127
</Heading>
123128
<div className={styles.titleUnderline}></div>
124129
<p className={styles.sectionDescription}>
125-
With the latest version of Envoy AI Gateway you can route traffic to these LLM providers out of the box.
126-
For more information and the most up-to-date provider integrations, check out our <a href="/docs/capabilities/llm-integrations/supported-providers" className={styles.docsLink}>
130+
With the <code>latest</code> version of Envoy AI Gateway you can route traffic to these LLM providers, displayed alphabetically, out of the box.
131+
<br /><br />For more information and the most up-to-date provider integrations, check out our <a href="/docs/capabilities/llm-integrations/supported-providers" className={styles.docsLink}>
127132
provider documentation</a>.
128133
</p>
129134
</div>
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)