mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-24 03:41:56 +03:00
edcbb30e97
* feat: add chat config modal * feat: save chat config in localStorage * feat: remove <ConfigPage/> * feat: overwrite chat config with brain * fix(SettingsPage): upload payload keys * fix: update default brain marker logic * feat: set new created brain as current selected brain
101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
/* eslint-disable max-lines */
|
|
import { AxiosError } from "axios";
|
|
import { useParams } from "next/navigation";
|
|
import { useEffect, useState } from "react";
|
|
|
|
import { getChatConfigFromLocalStorage } from "@/lib/api/chat/chat.local";
|
|
import { useChatApi } from "@/lib/api/chat/useChatApi";
|
|
import { useChatContext } from "@/lib/context/ChatProvider/hooks/useChatContext";
|
|
import { useToast } from "@/lib/hooks";
|
|
import { useEventTracking } from "@/services/analytics/useEventTracking";
|
|
|
|
import { useQuestion } from "./useQuestion";
|
|
import { ChatQuestion } from "../types";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
export const useChat = () => {
|
|
const { track } = useEventTracking();
|
|
const params = useParams();
|
|
const [chatId, setChatId] = useState<string | undefined>(
|
|
params?.chatId as string | undefined
|
|
);
|
|
const [generatingAnswer, setGeneratingAnswer] = useState(false);
|
|
|
|
const { history, setHistory } = useChatContext();
|
|
const { publish } = useToast();
|
|
const { createChat, getHistory } = useChatApi();
|
|
|
|
const { addStreamQuestion } = useQuestion();
|
|
|
|
useEffect(() => {
|
|
const fetchHistory = async () => {
|
|
const currentChatId = chatId;
|
|
if (currentChatId === undefined) {
|
|
return;
|
|
}
|
|
|
|
const chatHistory = await getHistory(currentChatId);
|
|
|
|
if (chatId === currentChatId && chatHistory.length > 0) {
|
|
setHistory(chatHistory);
|
|
}
|
|
};
|
|
void fetchHistory();
|
|
}, [chatId, setHistory]);
|
|
|
|
const addQuestion = async (question: string, callback?: () => void) => {
|
|
try {
|
|
setGeneratingAnswer(true);
|
|
|
|
let currentChatId = chatId;
|
|
|
|
//if chatId is not set, create a new chat. Chat name is from the first question
|
|
if (currentChatId === undefined) {
|
|
const chatName = question.split(" ").slice(0, 3).join(" ");
|
|
const chat = await createChat(chatName);
|
|
currentChatId = chat.chat_id;
|
|
setChatId(currentChatId);
|
|
}
|
|
|
|
void track("QUESTION_ASKED");
|
|
const chatConfig = getChatConfigFromLocalStorage(currentChatId);
|
|
|
|
const chatQuestion: ChatQuestion = {
|
|
model: chatConfig?.model,
|
|
question,
|
|
temperature: chatConfig?.temperature,
|
|
max_tokens: chatConfig?.maxTokens,
|
|
};
|
|
|
|
await addStreamQuestion(currentChatId, chatQuestion);
|
|
|
|
callback?.();
|
|
} catch (error) {
|
|
console.error({ error });
|
|
|
|
if ((error as AxiosError).response?.status === 429) {
|
|
publish({
|
|
variant: "danger",
|
|
text: "You have reached the limit of requests, please try again later",
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
publish({
|
|
variant: "danger",
|
|
text: "Error occurred while getting answer",
|
|
});
|
|
} finally {
|
|
setGeneratingAnswer(false);
|
|
}
|
|
};
|
|
|
|
return {
|
|
history,
|
|
addQuestion,
|
|
generatingAnswer,
|
|
chatId,
|
|
};
|
|
};
|