自定义意图处理程序不会触发,而是调用alexa默认意图

问题描述 投票:0回答:1

所以我写了一个意图的处理程序,用户要求Alexa推荐一项服务,即“Alexa你能推荐一名水管工”。问题是,Alexa会触发其默认推荐操作。

对话如下:

用户:Alexa打开布加勒斯特的洞察力

Alexa:嗨,欢迎来到Bucharest Insight,你好吗?你可以问我关于当地新闻的问题或者向我询问推荐。

网友:我需要一个水管工

Alexa:这里有一些顶级的

我期待我的getRecommendationIntentHandler被触发,因为我已正确设置了意图(参见下面的JSON) - "I need a {serviceName}",

Alexa的结果似乎是响应中的构建,而不是下面的自定义intent处理程序:

const getRecommendationIntentHandler = {


canHandle(handlerInput) {
    return handlerInput.requestEnvelope.request.type === 'IntentRequest'
      && handlerInput.requestEnvelope.request.intent.name === 'getRecommendationIntent';
  },
  handle(handlerInput) {
    console.log('Called getRecommendationIntentHandler');

    const responseBuilder = handlerInput.responseBuilder;
    const filledSlots = handlerInput.requestEnvelope.request.intent.slots;

    // Get the filled slots inputted by the user
    const slotValues = getSlotValues(filledSlots);

    console.log(JSON.stringify(slotValues));

    const speechText = 'getRecommendationIntentHandler called';
    return responseBuilder
      .speak(speechText)
      .getResponse();
  },
};

我从下面的Alexa Skills Kit附上了我的JSON)

{
"interactionModel": {
    "languageModel": {
        "invocationName": "bucharest insight",
        "intents": [
            {
                "name": "AMAZON.CancelIntent",
                "samples": []
            },
            {
                "name": "AMAZON.HelpIntent",
                "samples": []
            },
            {
                "name": "AMAZON.StopIntent",
                "samples": []
            },
            {
                "name": "NewsIntent",
                "slots": [],
                "samples": [
                    "What's the latest news",
                    "Tell me the news",
                    "Can you tell me the news please",
                    "I want the news",
                    "Play the news"
                ]
            },
            {
                "name": "getRecommendationIntent",
                "slots": [
                    {
                        "name": "serviceName",
                        "type": "AMAZON.ProfessionalType",
                        "samples": [
                            "Do you have {serviceName}",
                            "I would like to get a {serviceName}",
                            "An {serviceName}",
                            "A {serviceName}",
                            "{serviceName}",
                            "I would like a {serviceName}"
                        ]
                    }
                ],
                "samples": [
                    "Have you got any plumbers",
                    "Do you know a good {serviceName}",
                    "Do you know of a good {serviceName}",
                    "Can you recommend me a {serviceName} please",
                    "I want a {serviceName} do you know anyone",
                    "Have you got any good {serviceName}",
                    "Can you find me a {serviceName}",
                    "I need a {serviceName}",
                    "Can you find me a good {serviceName}",
                    "Do you know of any good {serviceName}",
                    "Can you recommend me a {serviceName}"
                ]
            },
            {
                "name": "AMAZON.PauseIntent",
                "samples": []
            },
            {
                "name": "AMAZON.ResumeIntent",
                "samples": []
            }
        ],
        "types": [
            {
                "name": "AMAZON.ProfessionalType",
                "values": [
                    {
                        "name": {
                            "value": "fashion designer",
                            "synonyms": [
                                "Fashion",
                                "clothes designer"
                            ]
                        }
                    },
                    {
                        "name": {
                            "value": "Interior designer",
                            "synonyms": [
                                "Home designer"
                            ]
                        }
                    },
                    {
                        "name": {
                            "value": "Painter",
                            "synonyms": [
                                "Painting"
                            ]
                        }
                    },
                    {
                        "name": {
                            "value": "Electrician",
                            "synonyms": [
                                "Electric man"
                            ]
                        }
                    },
                    {
                        "name": {
                            "value": "Plumber",
                            "synonyms": [
                                "plumber",
                                "Water man"
                            ]
                        }
                    }
                ]
            }
        ]
    },
    "dialog": {
        "intents": [
            {
                "name": "getRecommendationIntent",
                "confirmationRequired": true,
                "prompts": {
                    "confirmation": "Confirm.Intent.508140955512"
                },
                "slots": [
                    {
                        "name": "serviceName",
                        "type": "AMAZON.ProfessionalType",
                        "confirmationRequired": true,
                        "elicitationRequired": true,
                        "prompts": {
                            "confirmation": "Confirm.Slot.508140955512.325067758753",
                            "elicitation": "Elicit.Slot.508140955512.325067758753"
                        }
                    }
                ]
            }
        ]
    },
    "prompts": [
        {
            "id": "Elicit.Slot.508140955512.325067758753",
            "variations": [
                {
                    "type": "PlainText",
                    "value": "What service do you want?"
                },
                {
                    "type": "PlainText",
                    "value": "Can you tell me what you're looking for ?"
                },
                {
                    "type": "PlainText",
                    "value": "What's the serivice you are looking for?"
                }
            ]
        },
        {
            "id": "Confirm.Slot.508140955512.325067758753",
            "variations": [
                {
                    "type": "PlainText",
                    "value": "So you want to find a {serviceName} , correct?"
                }
            ]
        },
        {
            "id": "Confirm.Intent.508140955512",
            "variations": [
                {
                    "type": "PlainText",
                    "value": "So you want me to find a {serviceName} , is that correct?"
                },
                {
                    "type": "PlainText",
                    "value": "So you want me to recommend you a {serviceName} , am I right ?"
                }
            ]
        }
    ]
    }
}

