Hello,
Through the skills feedback I got to know that my skill does not properly handle this kind of utterance:
"Alexa, reheat the pizza in the oven ". It's curious because "reheat" is a cookingMode supported by my skill. As you can see from my skill Discovery Response:
{ "header": { "namespace": "Alexa.Discovery", "name": "Discover.Response", "payloadVersion": "3", "messageId": "7ae6abd7-3a80-44f2-b425-7a21e4b88a5e" }, "payload": { "endpoints": [{ "endpointId": "uniqueIdOfApplianceEndpoint", "manufacturerName": "Haier", "friendlyName": "oven", "description": "Oven Collection One models", "displayCategories": ["MICROWAVE"], "cookie": {}, "capabilities": [{ "type": "AlexaInterface", "interface": "Alexa", "version": "3" }, { "type": "AlexaInterface", "interface": "Alexa.Cooking", "version": "3", "properties": { "supported": [{ "name": "cookingMode" }, { "name": "cookCompletionTime" }, { "name": "isCookCompletionTimeEstimated" }, { "name": "cookStartTime" }, { "name": "foodItem" }], "proactivelyReported": true, "retrievable": true }, "configuration": { "supportsRemoteStart": false, "supportedCookingModes": ["OFF", "DEFROST", "REHEAT", "PRESET", "TIMECOOK"] } }] }] } }
So when I try this frase "Alexa, reheat the pizza in my oven" I get this answer from the skill: "Sorry, I couldn’t find anything to do that?_ To get started, you’ll need a smart kitchen appliance."
And through the CloudWatch console a can see that my skill is not being called when I use the utterance to activate the "reheat" mode.
Could any can spread some light on this? Thank you in advance!!!!