diff --git a/web/src/i18n/en.ts b/web/src/i18n/en.ts index 4a7a3b54..ac917bae 100644 --- a/web/src/i18n/en.ts +++ b/web/src/i18n/en.ts @@ -1457,6 +1457,7 @@ export const en = { appCount: '{{count}} apps shared to this space', resetFeaturesTip: 'Please reconfigure the [Conversation Features - File Upload] settings', logTitle: 'Description', + range: 'Range', }, userMemory: { userMemory: 'User Memory', diff --git a/web/src/i18n/zh.ts b/web/src/i18n/zh.ts index 7ec1d5df..f862c64b 100644 --- a/web/src/i18n/zh.ts +++ b/web/src/i18n/zh.ts @@ -829,6 +829,7 @@ export const zh = { appCount: '{{count}}个应用共享到此空间', resetFeaturesTip: '请重新配置【对话功能-文件上传】功能', logTitle: '描述', + range: '范围', }, table: { totalRecords: '共 {{total}} 条记录' diff --git a/web/src/views/ApplicationConfig/components/ModelConfigModal.tsx b/web/src/views/ApplicationConfig/components/ModelConfigModal.tsx index a80a5905..e04594a8 100644 --- a/web/src/views/ApplicationConfig/components/ModelConfigModal.tsx +++ b/web/src/views/ApplicationConfig/components/ModelConfigModal.tsx @@ -171,12 +171,13 @@ const ModelConfigModal = forwardRef( key={item.key} name={item.key} label={t(`application.${item.key}`)} - extra={t(`application.${item.key}_desc`)} + extra={<>{t(`application.${item.key}_desc`)} | {t('application.range')}: [{item.min}, {item.max}]} > ))}