import { useTranslate } from '@/hooks/commonHooks'; import { Form, Slider } from 'antd'; type FieldType = { top_n?: number; }; const TopNItem = () => { const { t } = useTranslate('chat'); return ( label={t('topN')} name={'top_n'} initialValue={8} tooltip={t('topNTip')} > ); }; export default TopNItem;