🤖 docs: Add Groq and other Compatible AI Endpoints (#1915)

* chore: bump bun dependencies

* feat: make `groq` a known endpoint

* docs: compatible ai endpoints

* Update ai_endpoints.md

* Update ai_endpoints.md
This commit is contained in:
Danny Avila 2024-02-27 13:42:10 -05:00 committed by GitHub
parent 04eeb59d47
commit 5d887492ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 134 additions and 7 deletions

View file

@ -30,6 +30,14 @@ export default function UnknownIcon({
);
} else if (currentEndpoint === KnownEndpoints.openrouter) {
return <img className={className} src="/assets/openrouter.png" alt="OpenRouter Icon" />;
} else if (currentEndpoint === KnownEndpoints.groq) {
return (
<img
className={context === 'landing' ? '' : className}
src="/assets/groq.png"
alt="Groq Cloud Icon"
/>
);
}
return <CustomMinimalIcon className={className} />;