Hi folks,
I tried to migrate to Rasa 3.0.1 and I noticed that in the slot validation in forms dispatcher messages will not be diplayed if the validation returned None for the validated slot. The Bot shows the utter_ask_-message for my slot but do not show my custom message.
example.
def validate_slot_name(......) -> Dict[Text, Any]:
.....
dispatcher.utter_message('This message will not be displayed')
return {'slot_name': None}
Does anyone have the same problem or maybe an explanation or solution.
Thanks