Switch for formal or informal language

Hello

i am implementing a german bot and it should be able to communicate both with the formal “Sie” and with the informal “du”. Like the user states at the beginning if the conversation should happen with du or Sie.

My current solution is to write the same story twice, once for each mode. Is there some better way to do it? Something like

*Hello

  • utter_hi
  • utter_how_would_you_like_to_be_adressed

*du/Sie → set slot salutation

  • utter_how_are_you_{salutation}

with the two utterances:

  • how_are_you_sie: Wie geht es Ihnen?
  • how_are_you_du: Wie geht es dir?

I know that this is a relatively simple example that could be solved with: - how_are_you: Wie geht es {salutation}, but unfortunately the sentence structure/grammar is different for formal and informal :frowning:

You could replace the utter actions with custom actions, and use the salutation slot to select the response.

That should work. Thank you :smiley: