mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 15:06:50 +08:00
### What problem does this PR solve? fix: #209 after saving the knowledge base configuration, jump to the dataset page feat: translate ConfigurationForm feat: translate KnowledgeTesting feat: translate document list page feat: translate knowledge list page Issue link: #209 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
39 lines
957 B
TypeScript
39 lines
957 B
TypeScript
import { useTranslate } from '@/hooks/commonHooks';
|
|
import { Form, Slider } from 'antd';
|
|
|
|
type FieldType = {
|
|
similarity_threshold?: number;
|
|
vector_similarity_weight?: number;
|
|
};
|
|
|
|
interface IProps {
|
|
isTooltipShown?: boolean;
|
|
}
|
|
|
|
const SimilaritySlider = ({ isTooltipShown = false }: IProps) => {
|
|
const { t } = useTranslate('knowledgeDetails');
|
|
|
|
return (
|
|
<>
|
|
<Form.Item<FieldType>
|
|
label={t('similarityThreshold')}
|
|
name={'similarity_threshold'}
|
|
tooltip={isTooltipShown && t('similarityThresholdTip')}
|
|
initialValue={0.2}
|
|
>
|
|
<Slider max={1} step={0.01} />
|
|
</Form.Item>
|
|
<Form.Item<FieldType>
|
|
label={t('vectorSimilarityWeight')}
|
|
name={'vector_similarity_weight'}
|
|
initialValue={0.3}
|
|
tooltip={isTooltipShown && t('vectorSimilarityWeightTip')}
|
|
>
|
|
<Slider max={1} step={0.01} />
|
|
</Form.Item>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SimilaritySlider;
|