Load Model

Hi, I need some help loading the core model.

Earlier we were using some custom python script to load model to the rasa server, and we were maintaining a global dictionary to store the class object so that we don’t have to load the model on run-time. But now there is a problem, we have shifted our architecture from docker to Kubernetes, and due to this when the pod is upscale the global dictionary is set to empty and no model is detected.

Is there any way to store the rasa.core.agent object in some anyway or any other method to mitigate the problem. !

Hi @shivam

Please refer to this How to link NLU and domain files which is stored in DB with rasa agent - #20 by anoopshrma

I think this can help you in your case

Okay, Thanks for reverting. @anoopshrma Let me check, If this could help me solve my use case.