I am looking to integrate LUIS in my bot and one of the elements I need is a number, so naturally I wanted to use the builtin.number
entity.
I quickly discovered that while the entity is recognized, the output it provides is still a string value that I need to parse in order to get my number out of it. This might work well for "12", "5", "10", but it stops working when I get "four", or "twenty eight".
Is there something I'm missing here? Or is this the expected behavior and I should either not support written numbers or implement my own parsing methods?