fix: resolve issue with the opening statement generated by the AutomaticRes component failing to sync between states. (#12349)

This commit is contained in:
Wood 2025-01-04 11:56:11 +08:00 committed by GitHub
parent 682ebc5f64
commit b680a85b57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,7 @@ import { ADD_EXTERNAL_DATA_TOOL } from '@/app/components/app/configuration/confi
import { INSERT_VARIABLE_VALUE_BLOCK_COMMAND } from '@/app/components/base/prompt-editor/plugins/variable-block'
import { PROMPT_EDITOR_UPDATE_VALUE_BY_EVENT_EMITTER } from '@/app/components/base/prompt-editor/plugins/update-block'
import useBreakpoints, { MediaType } from '@/hooks/use-breakpoints'
import { useFeaturesStore } from '@/app/components/base/features/hooks'
export type ISimplePromptInput = {
mode: AppType
@ -54,6 +55,11 @@ const Prompt: FC<ISimplePromptInput> = ({
const { t } = useTranslation()
const media = useBreakpoints()
const isMobile = media === MediaType.mobile
const featuresStore = useFeaturesStore()
const {
features,
setFeatures,
} = featuresStore!.getState()
const { eventEmitter } = useEventEmitterContextContext()
const {
@ -137,8 +143,18 @@ const Prompt: FC<ISimplePromptInput> = ({
})
setModelConfig(newModelConfig)
setPrevPromptConfig(modelConfig.configs)
if (mode !== AppType.completion)
if (mode !== AppType.completion) {
setIntroduction(res.opening_statement)
const newFeatures = produce(features, (draft) => {
draft.opening = {
...draft.opening,
enabled: !!res.opening_statement,
opening_statement: res.opening_statement,
}
})
setFeatures(newFeatures)
}
showAutomaticFalse()
}
const minHeight = initEditorHeight || 228