mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-04 14:57:42 +00:00
* refactor: add gemini-pro to google Models list; use defaultModels for central model listing * refactor(SetKeyDialog): create useMultipleKeys hook to use for Azure, export `isJson` from utils, use EModelEndpoint * refactor(useUserKey): change variable names to make keyName setting more clear * refactor(FileUpload): allow passing container className string * feat(GoogleClient): Gemini support * refactor(GoogleClient): alternate stream speed for Gemini models * feat(Gemini): styling/settings configuration for Gemini * refactor(GoogleClient): substract max response tokens from max context tokens if context is above 32k (I/O max is combined between the two) * refactor(tokens): correct google max token counts and subtract max response tokens when input/output count are combined towards max context count * feat(google/initializeClient): handle both local and user_provided credentials and write tests * fix(GoogleClient): catch if credentials are undefined, handle if serviceKey is string or object correctly, handle no examples passed, throw error if not a Generative Language model and no service account JSON key is provided, throw error if it is a Generative m odel, but not google API key was provided * refactor(loadAsyncEndpoints/google): activate Google endpoint if either the service key JSON file is provided in /api/data, or a GOOGLE_KEY is defined. * docs: updated Google configuration * fix(ci): Mock import of Service Account Key JSON file (auth.json) * Update apis_and_tokens.md * feat: increase max output tokens slider for gemini pro * refactor(GoogleSettings): handle max and default maxOutputTokens on model change * chore: add sensitive redact regex * docs: add warning about data privacy * Update apis_and_tokens.md
61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
import { useMemo, useCallback } from 'react';
|
|
import { EModelEndpoint } from 'librechat-data-provider';
|
|
import {
|
|
useUserKeyQuery,
|
|
useGetEndpointsQuery,
|
|
useUpdateUserKeysMutation,
|
|
} from 'librechat-data-provider/react-query';
|
|
|
|
const useUserKey = (endpoint: string) => {
|
|
const { data: endpointsConfig } = useGetEndpointsQuery();
|
|
const config = endpointsConfig?.[endpoint];
|
|
|
|
const { azure } = config ?? {};
|
|
let keyName = endpoint;
|
|
|
|
if (azure) {
|
|
keyName = EModelEndpoint.azureOpenAI;
|
|
} else if (keyName === EModelEndpoint.gptPlugins) {
|
|
keyName = EModelEndpoint.openAI;
|
|
}
|
|
|
|
const updateKey = useUpdateUserKeysMutation();
|
|
const checkUserKey = useUserKeyQuery(keyName);
|
|
const getExpiry = useCallback(() => {
|
|
if (checkUserKey.data) {
|
|
return checkUserKey.data.expiresAt;
|
|
}
|
|
}, [checkUserKey.data]);
|
|
|
|
const checkExpiry = useCallback(() => {
|
|
const expiresAt = getExpiry();
|
|
if (!expiresAt) {
|
|
return false;
|
|
}
|
|
|
|
const expiresAtDate = new Date(expiresAt);
|
|
if (expiresAtDate < new Date()) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}, [getExpiry]);
|
|
|
|
const saveUserKey = useCallback(
|
|
(userKey: string, expiresAt: number) => {
|
|
const dateStr = new Date(expiresAt).toISOString();
|
|
updateKey.mutate({
|
|
name: keyName,
|
|
value: userKey,
|
|
expiresAt: dateStr,
|
|
});
|
|
},
|
|
[updateKey, keyName],
|
|
);
|
|
|
|
return useMemo(
|
|
() => ({ getExpiry, checkExpiry, saveUserKey }),
|
|
[getExpiry, checkExpiry, saveUserKey],
|
|
);
|
|
};
|
|
|
|
export default useUserKey;
|