oex2003's picture
Deploy Evolution API to Hugging Face Space
5e518ea
Raw
History Blame
265 Bytes
import { BaseChatbotDto, BaseChatbotSettingDto } from '../../base-chatbot.dto';
export class FlowiseDto extends BaseChatbotDto {
apiUrl: string;
apiKey?: string;
}
export class FlowiseSettingDto extends BaseChatbotSettingDto {
flowiseIdFallback?: string;
}