quivr/frontend/app/chat/[chatId]/hooks/useQuestion.ts

93 lines
2.3 KiB
TypeScript
Raw Normal View History

import { useTranslation } from "react-i18next";
import { useChatContext } from "@/lib/context";
import { useBrainContext } from "@/lib/context/BrainProvider/hooks/useBrainContext";
import { useFetch, useToast } from "@/lib/hooks";
import { useHandleStream } from "./useHandleStream";
import { ChatQuestion } from "../types";
import { generatePlaceHolderMessage } from "../utils/generatePlaceHolderMessage";
interface UseChatService {
addStreamQuestion: (
chatId: string,
chatQuestion: ChatQuestion
) => Promise<void>;
}
export const useQuestion = (): UseChatService => {
const { fetchInstance } = useFetch();
2023-06-28 20:39:27 +03:00
const { currentBrain } = useBrainContext();
const { t } = useTranslation(["chat"]);
const { publish } = useToast();
const { handleStream } = useHandleStream();
const { removeMessage, updateStreamingHistory } = useChatContext();
const handleFetchError = async (response: Response) => {
if (response.status === 429) {
publish({
variant: "danger",
text: t("tooManyRequests", { ns: "chat" }),
});
return;
}
const errorMessage = (await response.json()) as { detail: string };
publish({
variant: "danger",
text: errorMessage.detail,
});
};
const addStreamQuestion = async (
chatId: string,
chatQuestion: ChatQuestion
): Promise<void> => {
const headers = {
"Content-Type": "application/json",
Accept: "text/event-stream",
};
const placeHolderMessage = generatePlaceHolderMessage({
user_message: chatQuestion.question ?? "",
chat_id: chatId,
});
updateStreamingHistory(placeHolderMessage);
const body = JSON.stringify(chatQuestion);
try {
let url = `/chat/${chatId}/question/stream`;
if (currentBrain?.id) {
url += `?brain_id=${currentBrain.id}`;
}
const response = await fetchInstance.post(url, body, headers);
if (!response.ok) {
void handleFetchError(response);
return;
}
if (response.body === null) {
throw new Error(t("resposeBodyNull", { ns: "chat" }));
}
await handleStream(response.body.getReader(), () =>
removeMessage(placeHolderMessage.message_id)
);
} catch (error) {
publish({
variant: "danger",
text: String(error),
});
}
};
return {
addStreamQuestion,
};
};