Botpress は、最新のLLMs を搭載したAIエージェントを構築するためのオールインワン・プラットフォームである。
import { Integration } from "@Botpress/sdk"; import protonMailChannel from "./protonMailChannel"; export default new Integration({ channels: { protonMailChannel: protonMailChannel, }, actions: { sendEmail: ({ ctx }) => { console.info(`sending email for bot${ctx.botId}`); }, }, register: async ({ ctx }) => { console.info(`integration installed in bot ${ctx.botId}`); }, handler: async ({ req }) => { console.info("received request from protonMail", req); }, });
1,054,284,234
700K