rasa_core.exceptions.UnsupportedDialogueModelError:

Hello, I just want to fix this error…

for my dialog_model.py , I just speficy the policy route like this

policies = policy_config.load(“policies.yml”)

def train_dialogue(domain_file = ‘./config/domain.yml’, model_path = ‘./models/dialogue’, training_data_file = ‘./data/stories.md’): # fallback = FallbackPolicy(fallback_action_name=“utter_unclear”,core_threshold=0.2, nlu_threshold=0.7) agent = Agent(domain_file , policies=policies)

but now I just stuck on this error

model_version) rasa_core.exceptions.UnsupportedDialogueModelError: The model version is to old to be loaded by this Rasa Core instance. Either retrain the model, or run withan older version. Model version: 0.11.6 Instance version: 0.14.4 Minimal compatible version: 0.14.0a3

please somebody help me.

thank you

Your Rasa version (0.14.4) is too new for your model (0.11.6) to be loaded in it. You have to either retrain your model or switch to an older version of Rasa. The error message says it all.