mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: add llm Select to KeywordExtractForm #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
28 lines
498 B
TypeScript
28 lines
498 B
TypeScript
import { useTranslate } from '@/hooks/commonHooks';
|
|
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;
|