任何帮助将不胜感激,我对此有进一步的疑问。

- 新评论06/09/2018 - 这是Alexa创建的JSON:

JSON输入:

{
    "version": "1.0",
    "session": {
        "new": true,
        "sessionId": "amzn1.echo-api.session.5688bb9b-0f5c-4616-9c8d-46d2218a167b",
        "application": {
            "applicationId": "amzn1.ask.skill.180e6d66-06c5-412c-8fe0-90f2fcc31a3a"
        },
        "user": {
            "userId": "amzn1.ask.account.AEHB6UB7SDQU6TCKZOEADQ2ICGLSXETSXC6LOJSRXWAPGWLBBXQIKKH2GTFRLO6NIKLCXIRJBQLXAT45OCKP4UHMPSCM33M5ZE4M4EE5MARUBLF7BNTL6WWAIWKOL3WMYCWT7SCOKQHROFD3VEJTPN3JFCLWQ46ZRY6UGSENVLPFIHPQGQZNV3T6UQ4TEXGFNMHX6PCLTHZUS5I"
        }
    },
    "context": {
        "AudioPlayer": {
            "playerActivity": "IDLE"
        },
        "System": {
            "application": {
                "applicationId": "amzn1.ask.skill.180e6d66-06c5-412c-8fe0-90f2fcc31a3a"
            },
            "user": {
                "userId": "amzn1.ask.account.AEHB6UB7SDQU6TCKZOEADQ2ICGLSXETSXC6LOJSRXWAPGWLBBXQIKKH2GTFRLO6NIKLCXIRJBQLXAT45OCKP4UHMPSCM33M5ZE4M4EE5MARUBLF7BNTL6WWAIWKOL3WMYCWT7SCOKQHROFD3VEJTPN3JFCLWQ46ZRY6UGSENVLPFIHPQGQZNV3T6UQ4TEXGFNMHX6PCLTHZUS5I"
            },
            "device": {
                "deviceId": "amzn1.ask.device.AFYZEJWCDICBPMGAGXM2TNFW4MMZCWWGVFATSXL6ARKMXBENBTS5U2M2PAQJRTBQB2OR2X5HHCM4A7CWIWNOCFIP4LF2LXH6F5OND5425SXYUONA6NTJ67LM2Z27OOAAJ4WXW4COPWZXNP7KMK2YIHDOMUSQ",
                "supportedInterfaces": {
                    "AudioPlayer": {}
                }
            },
            "apiEndpoint": "https://api.eu.amazonalexa.com",
            "apiAccessToken": "Redacted by me"
        }
    },
    "request": {
        "type": "LaunchRequest",
        "requestId": "amzn1.echo-api.request.c17bb90f-8c8d-4b4c-ab1f-0462ab5f2c05",
        "timestamp": "2018-09-06T06:29:14Z",
        "locale": "en-US",
        "shouldLinkResultBeReturned": false
    }
}

