Getting a INFO warning when running training and shell;
rasa.core.policies.ensemble - MappingPolicy not included in policy ensemble.
Default intents 'restart and back will not trigger actions 'action_restart' and 'action_back'.
Any ideas about why the MappingPolicy is not registered for the rasa.core.policies.ensemble ?
Annoying not being able to restart a conversation within the shell.
Hm, that’s strange, we’ll look into it. However i’d stick to the most recent published version (1.2.7) and not the alpha release, as they can be touchy.
Do you get the same issue is you run 1.2.7 in docker?
An example would be really helpful in case of form actions.
Like if the form action is activated and requested slot is “XYZ” but user asked for the time that is mapped to an action ‘action_get_time’ after performing the action and event UtteranceReverted(), how can a bot re-ask the user for the ‘XYZ’ slot?
Mhm so if you add the intent that maps to the action to the not_intent of the slot mappings, it should let the other policies (e.g. mapping) handle the input. then on the next turn the form policy will jump back in again.
ok i get your comment, but the problem is still there, when the form policy jumps back again, it simply goes into to the action_listen but i want to prompt the user for the slot that he had missed out previously by asking the bot for another intent that was mapped to some other action.