Testing Rasa Core without a NLU component

Is there a way I can directly send in the probabilities of intents and entity list in :

interpreter.parse() format: {‘intent’: {‘name’: ‘intent_name’, ‘confidence’: 1},‘entities’: [],‘text’: ‘testing core’}

I tried rewriting the NLU parse function to send the above output, but the core isn’t executing as required.

What do you want to accomplish? You could create a custom NLU server which can process the Rasa Core requests to /parse and specify it in the endpoint configuration.