Help, from_text slot not filled

Intent is recognised but the slots are not filled and the form keeps on looping over the first slot.

forms:
  executive_summary_form:
    required_slots:
      - purpose
      - products
      - customers
      - uniqueness 
      - goals

slots:
  purpose:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      conditions: 
        - active_loop: executive_summary_form§
          requested_slot: purpose
  products:
    type: text
    mappings:
    - type: from_text
      conditions: 
        - active_loop: executive_summary_form
          requested_slot: products
  customers:
    type: text
    mappings:
    - type: from_text
      conditions: 
        - active_loop: executive_summary_form
          requested_slot: customers
  uniqueness:
    type: text
    mappings:
    - type: from_text
      conditions: 
        - active_loop: executive_summary_form
          requested_slot: uniqueness
  goals:
    type: text
    mappings:
    - type: from_text
      conditions: 
        - active_loop: executive_summary_form
          requested_slot: goals

rules:
 - rule: activate executive summary form
   steps:
   - intent: create_executive_summary
   - action: executive_summary_form
   - active_loop: executive_summary_form

 - rule: submit executive summary form
   condition:
   - active_loop: executive_summary_form
   steps:
   - action: executive_summary_form
   - active_loop: null
   - action: action_generate_executive_summary
   - action: utter_executive_summary
 

Hi @syker-uk, I have a question, in your purpose slot as mentioned here in active loop I see a typo there seem you added a special character at the end, you can remove that special character and check if it is running.

  purpose:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      conditions: 
        - active_loop: executive_summary_form§

and if is does not help then you can try removing all individual requested_slots and mention it in your subimt rule like below mentioned.

- rule: submit executive summary form
  condition:
  - active_loop: executive_summary_form
  steps:
  - action: executive_summary_form
  - active_loop: null
  - slot_was_set:
    - requested_slot: null
  - action: action_generate_executive_summary
  - action: utter_executive_summary

Hope this helps.