Feature/Add chatflowId To Config (#4950)

* allow overrideconfig from executeflow node to take in variables

* update array object schema

* add chatflowId to config
This commit is contained in:
Henry Heng
2025-07-25 15:35:34 +01:00
committed by GitHub
parent 221ac9b25d
commit 9a6fd97f2c
2 changed files with 3 additions and 0 deletions
@@ -1412,6 +1412,7 @@ class Agent_Agentflow implements INode {
(selectedTool as any).requiresHumanInput && (!iterationContext || Object.keys(iterationContext).length === 0)
const flowConfig = {
chatflowId: options.chatflowid,
sessionId: options.sessionId,
chatId: options.chatId,
input: input,
@@ -1679,6 +1680,7 @@ class Agent_Agentflow implements INode {
let parsedArtifacts
const flowConfig = {
chatflowId: options.chatflowid,
sessionId: options.sessionId,
chatId: options.chatId,
input: input,
@@ -274,6 +274,7 @@ class Tool_Agentflow implements INode {
}
const flowConfig = {
chatflowId: options.chatflowid,
sessionId: options.sessionId,
chatId: options.chatId,
input: input,