I have created my custom keras policy to train the model and predict the system action. I have created vector transformation of inputs and outputs. Then I map the outputs conditioned on that input. After training the model, I predict the output given states information of inputs.
Rasa uses probabilities of an action for every policies in order to execute an action (rasa/processor.py at master · RasaHQ/rasa · GitHub). I want to send the predicted actions from my custom function to the rasa chat server.
Is there any option to do this in Rasa? Could I get help to solve my problem?