mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-26 20:34:10 +01:00
179 lines
6.3 KiB
TypeScript
179 lines
6.3 KiB
TypeScript
|
|
import { useState, useMemo, useEffect } from 'react';
|
||
|
|
import TextareaAutosize from 'react-textarea-autosize';
|
||
|
|
import { TPreset, defaultOrderQuery } from 'librechat-data-provider';
|
||
|
|
import type { TModelSelectProps, Option } from '~/common';
|
||
|
|
import { Label, HoverCard, SelectDropDown, HoverCardTrigger } from '~/components/ui';
|
||
|
|
import { cn, defaultTextProps, removeFocusOutlines, mapAssistants } from '~/utils';
|
||
|
|
import { useLocalize, useDebouncedInput } from '~/hooks';
|
||
|
|
import { useListAssistantsQuery } from '~/data-provider';
|
||
|
|
import OptionHover from './OptionHover';
|
||
|
|
import { ESide } from '~/common';
|
||
|
|
|
||
|
|
export default function Settings({ conversation, setOption, models, readonly }: TModelSelectProps) {
|
||
|
|
const localize = useLocalize();
|
||
|
|
const defaultOption = useMemo(
|
||
|
|
() => ({ label: localize('com_endpoint_use_active_assistant'), value: '' }),
|
||
|
|
[localize],
|
||
|
|
);
|
||
|
|
|
||
|
|
const { data: assistants = [] } = useListAssistantsQuery(defaultOrderQuery, {
|
||
|
|
select: (res) =>
|
||
|
|
[
|
||
|
|
defaultOption,
|
||
|
|
...res.data.map(({ id, name }) => ({
|
||
|
|
label: name,
|
||
|
|
value: id,
|
||
|
|
})),
|
||
|
|
].filter(Boolean),
|
||
|
|
});
|
||
|
|
|
||
|
|
const { data: assistantMap = {} } = useListAssistantsQuery(defaultOrderQuery, {
|
||
|
|
select: (res) => mapAssistants(res.data),
|
||
|
|
});
|
||
|
|
|
||
|
|
const { model, endpoint, assistant_id, endpointType, promptPrefix, instructions } =
|
||
|
|
conversation ?? {};
|
||
|
|
const [onPromptPrefixChange, promptPrefixValue] = useDebouncedInput(
|
||
|
|
setOption,
|
||
|
|
'promptPrefix',
|
||
|
|
promptPrefix,
|
||
|
|
);
|
||
|
|
const [onInstructionsChange, instructionsValue] = useDebouncedInput(
|
||
|
|
setOption,
|
||
|
|
'instructions',
|
||
|
|
instructions,
|
||
|
|
);
|
||
|
|
|
||
|
|
const activeAssistant = useMemo(() => {
|
||
|
|
if (assistant_id) {
|
||
|
|
return assistantMap[assistant_id];
|
||
|
|
}
|
||
|
|
|
||
|
|
return null;
|
||
|
|
}, [assistant_id, assistantMap]);
|
||
|
|
|
||
|
|
const modelOptions = useMemo(() => {
|
||
|
|
return models.map((model) => ({
|
||
|
|
label:
|
||
|
|
model === activeAssistant?.model
|
||
|
|
? `${model} (${localize('com_endpoint_assistant_model')})`
|
||
|
|
: model,
|
||
|
|
value: model,
|
||
|
|
}));
|
||
|
|
}, [models, activeAssistant, localize]);
|
||
|
|
|
||
|
|
const [assistantValue, setAssistantValue] = useState<Option>(
|
||
|
|
activeAssistant ? { label: activeAssistant.name, value: activeAssistant.id } : defaultOption,
|
||
|
|
);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
if (assistantValue && assistantValue.value === '') {
|
||
|
|
setOption('presetOverride')({
|
||
|
|
assistant_id: assistantValue.value,
|
||
|
|
} as Partial<TPreset>);
|
||
|
|
}
|
||
|
|
|
||
|
|
// Reason: `setOption` causes a re-render on every update
|
||
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||
|
|
}, [assistantValue]);
|
||
|
|
|
||
|
|
if (!conversation) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
const setModel = setOption('model');
|
||
|
|
const setAssistant = (value: string) => {
|
||
|
|
if (!value) {
|
||
|
|
setAssistantValue(defaultOption);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
const assistant = assistantMap[value];
|
||
|
|
if (!assistant) {
|
||
|
|
setAssistantValue(defaultOption);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
setAssistantValue({
|
||
|
|
label: assistant.name ?? '',
|
||
|
|
value: assistant.id ?? '',
|
||
|
|
});
|
||
|
|
setOption('assistant_id')(assistant.id);
|
||
|
|
};
|
||
|
|
|
||
|
|
const optionEndpoint = endpointType ?? endpoint;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="grid grid-cols-6 gap-6">
|
||
|
|
<div className="col-span-6 flex flex-col items-center justify-start gap-6 sm:col-span-3">
|
||
|
|
<div className="grid w-full items-center gap-2">
|
||
|
|
<SelectDropDown
|
||
|
|
value={model ?? ''}
|
||
|
|
setValue={setModel}
|
||
|
|
availableValues={modelOptions}
|
||
|
|
disabled={readonly}
|
||
|
|
className={cn(defaultTextProps, 'flex w-full resize-none', removeFocusOutlines)}
|
||
|
|
containerClassName="flex w-full resize-none"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div className="col-span-6 flex flex-col items-center justify-start gap-6 px-3 sm:col-span-3">
|
||
|
|
<HoverCard openDelay={300}>
|
||
|
|
<HoverCardTrigger className="grid w-full items-center gap-2">
|
||
|
|
<div className="grid w-full items-center gap-2">
|
||
|
|
<SelectDropDown
|
||
|
|
title={localize('com_endpoint_assistant')}
|
||
|
|
value={assistantValue}
|
||
|
|
setValue={setAssistant}
|
||
|
|
availableValues={assistants as Option[]}
|
||
|
|
disabled={readonly}
|
||
|
|
className={cn(defaultTextProps, 'flex w-full resize-none', removeFocusOutlines)}
|
||
|
|
containerClassName="flex w-full resize-none"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</HoverCardTrigger>
|
||
|
|
<OptionHover endpoint={optionEndpoint ?? ''} type="temp" side={ESide.Left} />
|
||
|
|
</HoverCard>
|
||
|
|
</div>
|
||
|
|
<div className="col-span-6 flex flex-col items-center justify-start gap-6">
|
||
|
|
<div className="grid w-full items-center gap-2">
|
||
|
|
<Label htmlFor="promptPrefix" className="text-left text-sm font-medium">
|
||
|
|
{localize('com_endpoint_prompt_prefix_assistants')}{' '}
|
||
|
|
<small className="opacity-40">({localize('com_endpoint_default_blank')})</small>
|
||
|
|
</Label>
|
||
|
|
<TextareaAutosize
|
||
|
|
id="promptPrefix"
|
||
|
|
disabled={readonly}
|
||
|
|
value={promptPrefixValue as string | undefined}
|
||
|
|
onChange={onPromptPrefixChange}
|
||
|
|
placeholder={localize('com_endpoint_prompt_prefix_assistants_placeholder')}
|
||
|
|
className={cn(
|
||
|
|
defaultTextProps,
|
||
|
|
'dark:bg-gray-700 dark:hover:bg-gray-700/60 dark:focus:bg-gray-700',
|
||
|
|
'flex max-h-[240px] min-h-[80px] w-full resize-none px-3 py-2 ',
|
||
|
|
)}
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
<div className="grid w-full items-center gap-2">
|
||
|
|
<Label htmlFor="instructions" className="text-left text-sm font-medium">
|
||
|
|
{localize('com_endpoint_instructions_assistants')}{' '}
|
||
|
|
<small className="opacity-40">({localize('com_endpoint_default_blank')})</small>
|
||
|
|
</Label>
|
||
|
|
<TextareaAutosize
|
||
|
|
id="instructions"
|
||
|
|
disabled={readonly}
|
||
|
|
value={instructionsValue as string | undefined}
|
||
|
|
onChange={onInstructionsChange}
|
||
|
|
placeholder={localize('com_endpoint_instructions_assistants_placeholder')}
|
||
|
|
className={cn(
|
||
|
|
defaultTextProps,
|
||
|
|
'dark:bg-gray-700 dark:hover:bg-gray-700/60 dark:focus:bg-gray-700',
|
||
|
|
'flex max-h-[240px] min-h-[80px] w-full resize-none px-3 py-2 ',
|
||
|
|
)}
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|