Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@builderbot-plugins/flow-routing
Advanced tools
This is a routing to flows for the library @bot-whatsapp
import "dotenv/config"
import {
createBot,
createProvider,
createFlow,
} from "@bot-whatsapp/bot";
import BaileysProvider from "@bot-whatsapp/provider/baileys";
import MockAdapter from "@bot-whatsapp/database/mock";
import vendedorFlow from './flows/vendedor.flow';
import expertoFlow from './flows/experto.flow';
import { FlowRouting } from '@builderbot-plugins/flow-routing';
/**
* Configuracion de Plugin
*/
const agents = [
{
name: "EMPLEADO_VENDEDOR",
description:
"Soy Rob el vendedor amable encargado de atentender si tienes intencion de comprar o interesado en algun producto, mis respuestas son breves.",
flow: vendedorFlow,
},
{
name: "EMPLEADO_EXPERTO",
description:
"Saludos, mi nombre es Leifer.Soy el engargado especializado en resolver tus dudas sobre nuestro curso de chatbot, el cual está desarrollado con Node.js y JavaScript. Este curso está diseñado para facilitar la automatización de ventas en tu negocio. Te proporcionaré respuestas concisas y directas para maximizar tu entendimiento.",
flow: expertoFlow,
}
]
const routing = new FlowRouting(agents)
/**
*
*/
const main = async () => {
const adapterDB = new MockAdapter();
const welcomeFlow = addKeyword(EVENTS.WELCOME).addAction(null, async (ctx, { flowDynamic, gotoFlow }) => {
const flow = await routing.determine(ctx.body)
if (flow) {
return gotoFlow(flow)
}
await flowDynamic('Ups!, parece que no logre entender lo que me decias.', { delay: 500 })
})
const adapterFlow = createFlow([
welcomeFlow,
vendedorFlow,
expertoFlow
]);
const adapterProvider = createProvider(BaileysProvider);
const configBot = {
flow: adapterFlow,
provider: adapterProvider,
database: adapterDB,
}
await createBot(configBot);
};
main();
Elimeleth Capuano https://github.com/elimeleth
FAQs
This is a routing to flows for the library @bot-whatsapp
We found that @builderbot-plugins/flow-routing demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.