Multiple yes/no questions in a form

slots:
  can_send_sms:
    type: bool
    mappings:
      - type: from_intent
        value: true
        intent: affirm
        - conditions:
           - active_loop: my_form
             requested_slot: can_send_sms
      - type: from_intent
        value: false
        intent: deny
        - conditions:
           - active_loop: my_form
             requested_slot: can_send_sms

  can_send_email:
    type: bool
    mappings:
      - type: from_intent
        value: true
        intent: affirm
        - conditions:
           - active_loop: my_form
             requested_slot: can_send_email
      - type: from_intent
        value: false
        intent: deny
        - conditions:
           - active_loop: my_form
             requested_slot: can_send_email

2 Likes