mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
36 lines
800 B
TypeScript
36 lines
800 B
TypeScript
import { Form, Slider } from 'antd';
|
|
|
|
type FieldType = {
|
|
similarity_threshold?: number;
|
|
vector_similarity_weight?: number;
|
|
};
|
|
|
|
interface IProps {
|
|
isTooltipShown?: boolean;
|
|
}
|
|
|
|
const SimilaritySlider = ({ isTooltipShown = false }: IProps) => {
|
|
return (
|
|
<>
|
|
<Form.Item<FieldType>
|
|
label="Similarity threshold"
|
|
name={'similarity_threshold'}
|
|
tooltip={isTooltipShown && 'xxx'}
|
|
initialValue={0.2}
|
|
>
|
|
<Slider max={1} step={0.01} />
|
|
</Form.Item>
|
|
<Form.Item<FieldType>
|
|
label="Vector similarity weight"
|
|
name={'vector_similarity_weight'}
|
|
initialValue={0.3}
|
|
tooltip={isTooltipShown && 'xxx'}
|
|
>
|
|
<Slider max={1} step={0.01} />
|
|
</Form.Item>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SimilaritySlider;
|