Commit 887e1d53 by Archer Committed by GitHub

fix: o1 model cannot run in simpleApp (#2873)

parent 1dcd39bf
...@@ -171,7 +171,7 @@ export function form2AppWorkflow( ...@@ -171,7 +171,7 @@ export function form2AppWorkflow(
debugLabel: i18nT('common:core.module.Dataset quote.label'), debugLabel: i18nT('common:core.module.Dataset quote.label'),
description: '', description: '',
valueType: WorkflowIOValueTypeEnum.datasetQuote, valueType: WorkflowIOValueTypeEnum.datasetQuote,
value: selectedDatasets ? [datasetNodeId, 'quoteQA'] : undefined value: selectedDatasets?.length > 0 ? [datasetNodeId, 'quoteQA'] : undefined
}, },
{ {
key: NodeInputKeyEnum.aiChatVision, key: NodeInputKeyEnum.aiChatVision,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment