mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
Feature/Custom Function to Seq Agent (#3612)
* add custom function to seq agent * add seqExecuteFlow node
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user