import { useTranslate } from '@/hooks/common-hooks'; import { Flex, Form, InputNumber, Slider } from 'antd'; interface IProps { initialValue?: number; max?: number; } const MaxTokenNumber = ({ initialValue = 128, max = 2048 }: IProps) => { const { t } = useTranslate('knowledgeConfiguration'); return ( ); }; export default MaxTokenNumber;