I'm having an issue implementing dynamic entities in my skill. When I load the dynamic entities in my response, I can see the dynamic entities being loaded in the JSON response object, but it works sometimes but not all the time.
For example, I have an intent called "ResponseIntent" with an utterance of "tell me about {tag}" and that entity is called LIST_OF_TAGS. I load the dynamic entity with a value of "Mount Rainier" (which I can see it being loaded in the JSON response). However, when I say "tell me about Mount Rainier" it sometimes correctly goes to the ResponseIntent with the dynamic entity being matched in the JSON request, but other times, it will go to the AMAZON.FallbackIntent. In fact, I find that it goes to the AMAZON.FallbackIntent more times than it goes to the ResponseIntent.
Also, if I add Mount Rainier as a static entity, it works 100% of the time.
Any help would be appreciated. Thanks.