mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 10:20:15 +01:00
* fix(TEndpointsConfig): resolve property access issues with typesafe helper function * fix: undefined or null endpoint edge case * refactor(mapEndpoints -> endpoints): renamed module to be more general for endpoint handling, wrote unit tests, export all helpers
106 lines
3.1 KiB
TypeScript
106 lines
3.1 KiB
TypeScript
import { useCallback } from 'react';
|
|
import { useSetRecoilState, useResetRecoilState, useRecoilCallback } from 'recoil';
|
|
import { useGetEndpointsQuery } from 'librechat-data-provider/react-query';
|
|
import type {
|
|
TConversation,
|
|
TMessagesAtom,
|
|
TSubmission,
|
|
TPreset,
|
|
TModelsConfig,
|
|
TEndpointsConfig,
|
|
} from 'librechat-data-provider';
|
|
import { buildDefaultConvo, getDefaultEndpoint, getEndpointField } from '~/utils';
|
|
import useOriginNavigate from './useOriginNavigate';
|
|
import store from '~/store';
|
|
|
|
const useConversation = () => {
|
|
const navigate = useOriginNavigate();
|
|
const setConversation = useSetRecoilState(store.conversation);
|
|
const setMessages = useSetRecoilState<TMessagesAtom>(store.messages);
|
|
const setSubmission = useSetRecoilState<TSubmission | null>(store.submission);
|
|
const resetLatestMessage = useResetRecoilState(store.latestMessage);
|
|
const { data: endpointsConfig = {} as TEndpointsConfig } = useGetEndpointsQuery();
|
|
|
|
const switchToConversation = useRecoilCallback(
|
|
({ snapshot }) =>
|
|
async (
|
|
conversation: TConversation,
|
|
messages: TMessagesAtom = null,
|
|
preset: TPreset | null = null,
|
|
modelsData?: TModelsConfig,
|
|
) => {
|
|
const modelsConfig = modelsData ?? snapshot.getLoadable(store.modelsConfig).contents;
|
|
const { endpoint = null } = conversation;
|
|
|
|
if (endpoint === null) {
|
|
const defaultEndpoint = getDefaultEndpoint({
|
|
convoSetup: preset ?? conversation,
|
|
endpointsConfig,
|
|
});
|
|
|
|
const endpointType = getEndpointField(endpointsConfig, defaultEndpoint, 'type');
|
|
if (!conversation.endpointType && endpointType) {
|
|
conversation.endpointType = endpointType;
|
|
}
|
|
|
|
const models = modelsConfig?.[defaultEndpoint] ?? [];
|
|
conversation = buildDefaultConvo({
|
|
conversation,
|
|
lastConversationSetup: preset as TConversation,
|
|
endpoint: defaultEndpoint,
|
|
models,
|
|
});
|
|
}
|
|
|
|
setConversation(conversation);
|
|
setMessages(messages);
|
|
setSubmission({} as TSubmission);
|
|
resetLatestMessage();
|
|
|
|
if (conversation.conversationId === 'new' && !modelsData) {
|
|
navigate('new');
|
|
}
|
|
},
|
|
[endpointsConfig],
|
|
);
|
|
|
|
const newConversation = useCallback(
|
|
(template = {}, preset?: TPreset, modelsData?: TModelsConfig) => {
|
|
switchToConversation(
|
|
{
|
|
conversationId: 'new',
|
|
title: 'New Chat',
|
|
...template,
|
|
endpoint: null,
|
|
createdAt: '',
|
|
updatedAt: '',
|
|
},
|
|
[],
|
|
preset,
|
|
modelsData,
|
|
);
|
|
},
|
|
[switchToConversation],
|
|
);
|
|
|
|
const searchPlaceholderConversation = useCallback(() => {
|
|
switchToConversation(
|
|
{
|
|
conversationId: 'search',
|
|
title: 'Search',
|
|
endpoint: null,
|
|
createdAt: '',
|
|
updatedAt: '',
|
|
},
|
|
[],
|
|
);
|
|
}, [switchToConversation]);
|
|
|
|
return {
|
|
switchToConversation,
|
|
newConversation,
|
|
searchPlaceholderConversation,
|
|
};
|
|
};
|
|
|
|
export default useConversation;
|