我想将wit.ai与hubot集成。除此之外,我通过适配器在话语论坛服务器上运行hubot。那是次要的。
我安装了https://github.com/guillaumewuip/hubot-wit-helper,安装了npm软件包,但是当我运行bin / hubot时出现此错误
[wit] Stories and POST /converse have been deprecated. This will break in February 2018!
[Thu Mar 01 2018 01:44:58 GMT+0000 (UTC)] ERROR Unable to load /var/discourse/avebot/scripts/avebot: Error: The 'send' action is missing. Learn more at https://wit.ai/docs/quickstart
at validateActions (/var/discourse/avebot/node_modules/node-wit/lib/wit.js:223:11)
at validate (/var/discourse/avebot/node_modules/node-wit/lib/wit.js:212:20)
at new Wit (/var/discourse/avebot/node_modules/node-wit/lib/wit.js:20:35)
at new Robot (/var/discourse/avebot/node_modules/hubot-wit-helper/lib/Robot.js:24:24)
at bot (/var/discourse/avebot/scripts/avebot.js:28:26)
at Robot.loadFile (/var/discourse/avebot/node_modules/hubot/src/robot.coffee:358:11, <js>:226:13)
at Robot.load (/var/discourse/avebot/node_modules/hubot/src/robot.coffee:377:9, <js>:247:30)
at Discourse.loadScripts (/var/discourse/avebot/node_modules/hubot/bin/hubot:93:5, <js>:97:13)
at Object.onceWrapper (events.js:219:13)
at Discourse.emit (events.js:127:13)
at Discourse.run (/var/discourse/avebot/node_modules/hubot-discourse-adapter/src/discourse.coffee:63:5, <js>:89:12)
at Robot.run (/var/discourse/avebot/node_modules/hubot/src/robot.coffee:590:5, <js>:464:27)
at Object.<anonymous> (/var/discourse/avebot/node_modules/hubot/bin/hubot:168:8, <js>:182:11)
at Object.<anonymous> (/var/discourse/avebot/node_modules/hubot/bin/hubot:5:1, <js>:185:4)
at Module._compile (module.js:662:30)
at Object.exports.run (/var/discourse/avebot/node_modules/coffee-script/lib/coffee-script/coffee-script.js:103:25)
at compileScript (/var/discourse/avebot/node_modules/coffee-script/lib/coffee-script/command.js:171:29)
at /var/discourse/avebot/node_modules/coffee-script/lib/coffee-script/command.js:143:18
at FSReqWrap.readFileAfterClose [as oncomplete] (fs.js:532:3)
我把服务器令牌放在上面github页面上的示例脚本的wit_token ='mywittoken'部分,就像这样开始
'use strict';
(() => {
const witHelper = require('hubot-wit-helper');
const WIT_TOKEN = 'myWitToken';
如何让一切顺利?它太旧了吗?
答案 0 :(得分:0)
Wit.ai在2018年2月13日太平洋标准时间上午停止了故事和/或交谈
hubot-wit-helper
npm包似乎仍然使用wit.runActions()
[hubot-wit-helper / lib / Robot.js第72行]中的故事,这些故事将不再用于停止Wit故事。
要让wit.ai再次使用此程序包,您需要按照the official guide了解如何将代码库从故事迁移到/ message API。