I have a very large list of store product item names. I’m migrating from Dialogflow where I created a large @item entity where each entry is a single term. E.g.:
chicken
turkey
pasta
fettuccine
...
I have over 20,000 terms presently. I’m trying to build up a query to look up items in our database from the conversation, so when a user says: “I’m looking for a large blue sweater”, the NLU extracts terms [large, blue, sweater] which is applied to the query.
This fine-grained term entity approach seems reasonable and has worked well for us so far, but I’m wondering if Rasa can pick up generic text as an entity that is reliable.
Or if we’d like to capture a special note for an order, e.g.
_Please note that I'd like this it be gift wrapped_
Can Rasa pick up the “I’d like this it be gift wrapped” text?
Thanks.