mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 09:50:15 +01:00
107 lines
3.5 KiB
TypeScript
107 lines
3.5 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: newEndpoint } = preset;
|
||
|
|
if (!newEndpoint) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
const {
|
||
|
|
shouldSwitch,
|
||
|
|
isNewModular,
|
||
|
|
isCurrentModular,
|
||
|
|
isExistingConversation,
|
||
|
|
newEndpointType,
|
||
|
|
template,
|
||
|
|
} = getConvoSwitchLogic({
|
||
|
|
newEndpoint,
|
||
|
|
modularChat,
|
||
|
|
conversation,
|
||
|
|
endpointsConfig,
|
||
|
|
});
|
||
|
|
|
||
|
|
if (isExistingConversation && isCurrentModular && isNewModular && shouldSwitch) {
|
||
|
|
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 });
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
newConversation({ template: { ...(template as Partial<TConversation>) }, preset });
|
||
|
|
};
|
||
|
|
|
||
|
|
const selected = useMemo(() => {
|
||
|
|
const spec = modelSpecs?.find((spec) => spec.name === conversation?.spec);
|
||
|
|
if (!spec) {
|
||
|
|
return undefined;
|
||
|
|
}
|
||
|
|
return spec;
|
||
|
|
}, [modelSpecs, conversation?.spec]);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Root>
|
||
|
|
<MenuButton
|
||
|
|
primaryText={selected?.label ?? ''}
|
||
|
|
selected={selected}
|
||
|
|
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>
|
||
|
|
);
|
||
|
|
}
|