Hi, I wanted to ask if there is a reason for alphabetical order of slots used by forms (defined in domain file) when using RASA X?
I have something like this in my domain file:
personal_data_form:
name_and_surname:
- entity: persName
type: from_entity
date_of_birth:
- entity: time
type: from_entity
When I start RASA X on my server, it edits my domain file and introduce an alphabetical order to my slots. Like this:
personal_data_form:
date_of_birth:
- entity: time
type: from_entity
name_and_surname:
- entity: persName
type: from_entity
Is that a desired behavior? I want my form to ask for name first (and then for date of birth). Rasa shell works just fine, but RASA X breaks the order of my slots and the dialog is incoherent.
Thanks in advance for response/advice.