How to trigger a form based on a response

here is the flow action/form 1 output → continue?(that is based on form 1 output)

  • yes → form 2

Try a rule something like this. I’m going assume you set a featurized slot called next_form_name to form_2 when the user says “Yes”.

- rule: Deactivate current_form and activate form_2 when 'yes'
  condition:
  - active_loop: current_form
  - slot_was_set:
    - next_form_name: form_2
  steps:
  - action: current_form
  - active_loop: null
  - slot_was_set:
    - requested_slot: null
  - action: form_2