mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-11 11:56:53 +08:00
fix: one step run (#14724)
This commit is contained in:
30
web/app/components/workflow/nodes/utils.ts
Normal file
30
web/app/components/workflow/nodes/utils.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import type {
|
||||
NodeOutPutVar,
|
||||
ValueSelector,
|
||||
} from '@/app/components/workflow/types'
|
||||
import { InputVarType } from '@/app/components/workflow/types'
|
||||
|
||||
export const findVariableWhenOnLLMVision = (valueSelector: ValueSelector, availableVars: NodeOutPutVar[]) => {
|
||||
const currentVariableNode = availableVars.find((availableVar) => {
|
||||
if (valueSelector[0] === 'sys' && availableVar.isStartNode)
|
||||
return true
|
||||
|
||||
return valueSelector[0] === availableVar.nodeId
|
||||
})
|
||||
const currentVariable = currentVariableNode?.vars.find((variable) => {
|
||||
if (valueSelector[0] === 'sys' && variable.variable === `sys.${valueSelector[1]}`)
|
||||
return true
|
||||
return variable.variable === valueSelector[1]
|
||||
})
|
||||
|
||||
let formType = ''
|
||||
if (currentVariable?.type === 'array[file]')
|
||||
formType = InputVarType.multiFiles
|
||||
if (currentVariable?.type === 'file')
|
||||
formType = InputVarType.singleFile
|
||||
|
||||
return currentVariable && {
|
||||
...currentVariable,
|
||||
formType,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user