mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Refactor Datasets UI #3221. ### Type of change - [X] New Feature (non-breaking change which adds functionality)
91 lines
2.6 KiB
TypeScript
91 lines
2.6 KiB
TypeScript
import { LlmModelType } from '@/constants/knowledge';
|
|
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { useSelectLlmOptionsByModelType } from '@/hooks/llm-hooks';
|
|
import { camelCase } from 'lodash';
|
|
import { useMemo } from 'react';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import {
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from './ui/form';
|
|
import { RAGFlowSelect } from './ui/select';
|
|
|
|
export const enum DocumentType {
|
|
DeepDOC = 'DeepDOC',
|
|
PlainText = 'Plain Text',
|
|
}
|
|
|
|
export function LayoutRecognizeFormField() {
|
|
const form = useFormContext();
|
|
|
|
const { t } = useTranslate('knowledgeDetails');
|
|
const allOptions = useSelectLlmOptionsByModelType();
|
|
|
|
const options = useMemo(() => {
|
|
const list = [DocumentType.DeepDOC, DocumentType.PlainText].map((x) => ({
|
|
label: x === DocumentType.PlainText ? t(camelCase(x)) : 'DeepDoc',
|
|
value: x,
|
|
}));
|
|
|
|
const image2TextList = allOptions[LlmModelType.Image2text].map((x) => {
|
|
return {
|
|
...x,
|
|
options: x.options.map((y) => {
|
|
return {
|
|
...y,
|
|
label: (
|
|
<div className="flex justify-between items-center gap-2">
|
|
{y.label}
|
|
<span className="text-red-500 text-sm">Experimental</span>
|
|
</div>
|
|
),
|
|
};
|
|
}),
|
|
};
|
|
});
|
|
|
|
return [...list, ...image2TextList];
|
|
}, [allOptions, t]);
|
|
|
|
return (
|
|
<FormField
|
|
control={form.control}
|
|
name="parser_config.layout_recognize"
|
|
render={({ field }) => {
|
|
if (typeof field.value === 'undefined') {
|
|
// default value set
|
|
form.setValue(
|
|
'parser_config.layout_recognize',
|
|
form.formState.defaultValues?.parser_config?.layout_recognize ??
|
|
'DeepDOC',
|
|
);
|
|
}
|
|
return (
|
|
<FormItem className=" items-center space-y-0 ">
|
|
<div className="flex items-center">
|
|
<FormLabel
|
|
tooltip={t('layoutRecognizeTip')}
|
|
className="text-sm text-muted-foreground whitespace-nowrap w-1/4"
|
|
>
|
|
{t('layoutRecognize')}
|
|
</FormLabel>
|
|
<div className="w-3/4">
|
|
<FormControl>
|
|
<RAGFlowSelect {...field} options={options}></RAGFlowSelect>
|
|
</FormControl>
|
|
</div>
|
|
</div>
|
|
<div className="flex pt-1">
|
|
<div className="w-1/4"></div>
|
|
<FormMessage />
|
|
</div>
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
);
|
|
}
|