mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
🤖 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:
parent
04eeb59d47
commit
5d887492ea
10 changed files with 134 additions and 7 deletions
|
|
@ -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} />;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue