From 9503fafc53db3faceff0d497a37f2b184a7511e1 Mon Sep 17 00:00:00 2001 From: lyzno1 Date: Thu, 30 Oct 2025 18:15:03 +0800 Subject: [PATCH] fix --- .../model-provider-page/model-parameter-modal/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/index.tsx b/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/index.tsx index e56def4113..abd037fcac 100644 --- a/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/index.tsx +++ b/web/app/components/header/account-setting/model-provider-page/model-parameter-modal/index.tsx @@ -31,11 +31,13 @@ import Loading from '@/app/components/base/loading' import { useProviderContext } from '@/context/provider-context' import { PROVIDER_WITH_PRESET_TONE, STOP_PARAMETER_RULE, TONE_LIST } from '@/config' import { ArrowNarrowLeft } from '@/app/components/base/icons/src/vender/line/arrows' +import type { ModelModeType } from '@/types/app' export type ModelParameterModalProps = { popupClassName?: string portalToFollowElemContentClassName?: string isAdvancedMode: boolean + mode?: ModelModeType modelId: string provider: string setModel: (model: { modelId: string; provider: string; mode?: string; features?: string[] }) => void