使用Node js在Watson Assistant中编辑特定对话节点的上下文变量

时间:2018-05-15 07:30:53

标签: node.js ibm-watson watson-conversation

我有一个代码将Watson会话链接到facebook messenger。 现在,我想实施以下对话 -
用户:我需要一辆车 Bot:告诉需要车辆的位置
用户:圣莫尼卡码头
Bot:****将位置标识为Watson Assistant *的上下文变量($ location) *从节点应用程序中找出ETA并将其作为上下文变量($ ETA)发送给Watson Assistant ****
Bot:您的车辆将在ETA分钟内到达。

我的代码是 -

var express = require('express');
var request = require('request');
var bodyParser = require('body-parser');
var watson = require('watson-developer-cloud');
var app = express();
var contexid = "";

app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json())

var conversation_id = "";
var w_conversation = watson.conversation({
    url: 'https://gateway.watsonplatform.net/conversation/api',
    username: process.env.CONVERSATION_USERNAME || 'username',
    password: process.env.CONVERSATION_PASSWORD || 'pass',
    version: 'v1',
    version_date: '2016-07-11'
});
var workspace = process.env.WORKSPACE_ID || 'id';

app.get('/webhook/', function (req, res) {
    if (req.query['hub.verify_token'] === 'fb_token') {
        res.send(req.query['hub.challenge']);
    }
    res.send('Error : no token.');
});

app.post('/webhook/', function (req, res) {
    var text = null;

    messaging_events = req.body.entry[0].messaging;
    for (i = 0; i < messaging_events.length; i++) { 
        event = req.body.entry[0].messaging[i];
        sender = event.sender.id;

        if (event.message && event.message.text) {
            text = event.message.text;
        }else if (event.postback && !text) {
            text = event.postback.payload;
        }else{
            break;
        }

        var params = {
            input: text,
            // context: {"conversation_id": conversation_id}
            context:contexid
        }

        var payload = {
            workspace_id: "id"
        };

        if (params) {
            if (params.input) {
                params.input = params.input.replace("\n","");
                payload.input = { "text": params.input };
            }
            if (params.context) {
                payload.context = params.context;
            }
        }
        callWatson(payload, sender);
    }
    res.sendStatus(200);
});

function callWatson(payload, sender) {
    w_conversation.message(payload, function (err, convResults) {
         console.log(convResults);
        contexid = convResults.context;

        if (err) {
            return responseToRequest.send("Erro.");
        }

        if(convResults.context != null)
           conversation_id = convResults.context.conversation_id;
        if(convResults != null && convResults.output != null){
            var i = 0;
            while(i < convResults.output.text.length){
                sendMessage(sender, convResults.output.text[i++]);
            }
        }

    });
}

function sendMessage(sender, text_) {
    text_ = text_.substring(0, 319);
    messageData = { text: text_ };

    request({
        url: 'https://graph.facebook.com/v2.6/me/messages',
        qs: { access_token: token },
        method: 'POST',
        json: {
            recipient: { id: sender },
            message: messageData,
        }
    }, function (error, response, body) {
        if (error) {
            console.log('Error sending message: ', error);
        } else if (response.body.error) {
            console.log('Error: ', response.body.error);
        }
    });
};

var token = "token";
var host = (process.env.VCAP_APP_HOST || 'localhost');
var port = (process.env.VCAP_APP_PORT || 3000);
app.listen(port, host);

如何从Watson Assistant将位置标识为上下文变量($ location),并将ETA从节点应用程序发送到Watson Assistant作为上下文变量? 我正在考虑使用动作在我的Watson对话节点中进行编程调用,但是无法实现它。

1 个答案:

答案 0 :(得分:0)

convResults将包含完整的上下文对象,包括对话框设置的上下文变量。