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