我正在使用node.js处理项目,并且我正在使用IBM的watson会话服务。问题是当我为正确的节点发送文本时,它总是从根节点开始并忽略正确的节点。
我使用文档中提供的代码:
var watson = require('watson-developer-cloud');
var conversation = watson.conversation({
username: '{username}',
password: '{password}',
version: 'v1',
version_date: '2016-09-20'
});
conversation.message({
workspace_id: '25dfa8a0-0263-471b-8980-317e68c30488',
input: {'text': 'Turn on the lights'},
context: context
}, function(err, response) {
if (err)
console.log('error:', err);
else
console.log(JSON.stringify(response, null, 2));
});
谢谢你的帮助。
答案 0 :(得分:1)
感谢@ SimonO' Doherty,它最终奏效,而且很简单。只需返回旧输出的上下文。