mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 15:00:57 +03:00
Feature/Custom Function to Seq Agent (#3612)
* add custom function to seq agent * add seqExecuteFlow node
This commit is contained in:
@@ -18,7 +18,7 @@ class End_SeqAgents implements INode {
|
||||
constructor() {
|
||||
this.label = 'End'
|
||||
this.name = 'seqEnd'
|
||||
this.version = 2.0
|
||||
this.version = 2.1
|
||||
this.type = 'End'
|
||||
this.icon = 'end.svg'
|
||||
this.category = 'Sequential Agents'
|
||||
@@ -27,9 +27,11 @@ class End_SeqAgents implements INode {
|
||||
this.documentation = 'https://docs.flowiseai.com/using-flowise/agentflows/sequential-agents#id-10.-end-node'
|
||||
this.inputs = [
|
||||
{
|
||||
label: 'Agent | Condition | LLM | Tool Node',
|
||||
label: 'Sequential Node',
|
||||
name: 'sequentialNode',
|
||||
type: 'Agent | Condition | LLMNode | ToolNode'
|
||||
type: 'Agent | Condition | LLMNode | ToolNode | CustomFunction | ExecuteFlow',
|
||||
description:
|
||||
'Can be connected to one of the following nodes: Agent, Condition, LLM Node, Tool Node, Custom Function, Execute Flow'
|
||||
}
|
||||
]
|
||||
this.hideOutput = true
|
||||
|
||||
Reference in New Issue
Block a user