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 (