JSON输出

{
    "body": {
        "version": "1.0",
        "response": {
            "outputSpeech": {
                "type": "SSML",
                "ssml": "<speak>Hi, welcome to Bucharest Insight, how are you ? you can ask me questions about the local news or ask me for a recommendation</speak>"
            }
        },
        "sessionAttributes": {},
        "userAgent": "ask-node/2.0.5 Node/v8.10.0"
    }
}

Event.TextMessage

{
    "event": {
        "header": {
            "namespace": "Text",
            "name": "TextMessage",
            "messageId": "messageId",
            "dialogRequestId": "6ecb05d5-905f-4c9f-aae0-bbeb028062db"
        },
        "payload": {
            "textMessage": "i need a plumber"
        }
    },
    "context": [
        {
            "header": {
                "namespace": "SpeechSynthesizer",
                "name": "SpeechState"
            },
            "payload": {
                "token": "amzn1.as-ct.v1.ThirdPartySdkSpeechlet#ACRI#ValidatedSpeakDirective_amzn1.ask.skill.180e6d66-06c5-412c-8fe0-90f2fcc31a3a_0b040a2a-a5bc-4d43-9452-95c49c3cca1c",
                "offsetInMilliseconds": 1000,
                "playerActivity": "FINISHED"
            }
        },
        {
            "header": {
                "namespace": "AudioPlayer",
                "name": "PlaybackState"
            },
            "payload": {
                "token": "",
                "offsetInMilliseconds": 0,
                "playerActivity": "IDLE"
            }
        },
        {
            "header": {
                "namespace": "Alerts",
                "name": "AlertsState"
            },
            "payload": {
                "activeAlerts": [],
                "allAlerts": []
            }
        },
        {
            "header": {
                "namespace": "VisualFocusManager",
                "name": "VisualFocusState"
            },
            "payload": {
                "inFocus": {
                    "component": "ListRenderer",
                    "idleTimeInMilliseconds": 0
                }
            }
        },
        {
            "header": {
                "namespace": "AudioFocusManager",
                "name": "AudioFocusState"
            },
            "payload": {
                "alert": {
                    "component": null,
                    "idleTimeInMilliseconds": 0
                },
                "dialog": {
                    "component": "SpeechSynthesizer",
                    "idleTimeInMilliseconds": 1000
                },
                "content": {
                    "component": null,
                    "idleTimeInMilliseconds": 0
                }
            }
        },
        {
            "header": {
                "namespace": "ListRenderer",
                "name": "RenderedListState"
            },
            "payload": {
                "listToken": "amzn1.as-lt.v1.ThirdPartySdkSpeechlet#LRID#amzn1.ask.skill.180e6d66-06c5-412c-8fe0-90f2fcc31a3a::Latuc",
                "itemsVisibleOnScreen": [],
                "selectedItems": [],
                "focusedItem": {},
                "renderedItemDetail": {
                    "listItemIdentifier": "amzn1.as-lt.v1.ThirdPartySdkSpeechlet#LRID#amzn1.ask.skill.180e6d66-06c5-412c-8fe0-90f2fcc31a3a::Latuc",
                    "ordinalNumber": 1
                },
                "highestOrdinalSeen": 1,
                "lastItemOrdinal": 1
            }
        }
    ]
}

