import { FormLayout } from '@/constants/form'; import { useTranslate } from '@/hooks/common-hooks'; import { SliderInputFormField } from './slider-input-form-field'; interface IProps { initialValue?: number; max?: number; } export function MaxTokenNumberFormField({ max = 2048, initialValue }: IProps) { const { t } = useTranslate('knowledgeConfiguration'); return ( ); }