Is it possible to define different utter_ask_X in Forms for different use cases?

hey

I am using a form and have defined responses using utter_ask_slot1 for each of the required slots. However, I want utter_ask_slot1 to be a different text in case slot_test: true. Basically I want to personalize the slot filling utterances for different situations. How can I do this? Using actions.py? How? I am using

class ValidateNameForm(FormValidationAction):

but it does not allow to define different utter_ask…

Yes, you can create a custom action_ask.. method as shown here.