add child processes

This commit is contained in:
Henry
2023-05-15 23:49:14 +01:00
parent 9f53111aac
commit 205de44234
4 changed files with 337 additions and 69 deletions
+12
View File
@@ -138,3 +138,15 @@ export interface IDatabaseExport {
chatflows: IChatFlow[]
apikeys: ICommonObject[]
}
export interface IRunChatflowMessageValue {
chatflow: IChatFlow
incomingInput: IncomingInput
componentNodes: IComponentNodes
endingNodeData?: INodeData
}
export interface IChildProcessMessage {
key: string
value?: any
}