mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-20 20:32:23 -06:00
feat: flowise integration
This commit is contained in:
@@ -2,6 +2,7 @@ import { InstanceDto } from '@api/dto/instance.dto';
|
||||
import { PrismaRepository } from '@api/repository/repository.service';
|
||||
import {
|
||||
difyController,
|
||||
flowiseController,
|
||||
genericController,
|
||||
openaiController,
|
||||
typebotController,
|
||||
@@ -89,6 +90,9 @@ export class ChatbotController {
|
||||
pushName,
|
||||
isIntegration,
|
||||
};
|
||||
// generic
|
||||
await genericController.emit(emitData);
|
||||
|
||||
// typebot
|
||||
await typebotController.emit(emitData);
|
||||
|
||||
@@ -98,8 +102,8 @@ export class ChatbotController {
|
||||
// dify
|
||||
await difyController.emit(emitData);
|
||||
|
||||
// generic
|
||||
await genericController.emit(emitData);
|
||||
// flowise
|
||||
await flowiseController.emit(emitData);
|
||||
}
|
||||
|
||||
public async setInstance(instanceName: string, data: any): Promise<any> {
|
||||
|
||||
Reference in New Issue
Block a user