2024-03-22 19:07:08 -04:00
|
|
|
import TextareaAutosize from 'react-textarea-autosize';
|
|
|
|
|
import { ImageDetail, imageDetailNumeric, imageDetailValue } from 'librechat-data-provider';
|
🤖 feat: OpenAI Assistants v2 (initial support) (#2781)
* 🤖 Assistants V2 Support: Part 1
- Separated Azure Assistants to its own endpoint
- File Search / Vector Store integration is incomplete, but can toggle and use storage from playground
- Code Interpreter resource files can be added but not deleted
- GPT-4o is supported
- Many improvements to the Assistants Endpoint overall
data-provider v2 changes
copy existing route as v1
chore: rename new endpoint to reduce comparison operations and add new azure filesource
api: add azureAssistants part 1
force use of version for assistants/assistantsAzure
chore: switch name back to azureAssistants
refactor type version: string | number
Ensure assistants endpoints have version set
fix: isArchived type issue in ConversationListParams
refactor: update assistants mutations/queries with endpoint/version definitions, update Assistants Map structure
chore: FilePreview component ExtendedFile type assertion
feat: isAssistantsEndpoint helper
chore: remove unused useGenerations
chore(buildTree): type issue
chore(Advanced): type issue (unused component, maybe in future)
first pass for multi-assistant endpoint rewrite
fix(listAssistants): pass params correctly
feat: list separate assistants by endpoint
fix(useTextarea): access assistantMap correctly
fix: assistant endpoint switching, resetting ID
fix: broken during rewrite, selecting assistant mention
fix: set/invalidate assistants endpoint query data correctly
feat: Fix issue with assistant ID not being reset correctly
getOpenAIClient helper function
feat: add toast for assistant deletion
fix: assistants delete right after create issue for azure
fix: assistant patching
refactor: actions to use getOpenAIClient
refactor: consolidate logic into helpers file
fix: issue where conversation data was not initially available
v1 chat support
refactor(spendTokens): only early return if completionTokens isNaN
fix(OpenAIClient): ensure spendTokens has all necessary params
refactor: route/controller logic
fix(assistants/initializeClient): use defaultHeaders field
fix: sanitize default operation id
chore: bump openai package
first pass v2 action service
feat: retroactive domain parsing for actions added via v1
feat: delete db records of actions/assistants on openai assistant deletion
chore: remove vision tools from v2 assistants
feat: v2 upload and delete assistant vision images
WIP first pass, thread attachments
fix: show assistant vision files (save local/firebase copy)
v2 image continue
fix: annotations
fix: refine annotations
show analyze as error if is no longer submitting before progress reaches 1 and show file_search as retrieval tool
fix: abort run, undefined endpoint issue
refactor: consolidate capabilities logic and anticipate versioning
frontend version 2 changes
fix: query selection and filter
add endpoint to unknown filepath
add file ids to resource, deleting in progress
enable/disable file search
remove version log
* 🤖 Assistants V2 Support: Part 2
🎹 fix: Autocompletion Chrome Bug on Action API Key Input
chore: remove `useOriginNavigate`
chore: set correct OpenAI Storage Source
fix: azure file deletions, instantiate clients by source for deletion
update code interpret files info
feat: deleteResourceFileId
chore: increase poll interval as azure easily rate limits
fix: openai file deletions, TODO: evaluate rejected deletion settled promises to determine which to delete from db records
file source icons
update table file filters
chore: file search info and versioning
fix: retrieval update with necessary tool_resources if specified
fix(useMentions): add optional chaining in case listMap value is undefined
fix: force assistant avatar roundedness
fix: azure assistants, check correct flag
chore: bump data-provider
* fix: merge conflict
* ci: fix backend tests due to new updates
* chore: update .env.example
* meilisearch improvements
* localization updates
* chore: update comparisons
* feat: add additional metadata: endpoint, author ID
* chore: azureAssistants ENDPOINTS exclusion warning
2024-05-19 12:56:55 -04:00
|
|
|
import type { ValueType } from '@rc-component/mini-decimal';
|
|
|
|
|
import type { TModelSelectProps } from '~/common';
|
2024-03-22 19:07:08 -04:00
|
|
|
import {
|
|
|
|
|
Input,
|
|
|
|
|
Label,
|
|
|
|
|
Switch,
|
|
|
|
|
Slider,
|
|
|
|
|
HoverCard,
|
|
|
|
|
InputNumber,
|
|
|
|
|
HoverCardTrigger,
|
|
|
|
|
} from '~/components/ui';
|
|
|
|
|
import { cn, defaultTextProps, optionText, removeFocusOutlines } from '~/utils/';
|
|
|
|
|
import { useLocalize, useDebouncedInput } from '~/hooks';
|
|
|
|
|
import OptionHover from './OptionHover';
|
|
|
|
|
import { ESide } from '~/common';
|
|
|
|
|
|
|
|
|
|
export default function Settings({
|
|
|
|
|
conversation,
|
|
|
|
|
setOption,
|
|
|
|
|
readonly,
|
|
|
|
|
}: Omit<TModelSelectProps, 'models'>) {
|
2024-03-23 20:21:40 -04:00
|
|
|
/* This is an unfinished component for future update */
|
2024-03-22 19:07:08 -04:00
|
|
|
const localize = useLocalize();
|
|
|
|
|
const {
|
|
|
|
|
endpoint,
|
|
|
|
|
endpointType,
|
|
|
|
|
chatGptLabel,
|
|
|
|
|
promptPrefix,
|
|
|
|
|
temperature,
|
|
|
|
|
top_p: topP,
|
|
|
|
|
frequency_penalty: freqP,
|
|
|
|
|
presence_penalty: presP,
|
|
|
|
|
resendFiles,
|
|
|
|
|
imageDetail,
|
|
|
|
|
} = conversation ?? {};
|
|
|
|
|
const [setChatGptLabel, chatGptLabelValue] = useDebouncedInput({
|
|
|
|
|
setOption,
|
|
|
|
|
optionKey: 'chatGptLabel',
|
|
|
|
|
initialValue: chatGptLabel,
|
|
|
|
|
});
|
|
|
|
|
const [setPromptPrefix, promptPrefixValue] = useDebouncedInput({
|
|
|
|
|
setOption,
|
|
|
|
|
optionKey: 'promptPrefix',
|
|
|
|
|
initialValue: promptPrefix,
|
|
|
|
|
});
|
|
|
|
|
const [setTemperature, temperatureValue] = useDebouncedInput({
|
|
|
|
|
setOption,
|
|
|
|
|
optionKey: 'temperature',
|
|
|
|
|
initialValue: temperature,
|
|
|
|
|
});
|
|
|
|
|
const [setTopP, topPValue] = useDebouncedInput({
|
|
|
|
|
setOption,
|
|
|
|
|
optionKey: 'top_p',
|
|
|
|
|
initialValue: topP,
|
|
|
|
|
});
|
|
|
|
|
const [setFreqP, freqPValue] = useDebouncedInput({
|
|
|
|
|
setOption,
|
|
|
|
|
optionKey: 'frequency_penalty',
|
|
|
|
|
initialValue: freqP,
|
|
|
|
|
});
|
|
|
|
|
const [setPresP, presPValue] = useDebouncedInput({
|
|
|
|
|
setOption,
|
|
|
|
|
optionKey: 'presence_penalty',
|
|
|
|
|
initialValue: presP,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!conversation) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const setResendFiles = setOption('resendFiles');
|
|
|
|
|
const setImageDetail = setOption('imageDetail');
|
|
|
|
|
|
|
|
|
|
const optionEndpoint = endpointType ?? endpoint;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="grid grid-cols-5 gap-6">
|
|
|
|
|
<div className="col-span-5 flex flex-col items-center justify-start gap-6 sm:col-span-3">
|
|
|
|
|
<div className="grid w-full items-center gap-2">
|
|
|
|
|
<Label htmlFor="chatGptLabel" className="text-left text-sm font-medium">
|
|
|
|
|
{localize('com_endpoint_custom_name')}{' '}
|
|
|
|
|
<small className="opacity-40">({localize('com_endpoint_default_blank')})</small>
|
|
|
|
|
</Label>
|
|
|
|
|
<Input
|
|
|
|
|
id="chatGptLabel"
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={(chatGptLabelValue as string) || ''}
|
|
|
|
|
onChange={setChatGptLabel}
|
|
|
|
|
placeholder={localize('com_endpoint_openai_custom_name_placeholder')}
|
|
|
|
|
className={cn(
|
|
|
|
|
defaultTextProps,
|
|
|
|
|
'flex h-10 max-h-10 w-full resize-none px-3 py-2',
|
|
|
|
|
removeFocusOutlines,
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="grid w-full items-center gap-2">
|
|
|
|
|
<Label htmlFor="promptPrefix" className="text-left text-sm font-medium">
|
|
|
|
|
{localize('com_endpoint_prompt_prefix')}{' '}
|
|
|
|
|
<small className="opacity-40">({localize('com_endpoint_default_blank')})</small>
|
|
|
|
|
</Label>
|
|
|
|
|
<TextareaAutosize
|
|
|
|
|
id="promptPrefix"
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={(promptPrefixValue as string) || ''}
|
|
|
|
|
onChange={setPromptPrefix}
|
|
|
|
|
placeholder={localize('com_endpoint_openai_prompt_prefix_placeholder')}
|
|
|
|
|
className={cn(
|
|
|
|
|
defaultTextProps,
|
2025-05-31 20:48:23 +02:00
|
|
|
'flex max-h-[138px] min-h-[100px] w-full resize-none px-3 py-2',
|
2024-03-22 19:07:08 -04:00
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="col-span-5 flex flex-col items-center justify-start gap-6 px-3 sm:col-span-2">
|
|
|
|
|
<HoverCard openDelay={300}>
|
|
|
|
|
<HoverCardTrigger className="grid w-full items-center gap-2">
|
|
|
|
|
<div className="flex justify-between">
|
|
|
|
|
<Label htmlFor="temp-int" className="text-left text-sm font-medium">
|
|
|
|
|
{localize('com_endpoint_temperature')}{' '}
|
|
|
|
|
<small className="opacity-40">
|
2025-02-09 18:05:31 +01:00
|
|
|
({localize('com_endpoint_default_with_num', { 0: '1' })})
|
2024-03-22 19:07:08 -04:00
|
|
|
</small>
|
|
|
|
|
</Label>
|
|
|
|
|
<InputNumber
|
|
|
|
|
id="temp-int"
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={temperatureValue as number}
|
🤖 feat: OpenAI Assistants v2 (initial support) (#2781)
* 🤖 Assistants V2 Support: Part 1
- Separated Azure Assistants to its own endpoint
- File Search / Vector Store integration is incomplete, but can toggle and use storage from playground
- Code Interpreter resource files can be added but not deleted
- GPT-4o is supported
- Many improvements to the Assistants Endpoint overall
data-provider v2 changes
copy existing route as v1
chore: rename new endpoint to reduce comparison operations and add new azure filesource
api: add azureAssistants part 1
force use of version for assistants/assistantsAzure
chore: switch name back to azureAssistants
refactor type version: string | number
Ensure assistants endpoints have version set
fix: isArchived type issue in ConversationListParams
refactor: update assistants mutations/queries with endpoint/version definitions, update Assistants Map structure
chore: FilePreview component ExtendedFile type assertion
feat: isAssistantsEndpoint helper
chore: remove unused useGenerations
chore(buildTree): type issue
chore(Advanced): type issue (unused component, maybe in future)
first pass for multi-assistant endpoint rewrite
fix(listAssistants): pass params correctly
feat: list separate assistants by endpoint
fix(useTextarea): access assistantMap correctly
fix: assistant endpoint switching, resetting ID
fix: broken during rewrite, selecting assistant mention
fix: set/invalidate assistants endpoint query data correctly
feat: Fix issue with assistant ID not being reset correctly
getOpenAIClient helper function
feat: add toast for assistant deletion
fix: assistants delete right after create issue for azure
fix: assistant patching
refactor: actions to use getOpenAIClient
refactor: consolidate logic into helpers file
fix: issue where conversation data was not initially available
v1 chat support
refactor(spendTokens): only early return if completionTokens isNaN
fix(OpenAIClient): ensure spendTokens has all necessary params
refactor: route/controller logic
fix(assistants/initializeClient): use defaultHeaders field
fix: sanitize default operation id
chore: bump openai package
first pass v2 action service
feat: retroactive domain parsing for actions added via v1
feat: delete db records of actions/assistants on openai assistant deletion
chore: remove vision tools from v2 assistants
feat: v2 upload and delete assistant vision images
WIP first pass, thread attachments
fix: show assistant vision files (save local/firebase copy)
v2 image continue
fix: annotations
fix: refine annotations
show analyze as error if is no longer submitting before progress reaches 1 and show file_search as retrieval tool
fix: abort run, undefined endpoint issue
refactor: consolidate capabilities logic and anticipate versioning
frontend version 2 changes
fix: query selection and filter
add endpoint to unknown filepath
add file ids to resource, deleting in progress
enable/disable file search
remove version log
* 🤖 Assistants V2 Support: Part 2
🎹 fix: Autocompletion Chrome Bug on Action API Key Input
chore: remove `useOriginNavigate`
chore: set correct OpenAI Storage Source
fix: azure file deletions, instantiate clients by source for deletion
update code interpret files info
feat: deleteResourceFileId
chore: increase poll interval as azure easily rate limits
fix: openai file deletions, TODO: evaluate rejected deletion settled promises to determine which to delete from db records
file source icons
update table file filters
chore: file search info and versioning
fix: retrieval update with necessary tool_resources if specified
fix(useMentions): add optional chaining in case listMap value is undefined
fix: force assistant avatar roundedness
fix: azure assistants, check correct flag
chore: bump data-provider
* fix: merge conflict
* ci: fix backend tests due to new updates
* chore: update .env.example
* meilisearch improvements
* localization updates
* chore: update comparisons
* feat: add additional metadata: endpoint, author ID
* chore: azureAssistants ENDPOINTS exclusion warning
2024-05-19 12:56:55 -04:00
|
|
|
onChange={setTemperature as (value: ValueType | null) => void}
|
2024-03-22 19:07:08 -04:00
|
|
|
max={2}
|
|
|
|
|
min={0}
|
|
|
|
|
step={0.01}
|
|
|
|
|
controls={false}
|
|
|
|
|
className={cn(
|
|
|
|
|
defaultTextProps,
|
|
|
|
|
cn(
|
|
|
|
|
optionText,
|
|
|
|
|
'reset-rc-number-input reset-rc-number-input-text-right h-auto w-12 border-0 group-hover/temp:border-gray-200',
|
|
|
|
|
),
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<Slider
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={[(temperatureValue as number) ?? 1]}
|
|
|
|
|
onValueChange={(value) => setTemperature(value[0])}
|
2024-11-23 01:10:03 +01:00
|
|
|
onDoubleClick={() => setTemperature(1)}
|
2024-03-22 19:07:08 -04:00
|
|
|
max={2}
|
|
|
|
|
min={0}
|
|
|
|
|
step={0.01}
|
|
|
|
|
className="flex h-4 w-full"
|
|
|
|
|
/>
|
|
|
|
|
</HoverCardTrigger>
|
|
|
|
|
<OptionHover endpoint={optionEndpoint ?? ''} type="temp" side={ESide.Left} />
|
|
|
|
|
</HoverCard>
|
|
|
|
|
<HoverCard openDelay={300}>
|
|
|
|
|
<HoverCardTrigger className="grid w-full items-center gap-2">
|
|
|
|
|
<div className="flex justify-between">
|
|
|
|
|
<Label htmlFor="top-p-int" className="text-left text-sm font-medium">
|
|
|
|
|
{localize('com_endpoint_top_p')}{' '}
|
2025-05-31 20:48:23 +02:00
|
|
|
{/* eslint-disable-next-line i18next/no-literal-string */}
|
2024-03-22 19:07:08 -04:00
|
|
|
<small className="opacity-40">({localize('com_endpoint_default')}: 1)</small>
|
|
|
|
|
</Label>
|
|
|
|
|
<InputNumber
|
|
|
|
|
id="top-p-int"
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={topPValue as number}
|
|
|
|
|
onChange={(value) => setTopP(Number(value))}
|
|
|
|
|
max={1}
|
|
|
|
|
min={0}
|
|
|
|
|
step={0.01}
|
|
|
|
|
controls={false}
|
|
|
|
|
className={cn(
|
|
|
|
|
defaultTextProps,
|
|
|
|
|
cn(
|
|
|
|
|
optionText,
|
|
|
|
|
'reset-rc-number-input reset-rc-number-input-text-right h-auto w-12 border-0 group-hover/temp:border-gray-200',
|
|
|
|
|
),
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<Slider
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={[(topPValue as number) ?? 1]}
|
|
|
|
|
onValueChange={(value) => setTopP(value[0])}
|
2024-11-23 01:10:03 +01:00
|
|
|
onDoubleClick={() => setTopP(1)}
|
2024-03-22 19:07:08 -04:00
|
|
|
max={1}
|
|
|
|
|
min={0}
|
|
|
|
|
step={0.01}
|
|
|
|
|
className="flex h-4 w-full"
|
|
|
|
|
/>
|
|
|
|
|
</HoverCardTrigger>
|
|
|
|
|
<OptionHover endpoint={optionEndpoint ?? ''} type="topp" side={ESide.Left} />
|
|
|
|
|
</HoverCard>
|
|
|
|
|
|
|
|
|
|
<HoverCard openDelay={300}>
|
|
|
|
|
<HoverCardTrigger className="grid w-full items-center gap-2">
|
|
|
|
|
<div className="flex justify-between">
|
|
|
|
|
<Label htmlFor="freq-penalty-int" className="text-left text-sm font-medium">
|
2025-05-31 20:48:23 +02:00
|
|
|
{localize('com_endpoint_frequency_penalty')}
|
|
|
|
|
{/* eslint-disable-next-line i18next/no-literal-string */}
|
2024-03-22 19:07:08 -04:00
|
|
|
<small className="opacity-40">({localize('com_endpoint_default')}: 0)</small>
|
|
|
|
|
</Label>
|
|
|
|
|
<InputNumber
|
|
|
|
|
id="freq-penalty-int"
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={freqPValue as number}
|
|
|
|
|
onChange={(value) => setFreqP(Number(value))}
|
|
|
|
|
max={2}
|
|
|
|
|
min={-2}
|
|
|
|
|
step={0.01}
|
|
|
|
|
controls={false}
|
|
|
|
|
className={cn(
|
|
|
|
|
defaultTextProps,
|
|
|
|
|
cn(
|
|
|
|
|
optionText,
|
|
|
|
|
'reset-rc-number-input reset-rc-number-input-text-right h-auto w-12 border-0 group-hover/temp:border-gray-200',
|
|
|
|
|
),
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<Slider
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={[(freqPValue as number) ?? 0]}
|
|
|
|
|
onValueChange={(value) => setFreqP(value[0])}
|
2024-11-23 01:10:03 +01:00
|
|
|
onDoubleClick={() => setFreqP(0)}
|
2024-03-22 19:07:08 -04:00
|
|
|
max={2}
|
|
|
|
|
min={-2}
|
|
|
|
|
step={0.01}
|
|
|
|
|
className="flex h-4 w-full"
|
|
|
|
|
/>
|
|
|
|
|
</HoverCardTrigger>
|
|
|
|
|
<OptionHover endpoint={optionEndpoint ?? ''} type="freq" side={ESide.Left} />
|
|
|
|
|
</HoverCard>
|
|
|
|
|
|
|
|
|
|
<HoverCard openDelay={300}>
|
|
|
|
|
<HoverCardTrigger className="grid w-full items-center gap-2">
|
|
|
|
|
<div className="flex justify-between">
|
|
|
|
|
<Label htmlFor="pres-penalty-int" className="text-left text-sm font-medium">
|
|
|
|
|
{localize('com_endpoint_presence_penalty')}{' '}
|
2025-05-31 20:48:23 +02:00
|
|
|
{/* eslint-disable-next-line i18next/no-literal-string */}
|
2024-03-22 19:07:08 -04:00
|
|
|
<small className="opacity-40">({localize('com_endpoint_default')}: 0)</small>
|
|
|
|
|
</Label>
|
|
|
|
|
<InputNumber
|
|
|
|
|
id="pres-penalty-int"
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={presPValue as number}
|
|
|
|
|
onChange={(value) => setPresP(Number(value))}
|
|
|
|
|
max={2}
|
|
|
|
|
min={-2}
|
|
|
|
|
step={0.01}
|
|
|
|
|
controls={false}
|
|
|
|
|
className={cn(
|
|
|
|
|
defaultTextProps,
|
|
|
|
|
cn(
|
|
|
|
|
optionText,
|
|
|
|
|
'reset-rc-number-input reset-rc-number-input-text-right h-auto w-12 border-0 group-hover/temp:border-gray-200',
|
|
|
|
|
),
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<Slider
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={[(presPValue as number) ?? 0]}
|
|
|
|
|
onValueChange={(value) => setPresP(value[0])}
|
2024-11-23 01:10:03 +01:00
|
|
|
onDoubleClick={() => setPresP(0)}
|
2024-03-22 19:07:08 -04:00
|
|
|
max={2}
|
|
|
|
|
min={-2}
|
|
|
|
|
step={0.01}
|
|
|
|
|
className="flex h-4 w-full"
|
|
|
|
|
/>
|
|
|
|
|
</HoverCardTrigger>
|
|
|
|
|
<OptionHover endpoint={optionEndpoint ?? ''} type="pres" side={ESide.Left} />
|
|
|
|
|
</HoverCard>
|
|
|
|
|
<div className="w-full">
|
|
|
|
|
<div className="mb-2 flex w-full justify-between gap-2">
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="resend-files"
|
|
|
|
|
className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 dark:text-gray-50"
|
|
|
|
|
>
|
|
|
|
|
<small>{localize('com_endpoint_plug_resend_files')}</small>
|
|
|
|
|
</label>
|
|
|
|
|
<label
|
|
|
|
|
htmlFor="image-detail-value"
|
|
|
|
|
className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 dark:text-gray-50"
|
|
|
|
|
>
|
|
|
|
|
<small>{localize('com_endpoint_plug_image_detail')}</small>
|
|
|
|
|
</label>
|
|
|
|
|
<Input
|
|
|
|
|
id="image-detail-value"
|
|
|
|
|
disabled={true}
|
|
|
|
|
value={imageDetail ?? ImageDetail.auto}
|
|
|
|
|
className={cn(
|
|
|
|
|
defaultTextProps,
|
|
|
|
|
optionText,
|
|
|
|
|
'flex rounded-md bg-transparent py-2 text-xs focus:outline-none focus:ring-2 focus:ring-gray-400 focus:ring-offset-2 dark:border-gray-700',
|
|
|
|
|
'pointer-events-none max-h-5 w-12 border-0 group-hover/temp:border-gray-200',
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex w-full justify-between gap-2">
|
|
|
|
|
<HoverCard openDelay={500}>
|
|
|
|
|
<HoverCardTrigger>
|
|
|
|
|
<Switch
|
|
|
|
|
id="resend-files"
|
|
|
|
|
checked={resendFiles ?? true}
|
|
|
|
|
onCheckedChange={(checked: boolean) => setResendFiles(checked)}
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
className="flex"
|
|
|
|
|
/>
|
|
|
|
|
<OptionHover endpoint={optionEndpoint ?? ''} type="resend" side={ESide.Bottom} />
|
|
|
|
|
</HoverCardTrigger>
|
|
|
|
|
</HoverCard>
|
|
|
|
|
<HoverCard openDelay={500}>
|
|
|
|
|
<HoverCardTrigger className="flex w-[52%] md:w-[125px]">
|
|
|
|
|
<Slider
|
|
|
|
|
id="image-detail-slider"
|
|
|
|
|
disabled={readonly}
|
|
|
|
|
value={[
|
|
|
|
|
imageDetailNumeric[imageDetail ?? ''] ?? imageDetailNumeric[ImageDetail.auto],
|
|
|
|
|
]}
|
|
|
|
|
onValueChange={(value) => setImageDetail(imageDetailValue[value[0]])}
|
2024-11-23 01:10:03 +01:00
|
|
|
onDoubleClick={() => setImageDetail(ImageDetail.auto)}
|
2024-03-22 19:07:08 -04:00
|
|
|
max={2}
|
|
|
|
|
min={0}
|
|
|
|
|
step={1}
|
|
|
|
|
/>
|
|
|
|
|
<OptionHover endpoint={optionEndpoint ?? ''} type="detail" side={ESide.Bottom} />
|
|
|
|
|
</HoverCardTrigger>
|
|
|
|
|
</HoverCard>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|