Retrieving intent name when using faq/chitchat

Hello team!. I’m trying to use Rasa only for intent classification. I’ve enabled faq and chitchat through the tutorial here (using Response Selector and everything) and it works well.

However, when I call the parse method in order to classify a given text provided by the user, I cannot get the exact intent that was triggered by the message. I just get faq or chitchat.

The only way I could manage to get it is inspecting the ResponseSelector object, which I wouldn’t like to do. Is there a way for Rasa to return the whole intent instead of just faq or chitchat.

Here’s an example showing this:

For this example, I would expect Rasa to return as the intent name: “faq_maternity_paternity_policy” than just “faq”.

Regards.