mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
* feat(getIcon.jsx): replace palm.png with google-palm.svg as the icon for the 'google' endpoint * fix(mongoMeili): improve syncing, prevent large indicing jobs from being queued fix(gptPlugins.js, openAI.js): use unfinished and cancelled values when saving messages to help optimize syncing
101 lines
3.2 KiB
JavaScript
101 lines
3.2 KiB
JavaScript
import { Plugin, GPTIcon, BingIcon } from '~/components/svg';
|
|
import { useAuthContext } from '~/hooks/AuthContext';
|
|
|
|
const getIcon = (props) => {
|
|
const { size = 30, isCreatedByUser, button, model, message = true } = props;
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
const { user } = useAuthContext();
|
|
|
|
if (isCreatedByUser)
|
|
return (
|
|
<div
|
|
title={user?.name || 'User'}
|
|
style={{
|
|
width: size,
|
|
height: size
|
|
}}
|
|
className={'relative flex items-center justify-center' + props?.className}
|
|
>
|
|
<img
|
|
className="rounded-sm"
|
|
src={
|
|
user?.avatar ||
|
|
`https://api.dicebear.com/6.x/initials/svg?seed=${user?.name || 'User'}&fontFamily=Verdana&fontSize=36`
|
|
}
|
|
alt="avatar"
|
|
/>
|
|
</div>
|
|
);
|
|
else if (!isCreatedByUser) {
|
|
const { endpoint, error } = props;
|
|
|
|
let icon, bg, name;
|
|
if (endpoint === 'azureOpenAI') {
|
|
const { chatGptLabel } = props;
|
|
icon = <GPTIcon size={size * 0.7} />;
|
|
bg = 'linear-gradient(0.375turn, #61bde2, #4389d0)';
|
|
name = chatGptLabel || 'ChatGPT';
|
|
} else if (endpoint === 'openAI' || (endpoint === 'gptPlugins' && message)) {
|
|
const { chatGptLabel } = props;
|
|
icon = <GPTIcon size={size * 0.7} />;
|
|
bg =
|
|
model && model.toLowerCase().startsWith('gpt-4')
|
|
? '#AB68FF'
|
|
: chatGptLabel
|
|
? `rgba(16, 163, 127, ${button ? 0.75 : 1})`
|
|
: `rgba(16, 163, 127, ${button ? 0.75 : 1})`;
|
|
name = chatGptLabel || 'ChatGPT';
|
|
} else if (endpoint === 'gptPlugins' && !message) {
|
|
icon = <Plugin size={size * 0.7} />;
|
|
bg = `rgba(69, 89, 164, ${button ? 0.75 : 1})`;
|
|
name = 'Plugins';
|
|
} else if (endpoint === 'google') {
|
|
const { modelLabel } = props;
|
|
icon = <img src="/assets/google-palm.svg" alt="Palm Icon"/>;
|
|
name = modelLabel || 'PaLM2';
|
|
} else if (endpoint === 'bingAI') {
|
|
const { jailbreak } = props;
|
|
icon = <BingIcon size={size * 0.7} />;
|
|
bg = jailbreak ? 'radial-gradient(circle at 90% 110%, #F0F0FA, #D0E0F9)' : 'transparent';
|
|
name = jailbreak ? 'Sydney' : 'BingAI';
|
|
} else if (endpoint === 'chatGPTBrowser') {
|
|
icon = <GPTIcon size={size * 0.7} />;
|
|
bg =
|
|
model && model.toLowerCase().startsWith('gpt-4')
|
|
? '#AB68FF'
|
|
: `rgba(0, 163, 255, ${button ? 0.75 : 1})`;
|
|
name = 'ChatGPT';
|
|
} else if (endpoint === null) {
|
|
icon = <GPTIcon size={size * 0.7} />;
|
|
bg = 'grey';
|
|
name = 'N/A';
|
|
} else {
|
|
icon = <GPTIcon size={size * 0.7} />;
|
|
bg = 'grey';
|
|
name = 'UNKNOWN';
|
|
}
|
|
|
|
return (
|
|
<div
|
|
title={name}
|
|
style={{
|
|
background: bg || 'transparent',
|
|
width: size,
|
|
height: size
|
|
}}
|
|
className={
|
|
'relative flex items-center justify-center rounded-sm text-white ' + props?.className
|
|
}
|
|
>
|
|
{icon}
|
|
{error && (
|
|
<span className="absolute right-0 top-[20px] -mr-2 flex h-4 w-4 items-center justify-center rounded-full border border-white bg-red-500 text-[10px] text-white">
|
|
!
|
|
</span>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
export default getIcon;
|