Hello there, I am using Rasa 3.0 and I have a problem with the lookup table since the bot isn’t detecting samples from the lookup table for example I defined in my nlu.yml file lookup table shoes
- lookup: shoes
examples: |
- Adidas
- Puma
- Nike
and the intent
- intent: inform_item
examples: |
- I have a [Puma](shoes) sneakers
- I like [Adidas](shoes)
The problem is that the bot is detecting Puma and Adidas but when I provide the Nike example which is defined only in the lookup table it is not being able to detect it!! Also, I have in my pipeline RegexFeaturizer and RegexEntityExtractor.