mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-18 11:36:44 +08:00
### What problem does this PR solve? Feat: Delete useless request hooks. #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
import { LlmModelType } from '@/constants/knowledge';
|
|
import { useComposeLlmOptionsByModelTypes } from '@/hooks/use-llm-request';
|
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
import { forwardRef, memo, useMemo, useState } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { LlmSettingFieldItems } from '../llm-setting-items/next';
|
|
import { Popover, PopoverContent, PopoverTrigger } from '../ui/popover';
|
|
import { Select, SelectTrigger, SelectValue } from '../ui/select';
|
|
|
|
export interface NextInnerLLMSelectProps {
|
|
id?: string;
|
|
value?: string;
|
|
onInitialValue?: (value: string, option: any) => void;
|
|
onChange?: (value: string) => void;
|
|
disabled?: boolean;
|
|
filter?: string;
|
|
showSpeech2TextModel?: boolean;
|
|
}
|
|
|
|
const NextInnerLLMSelect = forwardRef<
|
|
React.ElementRef<typeof SelectPrimitive.Trigger>,
|
|
NextInnerLLMSelectProps
|
|
>(({ value, disabled, filter, showSpeech2TextModel = false }, ref) => {
|
|
const { t } = useTranslation();
|
|
const [isPopoverOpen, setIsPopoverOpen] = useState(false);
|
|
|
|
const ttsModel = useMemo(() => {
|
|
return showSpeech2TextModel ? [LlmModelType.Speech2text] : [];
|
|
}, [showSpeech2TextModel]);
|
|
|
|
const modelTypes = useMemo(() => {
|
|
if (filter === LlmModelType.Chat) {
|
|
return [LlmModelType.Chat];
|
|
} else if (filter === LlmModelType.Image2text) {
|
|
return [LlmModelType.Image2text, ...ttsModel];
|
|
} else {
|
|
return [LlmModelType.Chat, LlmModelType.Image2text, ...ttsModel];
|
|
}
|
|
}, [filter, ttsModel]);
|
|
|
|
const modelOptions = useComposeLlmOptionsByModelTypes(modelTypes);
|
|
|
|
return (
|
|
<Select disabled={disabled} value={value}>
|
|
<Popover open={isPopoverOpen} onOpenChange={setIsPopoverOpen}>
|
|
<PopoverTrigger asChild>
|
|
<SelectTrigger
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
setIsPopoverOpen(true);
|
|
}}
|
|
ref={ref}
|
|
>
|
|
<SelectValue placeholder={t('common.pleaseSelect')}>
|
|
{
|
|
modelOptions
|
|
.flatMap((x) => x.options)
|
|
.find((x) => x.value === value)?.label
|
|
}
|
|
</SelectValue>
|
|
</SelectTrigger>
|
|
</PopoverTrigger>
|
|
<PopoverContent side={'left'}>
|
|
<LlmSettingFieldItems options={modelOptions}></LlmSettingFieldItems>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</Select>
|
|
);
|
|
});
|
|
|
|
NextInnerLLMSelect.displayName = 'LLMSelect';
|
|
|
|
export const NextLLMSelect = memo(NextInnerLLMSelect);
|