mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
* BIG UI UPDATE * fix: search bar, dialog template, new chat icon, convo icon and delete/rename button * moved some color config and a lot of files * small text fixes and tailwind config refactor * Update localization and UI styles * Update styles and add user-select:none to Tooltip component * Update mobile.css styles for navigation mask and background color * Update component imports and styles * Update DeleteButton imports and references * Update UI components * Update tooltip delay duration * Fix styling and update text in various components * fixed assistant style * minor style fixes * revert: removed CreationHeader & CreationPanel * style: match new styling for SidePanel * style: match bg-gray-800 to ChatGPT (#212121) * style: remove slate for gray where applicable to match new light theme --------- Co-authored-by: Danny Avila <messagedaniel@protonmail.com>
202 lines
6.8 KiB
TypeScript
202 lines
6.8 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { useForm, FormProvider } from 'react-hook-form';
|
|
import { EModelEndpoint, alternateName } from 'librechat-data-provider';
|
|
import { useGetEndpointsQuery } from 'librechat-data-provider/react-query';
|
|
import type { TDialogProps } from '~/common';
|
|
import DialogTemplate from '~/components/ui/DialogTemplate';
|
|
import { RevokeKeysButton } from '~/components/Nav';
|
|
import { Dialog, Dropdown } from '~/components/ui';
|
|
import { useUserKey, useLocalize } from '~/hooks';
|
|
import { useToastContext } from '~/Providers';
|
|
import CustomConfig from './CustomEndpoint';
|
|
import GoogleConfig from './GoogleConfig';
|
|
import OpenAIConfig from './OpenAIConfig';
|
|
import OtherConfig from './OtherConfig';
|
|
import HelpText from './HelpText';
|
|
|
|
const endpointComponents = {
|
|
[EModelEndpoint.google]: GoogleConfig,
|
|
[EModelEndpoint.openAI]: OpenAIConfig,
|
|
[EModelEndpoint.custom]: CustomConfig,
|
|
[EModelEndpoint.azureOpenAI]: OpenAIConfig,
|
|
[EModelEndpoint.gptPlugins]: OpenAIConfig,
|
|
[EModelEndpoint.assistants]: OpenAIConfig,
|
|
default: OtherConfig,
|
|
};
|
|
|
|
const formSet: Set<string> = new Set([
|
|
EModelEndpoint.openAI,
|
|
EModelEndpoint.custom,
|
|
EModelEndpoint.azureOpenAI,
|
|
EModelEndpoint.gptPlugins,
|
|
EModelEndpoint.assistants,
|
|
]);
|
|
|
|
const EXPIRY = {
|
|
THIRTY_MINUTES: { display: 'in 30 minutes', value: 30 * 60 * 1000 },
|
|
TWO_HOURS: { display: 'in 2 hours', value: 2 * 60 * 60 * 1000 },
|
|
TWELVE_HOURS: { display: 'in 12 hours', value: 12 * 60 * 60 * 1000 },
|
|
ONE_DAY: { display: 'in 1 day', value: 24 * 60 * 60 * 1000 },
|
|
ONE_WEEK: { display: 'in 7 days', value: 7 * 24 * 60 * 60 * 1000 },
|
|
ONE_MONTH: { display: 'in 30 days', value: 30 * 24 * 60 * 60 * 1000 },
|
|
};
|
|
|
|
const SetKeyDialog = ({
|
|
open,
|
|
onOpenChange,
|
|
endpoint,
|
|
endpointType,
|
|
userProvideURL,
|
|
}: Pick<TDialogProps, 'open' | 'onOpenChange'> & {
|
|
endpoint: EModelEndpoint | string;
|
|
endpointType?: EModelEndpoint;
|
|
userProvideURL?: boolean | null;
|
|
}) => {
|
|
const methods = useForm({
|
|
defaultValues: {
|
|
apiKey: '',
|
|
baseURL: '',
|
|
azureOpenAIApiKey: '',
|
|
azureOpenAIApiInstanceName: '',
|
|
azureOpenAIApiDeploymentName: '',
|
|
azureOpenAIApiVersion: '',
|
|
// TODO: allow endpoint definitions from user
|
|
// name: '',
|
|
// TODO: add custom endpoint models defined by user
|
|
// models: '',
|
|
},
|
|
});
|
|
|
|
const [userKey, setUserKey] = useState('');
|
|
const { data: endpointsConfig } = useGetEndpointsQuery();
|
|
const [expiresAtLabel, setExpiresAtLabel] = useState(EXPIRY.TWELVE_HOURS.display);
|
|
const { getExpiry, saveUserKey } = useUserKey(endpoint);
|
|
const { showToast } = useToastContext();
|
|
const localize = useLocalize();
|
|
|
|
const expirationOptions = Object.values(EXPIRY);
|
|
|
|
const handleExpirationChange = (label: string) => {
|
|
setExpiresAtLabel(label);
|
|
};
|
|
|
|
const submit = () => {
|
|
const selectedOption = expirationOptions.find((option) => option.display === expiresAtLabel);
|
|
const expiresAt = Date.now() + (selectedOption ? selectedOption.value : 0);
|
|
|
|
const saveKey = (key: string) => {
|
|
saveUserKey(key, expiresAt);
|
|
onOpenChange(false);
|
|
};
|
|
|
|
if (formSet.has(endpoint) || formSet.has(endpointType ?? '')) {
|
|
// TODO: handle other user provided options besides baseURL and apiKey
|
|
methods.handleSubmit((data) => {
|
|
const isAzure = endpoint === EModelEndpoint.azureOpenAI;
|
|
const isOpenAIBase =
|
|
isAzure ||
|
|
endpoint === EModelEndpoint.openAI ||
|
|
endpoint === EModelEndpoint.gptPlugins ||
|
|
endpoint === EModelEndpoint.assistants;
|
|
if (isAzure) {
|
|
data.apiKey = 'n/a';
|
|
}
|
|
|
|
const emptyValues = Object.keys(data).filter((key) => {
|
|
if (!isAzure && key.startsWith('azure')) {
|
|
return false;
|
|
}
|
|
if (isOpenAIBase && key === 'baseURL') {
|
|
return false;
|
|
}
|
|
if (key === 'baseURL' && !userProvideURL) {
|
|
return false;
|
|
}
|
|
return data[key] === '';
|
|
});
|
|
|
|
if (emptyValues.length > 0) {
|
|
showToast({
|
|
message: 'The following fields are required: ' + emptyValues.join(', '),
|
|
status: 'error',
|
|
});
|
|
onOpenChange(true);
|
|
return;
|
|
}
|
|
|
|
const { apiKey, baseURL, ...azureOptions } = data;
|
|
const userProvidedData = { apiKey, baseURL };
|
|
if (isAzure) {
|
|
userProvidedData.apiKey = JSON.stringify({
|
|
azureOpenAIApiKey: azureOptions.azureOpenAIApiKey,
|
|
azureOpenAIApiInstanceName: azureOptions.azureOpenAIApiInstanceName,
|
|
azureOpenAIApiDeploymentName: azureOptions.azureOpenAIApiDeploymentName,
|
|
azureOpenAIApiVersion: azureOptions.azureOpenAIApiVersion,
|
|
});
|
|
}
|
|
|
|
saveKey(JSON.stringify(userProvidedData));
|
|
methods.reset();
|
|
})();
|
|
return;
|
|
}
|
|
|
|
saveKey(userKey);
|
|
setUserKey('');
|
|
};
|
|
|
|
const EndpointComponent =
|
|
endpointComponents[endpointType ?? endpoint] ?? endpointComponents['default'];
|
|
const expiryTime = getExpiry();
|
|
const config = endpointsConfig?.[endpoint];
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogTemplate
|
|
title={`${localize('com_endpoint_config_key_for')} ${alternateName[endpoint] ?? endpoint}`}
|
|
className="w-full max-w-[650px] sm:w-3/4 md:w-3/4 lg:w-3/4"
|
|
main={
|
|
<div className="grid w-full items-center gap-2">
|
|
<small className="text-red-600">
|
|
{`${localize('com_endpoint_config_key_encryption')} ${
|
|
!expiryTime
|
|
? localize('com_endpoint_config_key_expiry')
|
|
: `${new Date(expiryTime).toLocaleString()}`
|
|
}`}
|
|
</small>
|
|
<Dropdown
|
|
label="Expires "
|
|
value={expiresAtLabel}
|
|
onChange={handleExpirationChange}
|
|
options={expirationOptions.map((option) => option.display)}
|
|
width={185}
|
|
/>
|
|
<FormProvider {...methods}>
|
|
<EndpointComponent
|
|
userKey={userKey}
|
|
setUserKey={setUserKey}
|
|
endpoint={
|
|
endpoint === EModelEndpoint.gptPlugins && config?.azure
|
|
? EModelEndpoint.azureOpenAI
|
|
: endpoint
|
|
}
|
|
userProvideURL={userProvideURL}
|
|
/>
|
|
</FormProvider>
|
|
<HelpText endpoint={endpoint} />
|
|
</div>
|
|
}
|
|
selection={{
|
|
selectHandler: submit,
|
|
selectClasses: 'bg-green-500 hover:bg-green-600 dark:hover:bg-green-600 text-white',
|
|
selectText: localize('com_ui_submit'),
|
|
}}
|
|
leftButtons={
|
|
<RevokeKeysButton endpoint={endpoint} showText={false} disabled={!expiryTime} />
|
|
}
|
|
/>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default SetKeyDialog;
|