mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 19:32:47 +03:00
68da22aa1d
- The frontend no longer sets a default model - Either a model is chosen by the user, or it will be done by the backend Issue: https://github.com/StanGirard/quivr/issues/1747
22 lines
619 B
TypeScript
22 lines
619 B
TypeScript
import { getChatsConfigFromLocalStorage } from "@/lib/api/chat/chat.local";
|
|
import { useUserData } from "@/lib/hooks/useUserData";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
export const useLocalStorageChatConfig = () => {
|
|
const { userData } = useUserData();
|
|
|
|
const chatConfig = getChatsConfigFromLocalStorage();
|
|
|
|
const model = (userData?.models ?? []).includes(chatConfig?.model ?? "")
|
|
? chatConfig?.model
|
|
: undefined;
|
|
|
|
return {
|
|
chatConfig: {
|
|
model: model,
|
|
temperature: chatConfig?.temperature,
|
|
maxTokens: chatConfig?.maxTokens,
|
|
},
|
|
};
|
|
};
|