ragflow / web /src /components /layout-recognize.tsx
balibabu
fix: thumbnails are too large in the chat box #818 (#819)
6aa5abc
raw
history blame
461 Bytes
import { useTranslate } from '@/hooks/commonHooks';
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;