暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rules.yml 619B

123456789101112131415161718192021222324252627282930313233
  1. version: "3.1"
  2. rules:
  3. - rule: Say goodbye anytime the user says goodbye
  4. steps:
  5. - intent: goodbye
  6. - action: utter_goodbye
  7. - rule: Say 'I am a bot' anytime the user challenges
  8. steps:
  9. - intent: bot_challenge
  10. - action: utter_iamabot
  11. - rule: Activate form
  12. steps:
  13. - intent: request_names
  14. - action: name_form
  15. - active_loop: name_form
  16. - rule: Submit form
  17. condition:
  18. - active_loop: name_form
  19. steps:
  20. - action: name_form
  21. - active_loop: null
  22. - slot_was_set:
  23. - requested_slot: null
  24. - action: utter_submit
  25. - action: utter_slots_values
  26. - action: get_slot_data
  27. - action: slots_to_clear