Using dialogflow with rasa core

Hey !

Does anyone know if we can use dialogflow for the nlu part and rasa core for dialogflow management? I do understand that you need to subclass Interpreter and implement your own logic but it seems that the documentation to do that is missing from the latest docs

Hey @wassimseif ! good question.

The Interpreter subclass should have a parse method which takes the user message is input and outputs the intent and entities.

To use dialogflow, you’ll want to use the requests library to call the dialogflow API, specifically the query endpoint