如何获得从Alexa回复到用户回复的时间?

时间:2018-09-23 19:57:46

标签: node.js alexa alexa-skills-kit alexa-skill alexa-sdk-nodejs

是否可以使用户花费时间使用alexa-sdk从Alexa回答命令?为了使其更直观,我尝试测量以下各项:

User says: "Alexa open my app"
Alexa says: "Welcome to my app, say next to go to the next section"
-- A few seconds pass here, this is what I need to know --
User says: "Next"

我在文档中找不到任何内容,我通常会尝试使用process.hrtime之类的东西在做出响应之前和之后启动计时器,但是我的处理程序看起来像这样:

let timer;

const StartIntentHandler = {
    canHandle(handlerInput) {
        return (
            handlerInput.requestEnvelope.request.type === 'IntentRequest' &&
            handlerInput.requestEnvelope.request.intent.name === 'StartIntent'
        );
    },
    handle(handlerInput) {
        timer = process.hrtime();
        const speechText = 'Welcome to my app, say next to go to the next section';

        return handlerInput.responseBuilder
            .speak(speechText)
            .reprompt(speechText)
            .getResponse();
    }
};

const NextIntentHandler = {
    canHandle(handlerInput) {
        return (
            handlerInput.requestEnvelope.request.type === 'IntentRequest' &&
            handlerInput.requestEnvelope.request.intent.name ===
                'NextIntent'
        );
    },
    handle(handlerInput) {
        const diff = process.hrtime(timer);
        const timeInNanoseconds = diff[0] * 1e9 + diff[1];

        return handlerInput.responseBuilder
            .speak(`${timeInNanoseconds} nanoseconds`)
            .getResponse();
    }
};

但是,这恰好在Alexa启动命令之前开始计数,因此我得到的时间是Alexa说出该命令所花费的时间+用户延迟答复的时间。

现在,我使用秒表测量了Alexa的响应时间,我从总时间中减去了响应时间,但这并不理想。

2 个答案:

答案 0 :(得分:1)

Alexa停止说出用户开始响应的命令时的时间信息是用户私人信息,并且不会向开发人员公开。

注意:您当前使用秒表和减法的方法无法给出正确的时间度量,因为您没有考虑用户设备将信息发送到AVS(Alexa语音服务)云所需的时间和时间AVS需要调用您的技能lambda。

答案 1 :(得分:0)

只需添加 <中断时间='300ms'/ > SSML标签

示例:-

const speakOutput = "Hello, here is your test <break time = '300ms'/>" ;

handlerInput.responseBuilder
                .speak(speakOutput)
                .getResponse();