With the sample utterance:
SetNumber {amount}
and amount defined as
"intent": "SetNumber", "slots": [ { "name": "amount", "type": "AMAZON.NUMBER" } ]
I see the following slot values for the given input:
- "three thousand" -> 3000 (correct)
- "three million" -> ?
- "three hundred thousand" -> 300000 (correct)
- "three hundred fifty thousand" -> ?
Outside of the skill all of these numbers work ("alexa, what is three million times ten", etc), how am I supposed to define the slot or sample utterances so this works?