mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
fix: add computer_use property to mixed variable extractor
This commit is contained in:
@ -385,6 +385,8 @@ export function useMixedVariableExtractor({
|
||||
nextData.vision = nestedNodeData.vision
|
||||
if (Object.prototype.hasOwnProperty.call(nestedNodeData, 'memory'))
|
||||
nextData.memory = nestedNodeData.memory
|
||||
if (Object.prototype.hasOwnProperty.call(nestedNodeData, 'computer_use'))
|
||||
nextData.computer_use = nestedNodeData.computer_use
|
||||
|
||||
if (Object.keys(nextData).length === 0)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user