指令:SpeechSynthesizer.Speak

    {
        "header": {
            "namespace": "SpeechSynthesizer",
            "name": "Speak",
            "messageId": "aa79a5f3-9293-4f49-9fda-22abeaedbe03",
            "dialogRequestId": "6ecb05d5-905f-4c9f-aae0-bbeb028062db"
        },
        "payload": {
            "caption": "Here are a few top-rated ones",
            "url": "https://kopytko-eu-west-1.amazon.com/3/72c80478-b19e-11e8-aeb5-15393a31d62e-9eedcf/5/1536301872334/10f6885702786ce70473a6560e8b09fdc9a5d548d7c5f6072eaf3a18c498fce1/resource.mp3",
            "format": "AUDIO_MPEG",
            "token": "amzn1.as-ct.v1.DOMAIN:POI#ACRI#DeeAppPOISpeechlet",
            "ssml": "<speak><prosody volume=\"x-loud\">Here are a few top-rated ones</prosody><metadata><promptMetadata><promptId>POICategory#Knight#MultipleResults</promptId><namespace>POI</namespace><locale>en_US</locale><overrideId>default</overrideId><variant>1</variant><condition/><weight>1</weight><stageVersion>Adm-20180810_234837-1</stageVersion></promptMetadata></metadata></speak>"
        }
    }

Directive.ListRenderer.RenderList

{
"header": {
    "namespace": "ListRenderer",
    "name": "RenderList",
    "messageId": "d79a03bb-b1cf-4722-a24a-a982f2b89da7",
    "dialogRequestId": "6ecb05d5-905f-4c9f-aae0-bbeb028062db"
},
"payload": {
    "name": "renderList",
    "namespace": "ListRenderer",
    "listToken": "amzn1.as-lt.v1.DOMAIN:POI#LRID#a1be83a5-35d9-41c9-94c1-066e7152fc45",
    "totalNumberOfItems": 4,
    "listPage": {
        "listItems": [

.....(这里显示的时间太长)

指令:ListRenderer.ReadListItems

{
    "header": {
        "namespace": "ListRenderer",
        "name": "ReadListItems",
        "messageId": "57b1df77-1175-42bd-99a1-86ded50e7525",
        "dialogRequestId": "6ecb05d5-905f-4c9f-aae0-bbeb028062db"
    },
    "payload": {
        "listToken": "amzn1.as-lt.v1.DOMAIN:POI#LRID#a1be83a5-35d9-41c9-94c1-066e7152fc45",
        "beginOrdinal": 1,
        "count": 4
    }
}

指令:SpeechRecognizer.RequestProcessingCompleted

{
    "header": {
        "namespace": "SpeechRecognizer",
        "name": "RequestProcessingCompleted",
        "messageId": "59a2194d-f04f-43f4-9269-8bbe0c3c3809",
        "dialogRequestId": "6ecb05d5-905f-4c9f-aae0-bbeb028062db"
    },
    "payload": {}
}
alexa alexa-skills-kit alexa-skill
1个回答
2
投票

您的第一个回复没有shouldEndSession参数。如果未提供,则默认为true。这意味着,一旦您的回复被阅读,Alexa将结束会话并关闭技能。你已不在技能范围内了。每当您希望Alexa等待用户响应时,通过将shouldEndSession参数设置为false来保持会话处于活动状态。

你的第一个回应应该是这样的:

{
    "body": {
        "version": "1.0",
        "response": {
            "outputSpeech": {
                "type": "SSML",
                "ssml": "<speak>Hi, welcome to Bucharest Insight, how are you ? you can ask me questions about the local news or ask me for a recommendation</speak>"
            },
           "shouldEndSession": false
        },
        "sessionAttributes": {},
        "userAgent": "ask-node/2.0.5 Node/v8.10.0"
    }
}

好处是,您不必手动设置此参数,SDK将负责处理。为此使用了一个责备。在您的回复中包含重新提示是一个很好的设计。

 return responseBuilder
      .speak(speechText)
      .reprompt(repromptSpeechOutput)
      .getResponse();

如果你不想使用reprompt,你可以使用withShouldEndSession(false)

阅读this答案了解更多。

© www.soinside.com 2019 - 2024. All rights reserved.