I have a Google Home app that uses the Actions on Google client Javascript library:
https://github.com/actions-on-google/actions-on-google-nodejs
The speech recognition is extremely good. But sometimes I run into a recognition context that it has a little trouble with. Is there any way to to tell the speech recognition facility to emphasize the probability of certain phrases of words on a per user interaction basis? For example, if the user is being asked for a date, to have the probability of the months of the year be boosted over normal?
In some speech recognition engines you can provide vocabulary lists (aka grammars, etc.) to the engine. Is there a way to do this with an Actions on Google app?
I am aware of Google's Speech Recognition API:
But I don't know if that API is exposed or available through the Actions on Google service, or if that API supports grammars or context lists.