mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 17:30:16 +01:00
* fix: ensure modelSpec presets have endpointType defined, add `modelLabel` to openAISchema * chore: bump rollup due to CVE-2024-47068
123 lines
3.9 KiB
TypeScript
123 lines
3.9 KiB
TypeScript
import { useMemo } from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
import { EModelEndpoint } from 'librechat-data-provider';
|
|
import { Content, Portal, Root } from '@radix-ui/react-popover';
|
|
import { useGetEndpointsQuery } from 'librechat-data-provider/react-query';
|
|
import type { TModelSpec, TConversation, TEndpointsConfig } from 'librechat-data-provider';
|
|
import { getConvoSwitchLogic, getModelSpecIconURL } from '~/utils';
|
|
import { useDefaultConvo, useNewConvo } from '~/hooks';
|
|
import { useChatContext } from '~/Providers';
|
|
import MenuButton from './MenuButton';
|
|
import ModelSpecs from './ModelSpecs';
|
|
import store from '~/store';
|
|
|
|
export default function ModelSpecsMenu({ modelSpecs }: { modelSpecs?: TModelSpec[] }) {
|
|
const { conversation } = useChatContext();
|
|
const { newConversation } = useNewConvo();
|
|
|
|
const { data: endpointsConfig = {} as TEndpointsConfig } = useGetEndpointsQuery();
|
|
const modularChat = useRecoilValue(store.modularChat);
|
|
const getDefaultConversation = useDefaultConvo();
|
|
|
|
const onSelectSpec = (spec: TModelSpec) => {
|
|
const { preset } = spec;
|
|
preset.iconURL = getModelSpecIconURL(spec);
|
|
preset.spec = spec.name;
|
|
const { endpoint } = preset;
|
|
const newEndpoint = endpoint ?? '';
|
|
if (!newEndpoint) {
|
|
return;
|
|
}
|
|
|
|
const {
|
|
template,
|
|
shouldSwitch,
|
|
isNewModular,
|
|
newEndpointType,
|
|
isCurrentModular,
|
|
isExistingConversation,
|
|
} = getConvoSwitchLogic({
|
|
newEndpoint,
|
|
modularChat,
|
|
conversation,
|
|
endpointsConfig,
|
|
});
|
|
|
|
if (newEndpointType) {
|
|
preset.endpointType = newEndpointType;
|
|
}
|
|
|
|
const isModular = isCurrentModular && isNewModular && shouldSwitch;
|
|
if (isExistingConversation && isModular) {
|
|
template.endpointType = newEndpointType as EModelEndpoint | undefined;
|
|
|
|
const currentConvo = getDefaultConversation({
|
|
/* target endpointType is necessary to avoid endpoint mixing */
|
|
conversation: { ...(conversation ?? {}), endpointType: template.endpointType },
|
|
preset: template,
|
|
});
|
|
|
|
/* We don't reset the latest message, only when changing settings mid-converstion */
|
|
newConversation({
|
|
template: currentConvo,
|
|
preset,
|
|
keepLatestMessage: true,
|
|
keepAddedConvos: true,
|
|
});
|
|
return;
|
|
}
|
|
|
|
newConversation({
|
|
template: { ...(template as Partial<TConversation>) },
|
|
preset,
|
|
keepAddedConvos: isModular,
|
|
});
|
|
};
|
|
|
|
const selected = useMemo(() => {
|
|
const spec = modelSpecs?.find((spec) => spec.name === conversation?.spec);
|
|
if (!spec) {
|
|
return undefined;
|
|
}
|
|
return spec;
|
|
}, [modelSpecs, conversation?.spec]);
|
|
|
|
return (
|
|
<Root>
|
|
<MenuButton
|
|
selected={selected}
|
|
className="min-h-11"
|
|
textClassName="block items-center justify-start text-xs md:text-base whitespace-nowrap max-w-64 overflow-hidden shrink-0 text-ellipsis"
|
|
primaryText={selected?.label ?? ''}
|
|
endpointsConfig={endpointsConfig}
|
|
/>
|
|
<Portal>
|
|
{modelSpecs && modelSpecs.length && (
|
|
<div
|
|
style={{
|
|
position: 'fixed',
|
|
left: '0px',
|
|
top: '0px',
|
|
transform: 'translate3d(268px, 50px, 0px)',
|
|
minWidth: 'max-content',
|
|
zIndex: 'auto',
|
|
}}
|
|
>
|
|
<Content
|
|
side="bottom"
|
|
align="start"
|
|
className="models-scrollbar mt-2 max-h-[65vh] min-w-[340px] max-w-xs overflow-y-auto rounded-lg border border-gray-100 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-700 dark:text-white lg:max-h-[75vh]"
|
|
>
|
|
<ModelSpecs
|
|
specs={modelSpecs}
|
|
selected={selected}
|
|
setSelected={onSelectSpec}
|
|
endpointsConfig={endpointsConfig}
|
|
/>
|
|
</Content>
|
|
</div>
|
|
)}
|
|
</Portal>
|
|
</Root>
|
|
);
|
|
}
|