Feature/Custom Function to Seq Agent (#3612)

* add custom function to seq agent

* add seqExecuteFlow node
This commit is contained in:
Henry Heng
2025-01-23 13:04:40 +00:00
committed by GitHub
parent 50a7339299
commit e26fc63be0
17 changed files with 36048 additions and 35393 deletions
+3 -1
View File
@@ -94,6 +94,8 @@ export interface INodeParams {
tabIdentifier?: string
tabs?: Array<INodeParams>
refresh?: boolean
freeSolo?: boolean
loadPreviousNodes?: boolean
}
export interface INodeExecutionData {
@@ -183,7 +185,7 @@ export interface IMultiAgentNode {
checkpointMemory?: any
}
type SeqAgentType = 'agent' | 'condition' | 'end' | 'start' | 'tool' | 'state' | 'llm'
type SeqAgentType = 'agent' | 'condition' | 'end' | 'start' | 'tool' | 'state' | 'llm' | 'utilities'
export type ConversationHistorySelection = 'user_question' | 'last_message' | 'all_messages' | 'empty'
export interface ISeqAgentNode {