plazbot
Version:
Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.
19 lines (18 loc) • 671 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Plazbot = void 0;
const agent_1 = require("./core/agent");
const portal_1 = require("./core/portal");
const message_1 = require("./core/message");
const template_1 = require("./core/template");
const contact_1 = require("./core/contact");
class Plazbot {
constructor(options) {
this.agent = new agent_1.Agent(options);
this.portal = new portal_1.Portal(options);
this.message = new message_1.Message(options);
this.template = new template_1.Template(options);
this.contact = new contact_1.Contact(options);
}
}
exports.Plazbot = Plazbot;