I used builtin.number in my LUIS app trying to collect a 4 digit pin number. The following is what's returned from LUIS when my input is "one two three four".
"entities": [ { "entity": "one", "type": "builtin.number", "startIndex": 0, "endIndex": 2, "resolution": { "value": "1" } }, { "entity": "two", "type": "builtin.number", "startIndex": 4, "endIndex": 6, "resolution": { "value": "2" } }, { "entity": "three", "type": "builtin.number", "startIndex": 8, "endIndex": 12, "resolution": { "value": "3" } }, { "entity": "four", "type": "builtin.number", "startIndex": 14, "endIndex": 17, "resolution": { "value": "4" } },
As you can see, it's returning individual digits in both text and digit format. Seems to me that it's more important to return the whole digit than the individual ones. Is there a way to do it so that I get '1234' as result for builtin.number?
Thanks!