From 3af1063737abffa60f2604403b4fbe62d82b1183 Mon Sep 17 00:00:00 2001 From: balibabu Date: Thu, 13 Mar 2025 14:51:55 +0800 Subject: [PATCH] Feat: Set the default value of Chunk token number to 512 #6016 (#6017) ### What problem does this PR solve? Feat: Set the default value of Chunk token number to 512 #6016 ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- web/src/components/max-token-number.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/max-token-number.tsx b/web/src/components/max-token-number.tsx index 94829efd9..c64b40fac 100644 --- a/web/src/components/max-token-number.tsx +++ b/web/src/components/max-token-number.tsx @@ -6,7 +6,7 @@ interface IProps { max?: number; } -const MaxTokenNumber = ({ initialValue = 128, max = 2048 }: IProps) => { +const MaxTokenNumber = ({ initialValue = 512, max = 2048 }: IProps) => { const { t } = useTranslate('knowledgeConfiguration'); return (