我正在尝试使用Javascript将新的wit.ai Bot Engine连接到hubot。
不幸的是我不是JS开发人员,所以我很挣扎。

这是我的代码:

'use strict';
const Wit = require('../../../node-wit').Wit;

const firstEntityValue = (entities, entity) => {
  const val = entities && entities[entity] &&
    Array.isArray(entities[entity]) &&
    entities[entity].length > 0 &&
    entities[entity][0].value
  ;
  if (!val) {
    return null;
  }
  return typeof val === 'object' ? val.value : val;
};


const actions = {
  say: (sessionId, msg, cb) => {
    console.log(msg);
    cb();
  },
  merge: (context, entities, cb) => {
    const loc = firstEntityValue(entities, "location");
    if (loc) context.loc = loc;
    cb(context);
  },
  error: (sessionId, msg) => {
    console.log('Oops, I don\'t know what to do.');
  },
    'fetch-weather': (context, cb) => {
    // Here should go the api call, e.g.:
    // context.forecast = apiCall(context.loc)
    context.forecast = 'sunny';
    cb(context);
  },
};

const client = new Wit('MY_TOKEN_HERE', actions);
client.interactive();



module.exports = function(robot) {

   robot.respond(/hey\s+(.+$)/i, function(msg){

        var match = msg.match[1];
        msg.send("I've heared: " + match);

        console.log(match)
        process.stdout.write(match);
    });
}


该脚本侦听“嘿botname”并输出此后写的内容。我的问题是我不知道如何将此输入发送到机智客户端。在bash中使用该脚本而不使用hubot东西对wit来说效果很好,因为它基于wit.ai的快速入门示例。

我面临的另一个问题是,我希望Hubot在每个用户的专用频道中进行监听,并让它响应每条没有前缀的消息。就像节点示例在控制台中所做的一样。

非常感谢您的帮助!

最佳答案

好吧,摆了一段时间之后,我完成了这项工作。
这是我的hubot脚本现在的样子:

'use strict';
const Wit = require('../../../node-wit').Wit;

var room;

const firstEntityValue = (entities, entity) => {
  const val = entities && entities[entity] &&
    Array.isArray(entities[entity]) &&
    entities[entity].length > 0 &&
    entities[entity][0].value
  ;
  if (!val) {
    return null;
  }
  return typeof val === 'object' ? val.value : val;
};


const actions = {
  say: (sessionId, msg, cb) => {
    console.log(msg);
    room.send(msg)
    cb();
  },
  merge: (context, entities, cb) => {
    const loc = firstEntityValue(entities, "location");
    if (loc) context.loc = loc;
    cb(context);
  },
  error: (sessionId, msg) => {
    console.log('Oops, I don\'t know what to do.');
    room.send('Oops, I don\'t know what to do.')
  },
};

const client = new Wit('MY_TOKEN_HERE', actions);
//client.interactive();


module.exports = function(robot) {

  robot.listen(function(msg) {

        var userID = msg.user.id;
        var roomID = msg.user.room;

        // is this a direct chat(private room)?
        if(roomID.indexOf(userID) >= 0){
          if(typeof msg.text == "string"){
              client.pxMessage(msg.text);
          }
        }

        return true;
      },
      function(response){

          // save room for replys
          room = response;
      });
}


另外,我对wit.js进行了骇人听闻的破解,以完成这项工作。我添加了以下功能,因为我无法使用可用的方法来实现此功能。基本上回调和会话阻止了我:

this.pxMessage = (message) => {
      const sessionId = uuid.v1();
      const context = {};
      const steps = 5;

      this.runActions(
        sessionId,
        message,
        context,
        (error, context) => {
          if (error) {
            l.error(error);
          }
          rl.prompt();
        },
        steps
      );
  }


如果有人将其进一步推广并正确实施,我希望看到结果。这种hack可以正常工作,我们现在在rocket.chat中拥有一个真正的智能机器人,该机器人能够理解自然语言并每天学习。

关于javascript - wit.ai Bot引擎故事与hubot连接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36621406/

10-10 05:17