I am trying to migrate from Rasa 2.2 to 3.0. In the existing version of my code, I have a custom component where I filter out some extracted entities. As mentioned here, we have to register a custom graph component, but I am not sure which ComponentType
would fit my case since it’s a postprocessing component on extracted entities and not really an EntityExtractor
. Thanks in advance.
Hi @sktdt
Does your custom component need to train?
No, training is not needed. I figured out I can implement my module with EntityExtractor
.