Files
ragflow/web/src/components/top-n-item.tsx
balibabu 58e95f76c1 feat: change all file names to lowercase #1574 (#1575)
### What problem does this PR solve?

feat: change all file names to lowercase #1574

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2024-07-17 19:07:34 +08:00

28 lines
499 B
TypeScript

import { useTranslate } from '@/hooks/common-hooks';
import { Form, Slider } from 'antd';
type FieldType = {
top_n?: number;
};
interface IProps {
initialValue?: number;
}
const TopNItem = ({ initialValue = 8 }: IProps) => {
const { t } = useTranslate('chat');
return (
<Form.Item<FieldType>
label={t('topN')}
name={'top_n'}
initialValue={initialValue}
tooltip={t('topNTip')}
>
<Slider max={30} />
</Form.Item>
);
};
export default TopNItem;