Hi,
I am trying to get a utterance to work. I only configured one utterance "frage mein dienst nach dem ergebnis von {Slot}"
Unfortunatly it will not work in Alexa Simulator. If I only say or type "mein dienst" (yeah, I got a better name for it later *g*) it works and fires to AWS Lambda fuction. If I say or type "frage mein dienst nach dem ergebnis von berlin" nothing happens. Alexa Simulator does not recognize the service and does not fire lambda function.
What am I doing wrong? As you guess I use german language.
Here ist the JSON:
{ "interactionModel": { "languageModel": { "invocationName": "mein service", "intents": [ { "name": "AMAZON.CancelIntent", "samples": [] }, { "name": "AMAZON.HelpIntent", "samples": [] }, { "name": "AMAZON.StopIntent", "samples": [] }, { "name": "GetResultIntent", "slots": [ { "name": "Team", "type": "AMAZON.SearchQuery" } ], "samples": [ "frag mein service nach dem spielstand von {Team}" ] } ], "types": [] } } }