I am beginner in RASA. I want to extract the product name as entity from a statement like "Add X to cart", "Select X" or "Put X in cart". My bot is identifying the intent correctly but is unable to extract the entity. It is only able to pick entities very close to what I put in examples. What I want is to detect anything that is put in the statement as an entity. How can I do this?
I tried regex example like [A-Za-z0-9]+ but it didn't work.