If my own NLU service can provide NLU structure like the following:
{
"intent": "search_restaurant",
"entities": {
"cuisine" : "Mexican",
"location" : "center"
}
}
And I only want to use Rasa-core with the output as above without Rasa-NLU. In such a case, I won’t have nlu_config, and I don’t need to train any NLU at all (done externally). Can you please give some ideas on how to go about this in Rasa-core?