Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. version: "3.1"
  2. intents:
  3. - greet
  4. - goodbye
  5. - affirm
  6. - deny
  7. - mood_great
  8. - mood_unhappy
  9. - bot_challenge
  10. - request_names
  11. entities:
  12. - first_name
  13. - last_name
  14. - phone_num
  15. - email_id
  16. slots:
  17. first_name:
  18. type: text
  19. influence_conversation: true
  20. mappings:
  21. - type: from_text
  22. conditions:
  23. - active_loop: name_form
  24. requested_slot: first_name
  25. last_name:
  26. type: text
  27. influence_conversation: true
  28. mappings:
  29. - type: from_text
  30. conditions:
  31. - active_loop: name_form
  32. requested_slot: last_name
  33. phone_num:
  34. type: text
  35. influence_conversation: true
  36. mappings:
  37. - type: from_text
  38. conditions:
  39. - active_loop: name_form
  40. requested_slot: phone_num
  41. email_id:
  42. type: text
  43. influence_conversation: true
  44. mappings:
  45. - type: from_text
  46. conditions:
  47. - active_loop: name_form
  48. requested_slot: email_id
  49. forms:
  50. name_form:
  51. required_slots:
  52. - first_name
  53. - last_name
  54. - phone_num
  55. - email_id
  56. responses:
  57. utter_greet:
  58. - text: "Hey! How are you?"
  59. utter_cheer_up:
  60. - text: "Here is something to cheer you up:"
  61. image: "https://i.imgur.com/nGF1K8f.jpg"
  62. utter_did_that_help:
  63. - text: "Did that help you?"
  64. utter_happy:
  65. - text: "Great, carry on!"
  66. utter_goodbye:
  67. - text: "Bye"
  68. utter_iamabot:
  69. - text: "I am a bot, powered by Rasa."
  70. utter_ask_first_name:
  71. - text: "What is your first name?"
  72. utter_ask_last_name:
  73. - text: "What is your last name?"
  74. utter_ask_phone_num:
  75. - text: "What is your phone number?"
  76. utter_ask_email_id:
  77. - text: "What is your email id?"
  78. utter_submit:
  79. - text: Ok. Thanks!
  80. utter_slots_values:
  81. - text: I will remember that your name is {first_name} {last_name} number {phone_num} and id is {email_id}!
  82. actions:
  83. - utter_slots_values
  84. - utter_submit
  85. - get_slot_data
  86. - slots_to_clear
  87. session_config:
  88. session_expiration_time: 60
  89. carry_over_slots_to_new_session: true