closeBot.createBotWithAi asks CloseBot to generate a new bot from your description.
automations/create-closebot-bot-with-ai.automation.ts
Inputs
Providename and a natural-language description. You can also set category and folderId.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a CloseBot bot from a natural-language description.
closeBot.createBotWithAi asks CloseBot to generate a new bot from your description.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("Create CloseBot bot with AI", () => {
onDashboardRun({ title: "Create AI bot" })
closeBot.createBotWithAi({
name: "Website lead qualifier",
description: "Qualify website leads and offer an appointment.",
folderId: "folder-id",
})
})
name and a natural-language description. You can also set category and folderId.