什么是我的recast.ai机器人的终点机器人连接器的终点url

时间:2017-01-25 16:49:53

标签: artificial-intelligence chatbot slack-api sap-conversational-ai

我在recast.ai创建了一个机器人,我希望与slack集成。 现在它bot connector要求我的机器人在localhost运行的终点(由ngrok转发)。现在我的问题是:

  1. 我的机器人实际上是在recast.ai上运行的(我已经创建了& 没有在我的机器上然后我怎么能转发它(同样如 微软LUIS,我相信)?
  2. 我应该为我的recast.ai机器人开发一个解析器。主持它 那么什么是机器人连接器意味着什么?

1 个答案:

答案 0 :(得分:3)

您的机器人在Recast.AI上正在运行。 Recast.AI是一个平台和API,您可以在其中训练 bot 以了解用户的输入。但是您需要创建一个接收用户输入的脚本并将其发送到Recast.AI API进行分析。

Bot Connector可帮助您将脚本连接到任何通道(如信使或松弛),并从这些渠道接收所有用户的输入。

因此,您需要使用ngrok在本地运行您的脚本(也称为您的机器人),并在机器人连接器界面中设置此URL以接收来自您用户的每条消息。

如果您在NodeJs中制作机器人,您的脚本将如下所示:

WordPress

你的文件index.js:

npm install --save recastai recastai-botconnector express body-parser 

并运行你的机器人

/* module imports */
const BotConnector = require('recastai-botconnector')
const recastai = require('recastai')
const express = require('express')
const bodyParser = require('body-parser')

/* Bot Connector connection */
const myBot = new BotConnector({ userSlug: 'YOUR_USER_SLUG', botId: 'YOUR_BOT_ID', userToken: 'YOUR_USER_TOKEN' })

/* Recast.AI API connection */
const client = new recastai.Client('YOUR_REQUEST_TOKEN')

/* Server setup */
const app = express()
const port = 5000

app.use(bodyParser.json())
app.post('/', (req, res) => myBot.listen(req, res))
app.listen(port, () => console.log('Bot running on port', port))

/* When a bot receive a message */
myBot.onTextMessage(message => {
  console.log(message)
  const userText = message.content.attachment.content
  const conversationToken = message.senderId

  client.textConverse(userText, { conversationToken })
    .then(res => {
      // We get the first reply from Recast.AI or a default reply
      const reply = res.reply() || 'Sorry, I didn\'t understand'

      const response = {
        type: 'text',
        content: reply,
      }

      return message.reply(response)
    })
    .then(() => console.log('Message successfully sent'))
    .catch(err => console.error(`Error while sending message: ${err}`))
})