ragflow / web /src /components /layout-recognize.tsx
zxsipola123456's picture
Upload 769 files
ab2ded1 verified
raw
history blame
462 Bytes
import { useTranslate } from '@/hooks/common-hooks';
import { Form, Switch } from 'antd';
const LayoutRecognize = () => {
const { t } = useTranslate('knowledgeDetails');
return (
<Form.Item
name={['parser_config', 'layout_recognize']}
label={t('layoutRecognize')}
initialValue={true}
valuePropName="checked"
tooltip={t('layoutRecognizeTip')}
>
<Switch />
</Form.Item>
);
};
export default LayoutRecognize;