mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 09:20:15 +01:00
119 lines
3.7 KiB
TypeScript
119 lines
3.7 KiB
TypeScript
|
|
import { useMemo } from 'react';
|
||
|
|
import {
|
||
|
|
useGetModelsQuery,
|
||
|
|
useGetStartupConfig,
|
||
|
|
useGetEndpointsQuery,
|
||
|
|
} from 'librechat-data-provider/react-query';
|
||
|
|
import { getConfigDefaults, EModelEndpoint, alternateName } from 'librechat-data-provider';
|
||
|
|
import type { Assistant } from 'librechat-data-provider';
|
||
|
|
import { useGetPresetsQuery, useListAssistantsQuery } from '~/data-provider';
|
||
|
|
import { mapEndpoints, getPresetTitle } from '~/utils';
|
||
|
|
import { EndpointIcon } from '~/components/Endpoints';
|
||
|
|
import useSelectMention from './useSelectMention';
|
||
|
|
|
||
|
|
const defaultInterface = getConfigDefaults().interface;
|
||
|
|
|
||
|
|
export default function useMentions({ assistantMap }: { assistantMap: Record<string, Assistant> }) {
|
||
|
|
const { data: presets } = useGetPresetsQuery();
|
||
|
|
const { data: modelsConfig } = useGetModelsQuery();
|
||
|
|
const { data: startupConfig } = useGetStartupConfig();
|
||
|
|
const { data: endpointsConfig } = useGetEndpointsQuery();
|
||
|
|
const { data: endpoints = [] } = useGetEndpointsQuery({
|
||
|
|
select: mapEndpoints,
|
||
|
|
});
|
||
|
|
const { data: assistants = [] } = useListAssistantsQuery(undefined, {
|
||
|
|
select: (res) =>
|
||
|
|
res.data
|
||
|
|
.map(({ id, name, description }) => ({
|
||
|
|
type: 'assistant',
|
||
|
|
label: name ?? '',
|
||
|
|
value: id,
|
||
|
|
description: description ?? '',
|
||
|
|
icon: EndpointIcon({
|
||
|
|
conversation: { assistant_id: id, endpoint: EModelEndpoint.assistants },
|
||
|
|
containerClassName: 'shadow-stroke overflow-hidden rounded-full',
|
||
|
|
endpointsConfig: endpointsConfig,
|
||
|
|
context: 'menu-item',
|
||
|
|
assistantMap,
|
||
|
|
size: 20,
|
||
|
|
}),
|
||
|
|
}))
|
||
|
|
.filter(Boolean),
|
||
|
|
});
|
||
|
|
const modelSpecs = useMemo(() => startupConfig?.modelSpecs?.list ?? [], [startupConfig]);
|
||
|
|
const interfaceConfig = useMemo(
|
||
|
|
() => startupConfig?.interface ?? defaultInterface,
|
||
|
|
[startupConfig],
|
||
|
|
);
|
||
|
|
const { onSelectMention } = useSelectMention({
|
||
|
|
modelSpecs,
|
||
|
|
endpointsConfig,
|
||
|
|
presets,
|
||
|
|
assistantMap,
|
||
|
|
});
|
||
|
|
|
||
|
|
const options = useMemo(() => {
|
||
|
|
const mentions = [
|
||
|
|
...(modelSpecs?.length > 0 ? modelSpecs : []).map((modelSpec) => ({
|
||
|
|
value: modelSpec.name,
|
||
|
|
label: modelSpec.label,
|
||
|
|
description: modelSpec.description,
|
||
|
|
icon: EndpointIcon({
|
||
|
|
conversation: {
|
||
|
|
...modelSpec.preset,
|
||
|
|
iconURL: modelSpec.iconURL,
|
||
|
|
},
|
||
|
|
endpointsConfig,
|
||
|
|
context: 'menu-item',
|
||
|
|
size: 20,
|
||
|
|
}),
|
||
|
|
type: 'modelSpec',
|
||
|
|
})),
|
||
|
|
...(interfaceConfig.endpointsMenu ? endpoints : []).map((endpoint) => ({
|
||
|
|
value: endpoint,
|
||
|
|
label: alternateName[endpoint] ?? endpoint ?? '',
|
||
|
|
type: 'endpoint',
|
||
|
|
icon: EndpointIcon({
|
||
|
|
conversation: { endpoint },
|
||
|
|
endpointsConfig,
|
||
|
|
context: 'menu-item',
|
||
|
|
size: 20,
|
||
|
|
}),
|
||
|
|
})),
|
||
|
|
...(endpointsConfig?.[EModelEndpoint.assistants] ? assistants : []),
|
||
|
|
...((interfaceConfig.presets ? presets : [])?.map((preset, index) => ({
|
||
|
|
value: preset.presetId ?? `preset-${index}`,
|
||
|
|
label: preset.title ?? preset.modelLabel ?? preset.chatGptLabel ?? '',
|
||
|
|
description: getPresetTitle(preset, true),
|
||
|
|
icon: EndpointIcon({
|
||
|
|
conversation: preset,
|
||
|
|
containerClassName: 'shadow-stroke overflow-hidden rounded-full',
|
||
|
|
endpointsConfig: endpointsConfig,
|
||
|
|
context: 'menu-item',
|
||
|
|
assistantMap,
|
||
|
|
size: 20,
|
||
|
|
}),
|
||
|
|
type: 'preset',
|
||
|
|
})) ?? []),
|
||
|
|
];
|
||
|
|
|
||
|
|
return mentions;
|
||
|
|
}, [
|
||
|
|
presets,
|
||
|
|
endpoints,
|
||
|
|
modelSpecs,
|
||
|
|
assistants,
|
||
|
|
assistantMap,
|
||
|
|
endpointsConfig,
|
||
|
|
interfaceConfig.presets,
|
||
|
|
interfaceConfig.endpointsMenu,
|
||
|
|
]);
|
||
|
|
|
||
|
|
return {
|
||
|
|
options,
|
||
|
|
assistants,
|
||
|
|
modelsConfig,
|
||
|
|
onSelectMention,
|
||
|
|
};
|
||
|
|
}
|