File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,26 @@ export const appWorkflow2Form = ({
70
70
node . inputs ,
71
71
NodeInputKeyEnum . history
72
72
) ;
73
+ defaultAppForm . aiSettings . aiChatReasoning = findInputValueByKey (
74
+ node . inputs ,
75
+ NodeInputKeyEnum . aiChatReasoning
76
+ ) ;
77
+ defaultAppForm . aiSettings . aiChatTopP = findInputValueByKey (
78
+ node . inputs ,
79
+ NodeInputKeyEnum . aiChatTopP
80
+ ) ;
81
+ defaultAppForm . aiSettings . aiChatStopSign = findInputValueByKey (
82
+ node . inputs ,
83
+ NodeInputKeyEnum . aiChatStopSign
84
+ ) ;
85
+ defaultAppForm . aiSettings . aiChatResponseFormat = findInputValueByKey (
86
+ node . inputs ,
87
+ NodeInputKeyEnum . aiChatResponseFormat
88
+ ) ;
89
+ defaultAppForm . aiSettings . aiChatJsonSchema = findInputValueByKey (
90
+ node . inputs ,
91
+ NodeInputKeyEnum . aiChatJsonSchema
92
+ ) ;
73
93
} else if ( node . flowNodeType === FlowNodeTypeEnum . datasetSearchNode ) {
74
94
defaultAppForm . dataset . datasets = findInputValueByKey (
75
95
node . inputs ,
You can’t perform that action at this time.
0 commit comments