fix(trigger): subscription removed in workflow

This commit is contained in:
yessenia
2025-10-21 17:16:10 +08:00
parent 439727746c
commit 18a52b4937
16 changed files with 55 additions and 44 deletions

View File

@ -31,13 +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 { AppModeEnum } from '@/types/app'
import type { ModelModeType } from '@/types/app'
export type ModelParameterModalProps = {
popupClassName?: string
portalToFollowElemContentClassName?: string
isAdvancedMode: boolean
mode: AppModeEnum
mode: ModelModeType
modelId: string
provider: string
setModel: (model: { modelId: string; provider: string; mode?: string; features?: string[] }) => void