mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 03:10:15 +01:00
* chore: comment back handlePlusCommand * chore: ignore .git dir * refactor: pass newConversation to `useSelectMention` refactor: pass newConversation to Mention component refactor: useChatFunctions for modular use of `ask` and `regenerate` refactor: set latest message only for the first index in useChatFunctions refactor: pass setLatestMessage to useChatFunctions refactor: Pass setSubmission to useChatFunctions for submission handling refactor: consolidate event handlers to separate hook from useSSE WIP: additional response handlers feat: responsive added convo, clears on new chat/navigating to chat, assistants excluded feat: Add conversationByKeySelector to select any conversation by index WIP: handle second submission with messages paired to root * style: surface-primary-contrast * refactor: remove unnecessary console.log statement in useChatFunctions * refactor: Consolidate imports in ChatForm and Input hooks * refactor: compositional usage of useSSE for multiple streams * WIP: set latest 'multi' message * WIP: first pass, added response streaming * pass: performant multi-message stream * fix: styling and message render * second pass: modular, performant multi-stream * fix: align parentMessageId of multiMessage * refactor: move resetting latestMultiMessage * chore: update footer text in Chat component * fix: stop button styling * fix: handle abortMessage request for multi-response * clear messages but bug with latest message reset present * fix: add delay for additional message generation * fix: access LAST_CONVO_SETUP by index * style: add div to prevent layout shift before hover buttons render * chore: Update Message component styling for card messages * chore: move hook use order * fix: abort middleware using unsent field from req.body * feat: support multi-response stream from initial message * refactor: buildTree function to improve readability and remove unused code * feat: add logger for frontend dev * refactor: use depth to track if message is really last in its branch * fix(buildTree): default export * fix: share parent message Id and avoid duplication error for multi-response streams * fix: prevent addedConvo reset to response convo * feat: allow setting multi message as latest message to control which to respond to * chore: wrap setSiblingIdxRev with useCallback * chore: styling and allow editing messages * style: styling fixes * feat: Add "AddMultiConvo" component to Chat Header * feat: prevent clearing added convos on endpoint, preset, mention, or modelSpec switch * fix: message styling fixes, mainly related to code blocks * fix: stop button visibility logic * fix: Handle edge case in abortMiddleware for non-existant `abortControllers` * refactor: optimize/memoize icons * chore(GoogleClient): change info to debug logs * style: active message styling * style: prevent layout shift due to placeholder row * chore: remove unused code * fix: Update BaseClient to handle optional request body properties * fix(ci): `onStart` now accepts 2 args, the 2nd being responseMessageId * chore: bump data-provider
198 lines
5.5 KiB
TypeScript
198 lines
5.5 KiB
TypeScript
import { v4 } from 'uuid';
|
|
import { useSetRecoilState } from 'recoil';
|
|
import { useEffect, useState } from 'react';
|
|
import {
|
|
/* @ts-ignore */
|
|
SSE,
|
|
createPayload,
|
|
removeNullishValues,
|
|
isAssistantsEndpoint,
|
|
} from 'librechat-data-provider';
|
|
import { useGetUserBalance, useGetStartupConfig } from 'librechat-data-provider/react-query';
|
|
import type { TSubmission } from 'librechat-data-provider';
|
|
import type { EventHandlerParams } from './useEventHandlers';
|
|
import type { TResData } from '~/common';
|
|
import { useGenTitleMutation } from '~/data-provider';
|
|
import { useAuthContext } from '~/hooks/AuthContext';
|
|
import useEventHandlers from './useEventHandlers';
|
|
import store from '~/store';
|
|
|
|
type ChatHelpers = Pick<
|
|
EventHandlerParams,
|
|
| 'setMessages'
|
|
| 'getMessages'
|
|
| 'setConversation'
|
|
| 'setIsSubmitting'
|
|
| 'newConversation'
|
|
| 'resetLatestMessage'
|
|
>;
|
|
|
|
export default function useSSE(
|
|
submission: TSubmission | null,
|
|
chatHelpers: ChatHelpers,
|
|
isAddedRequest = false,
|
|
runIndex = 0,
|
|
) {
|
|
const genTitle = useGenTitleMutation();
|
|
const setActiveRunId = useSetRecoilState(store.activeRunFamily(runIndex));
|
|
|
|
const { token, isAuthenticated } = useAuthContext();
|
|
const [completed, setCompleted] = useState(new Set());
|
|
const setShowStopButton = useSetRecoilState(store.showStopButtonByIndex(runIndex));
|
|
|
|
const {
|
|
setMessages,
|
|
getMessages,
|
|
setConversation,
|
|
setIsSubmitting,
|
|
newConversation,
|
|
resetLatestMessage,
|
|
} = chatHelpers;
|
|
|
|
const {
|
|
syncHandler,
|
|
finalHandler,
|
|
errorHandler,
|
|
messageHandler,
|
|
contentHandler,
|
|
createdHandler,
|
|
abortConversation,
|
|
} = useEventHandlers({
|
|
genTitle,
|
|
setMessages,
|
|
getMessages,
|
|
setCompleted,
|
|
isAddedRequest,
|
|
setConversation,
|
|
setIsSubmitting,
|
|
newConversation,
|
|
setShowStopButton,
|
|
resetLatestMessage,
|
|
});
|
|
|
|
const { data: startupConfig } = useGetStartupConfig();
|
|
const balanceQuery = useGetUserBalance({
|
|
enabled: !!isAuthenticated && startupConfig?.checkBalance,
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (submission === null || Object.keys(submission).length === 0) {
|
|
return;
|
|
}
|
|
|
|
let { userMessage } = submission;
|
|
|
|
const payloadData = createPayload(submission);
|
|
let { payload } = payloadData;
|
|
if (isAssistantsEndpoint(payload.endpoint)) {
|
|
payload = removeNullishValues(payload);
|
|
}
|
|
|
|
let textIndex = null;
|
|
|
|
const events = new SSE(payloadData.server, {
|
|
payload: JSON.stringify(payload),
|
|
headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` },
|
|
});
|
|
|
|
events.onmessage = (e: MessageEvent) => {
|
|
const data = JSON.parse(e.data);
|
|
|
|
if (data.final) {
|
|
const { plugins } = data;
|
|
finalHandler(data, { ...submission, plugins });
|
|
startupConfig?.checkBalance && balanceQuery.refetch();
|
|
console.log('final', data);
|
|
}
|
|
if (data.created) {
|
|
const runId = v4();
|
|
setActiveRunId(runId);
|
|
userMessage = {
|
|
...userMessage,
|
|
...data.message,
|
|
overrideParentMessageId: userMessage?.overrideParentMessageId,
|
|
};
|
|
|
|
createdHandler(data, { ...submission, userMessage });
|
|
} else if (data.sync) {
|
|
const runId = v4();
|
|
setActiveRunId(runId);
|
|
/* synchronize messages to Assistants API as well as with real DB ID's */
|
|
syncHandler(data, { ...submission, userMessage });
|
|
} else if (data.type) {
|
|
const { text, index } = data;
|
|
if (text && index !== textIndex) {
|
|
textIndex = index;
|
|
}
|
|
|
|
contentHandler({ data, submission });
|
|
} else {
|
|
const text = data.text || data.response;
|
|
const { plugin, plugins } = data;
|
|
|
|
const initialResponse = {
|
|
...submission.initialResponse,
|
|
parentMessageId: data.parentMessageId,
|
|
messageId: data.messageId,
|
|
};
|
|
|
|
if (data.message) {
|
|
messageHandler(text, { ...submission, plugin, plugins, userMessage, initialResponse });
|
|
}
|
|
}
|
|
};
|
|
|
|
events.onopen = () => console.log('connection is opened');
|
|
|
|
events.oncancel = async () => {
|
|
const streamKey = submission?.initialResponse?.messageId;
|
|
if (completed.has(streamKey)) {
|
|
setIsSubmitting(false);
|
|
setCompleted((prev) => {
|
|
prev.delete(streamKey);
|
|
return new Set(prev);
|
|
});
|
|
return;
|
|
}
|
|
|
|
setCompleted((prev) => new Set(prev.add(streamKey)));
|
|
const latestMessages = getMessages();
|
|
const conversationId = latestMessages?.[latestMessages?.length - 1]?.conversationId;
|
|
return await abortConversation(
|
|
conversationId ?? userMessage?.conversationId ?? submission?.conversationId,
|
|
submission,
|
|
latestMessages,
|
|
);
|
|
};
|
|
|
|
events.onerror = function (e: MessageEvent) {
|
|
console.log('error in server stream.');
|
|
startupConfig?.checkBalance && balanceQuery.refetch();
|
|
|
|
let data: TResData | undefined = undefined;
|
|
try {
|
|
data = JSON.parse(e.data) as TResData;
|
|
} catch (error) {
|
|
console.error(error);
|
|
console.log(e);
|
|
setIsSubmitting(false);
|
|
}
|
|
|
|
errorHandler({ data, submission: { ...submission, userMessage } });
|
|
};
|
|
|
|
setIsSubmitting(true);
|
|
events.stream();
|
|
|
|
return () => {
|
|
const isCancelled = events.readyState <= 1;
|
|
events.close();
|
|
// setSource(null);
|
|
if (isCancelled) {
|
|
const e = new Event('cancel');
|
|
events.dispatchEvent(e);
|
|
}
|
|
};
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [submission]);
|
|
}
|