rasa-pro 3.13.1a18__py3-none-any.whl → 3.13.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rasa-pro might be problematic. Click here for more details.

Files changed (259) hide show
  1. rasa/cli/scaffold.py +3 -22
  2. rasa/core/actions/action.py +3 -5
  3. rasa/core/channels/studio_chat.py +10 -34
  4. rasa/core/channels/voice_stream/asr/asr_engine.py +5 -1
  5. rasa/core/channels/voice_stream/asr/deepgram.py +5 -0
  6. rasa/core/channels/voice_stream/audiocodes.py +9 -4
  7. rasa/core/channels/voice_stream/jambonz.py +1 -1
  8. rasa/core/channels/voice_stream/voice_channel.py +7 -0
  9. rasa/core/policies/enterprise_search_policy.py +9 -8
  10. rasa/core/policies/flows/flow_executor.py +1 -8
  11. rasa/dialogue_understanding/commands/correct_slots_command.py +0 -10
  12. rasa/dialogue_understanding/generator/command_generator.py +5 -5
  13. rasa/dialogue_understanding/generator/flow_retrieval.py +9 -10
  14. rasa/dialogue_understanding/processor/command_processor.py +6 -1
  15. rasa/model_manager/model_api.py +3 -2
  16. rasa/model_manager/runner_service.py +1 -1
  17. rasa/model_manager/trainer_service.py +9 -12
  18. rasa/model_manager/utils.py +29 -1
  19. rasa/shared/core/domain.py +15 -62
  20. rasa/shared/core/flows/flow_step.py +1 -7
  21. rasa/shared/core/flows/yaml_flows_io.py +8 -16
  22. rasa/shared/core/slots.py +0 -4
  23. rasa/shared/importers/importer.py +0 -6
  24. rasa/shared/importers/utils.py +1 -77
  25. rasa/studio/upload.py +45 -10
  26. rasa/telemetry.py +1 -2
  27. rasa/utils/io.py +9 -27
  28. rasa/utils/json_utils.py +1 -6
  29. rasa/utils/log_utils.py +1 -5
  30. rasa/utils/plotting.py +1 -1
  31. rasa/validator.py +3 -7
  32. rasa/version.py +1 -1
  33. {rasa_pro-3.13.1a18.dist-info → rasa_pro-3.13.2.dist-info}/METADATA +8 -9
  34. {rasa_pro-3.13.1a18.dist-info → rasa_pro-3.13.2.dist-info}/RECORD +37 -259
  35. rasa/builder/README.md +0 -120
  36. rasa/builder/__init__.py +0 -0
  37. rasa/builder/config.py +0 -79
  38. rasa/builder/create_openai_vector_store.py +0 -228
  39. rasa/builder/exceptions.py +0 -55
  40. rasa/builder/inkeep-rag-response-schema.json +0 -64
  41. rasa/builder/inkeep_document_retrieval.py +0 -212
  42. rasa/builder/llm-helper-schema.json +0 -69
  43. rasa/builder/llm_context.py +0 -81
  44. rasa/builder/llm_helper_prompt.jinja2 +0 -245
  45. rasa/builder/llm_service.py +0 -317
  46. rasa/builder/logging_utils.py +0 -51
  47. rasa/builder/main.py +0 -147
  48. rasa/builder/models.py +0 -225
  49. rasa/builder/project_generator.py +0 -282
  50. rasa/builder/scrape_rasa_docs.py +0 -97
  51. rasa/builder/service.py +0 -742
  52. rasa/builder/skill_to_bot_prompt.jinja2 +0 -164
  53. rasa/builder/training_service.py +0 -132
  54. rasa/builder/validation_service.py +0 -93
  55. rasa/cli/project_templates/finance/actions/__init__.py +0 -0
  56. rasa/cli/project_templates/finance/actions/action_add_payee.py +0 -47
  57. rasa/cli/project_templates/finance/actions/action_ask_account.py +0 -50
  58. rasa/cli/project_templates/finance/actions/action_ask_account_from.py +0 -50
  59. rasa/cli/project_templates/finance/actions/action_ask_card.py +0 -47
  60. rasa/cli/project_templates/finance/actions/action_check_balance.py +0 -40
  61. rasa/cli/project_templates/finance/actions/action_check_card_existence.py +0 -35
  62. rasa/cli/project_templates/finance/actions/action_check_payee_existence.py +0 -40
  63. rasa/cli/project_templates/finance/actions/action_check_sufficient_funds.py +0 -41
  64. rasa/cli/project_templates/finance/actions/action_list_payees.py +0 -45
  65. rasa/cli/project_templates/finance/actions/action_process_immediate_payment.py +0 -18
  66. rasa/cli/project_templates/finance/actions/action_remove_payee.py +0 -49
  67. rasa/cli/project_templates/finance/actions/action_schedule_payment.py +0 -19
  68. rasa/cli/project_templates/finance/actions/action_session_start.py +0 -69
  69. rasa/cli/project_templates/finance/actions/action_update_card_status.py +0 -45
  70. rasa/cli/project_templates/finance/actions/action_validate_payment_date.py +0 -36
  71. rasa/cli/project_templates/finance/actions/database.py +0 -276
  72. rasa/cli/project_templates/finance/config.yml +0 -32
  73. rasa/cli/project_templates/finance/credentials.yml +0 -33
  74. rasa/cli/project_templates/finance/csvs/accounts.csv +0 -8
  75. rasa/cli/project_templates/finance/csvs/advisors.csv +0 -7
  76. rasa/cli/project_templates/finance/csvs/appointments.csv +0 -211
  77. rasa/cli/project_templates/finance/csvs/branches.csv +0 -10
  78. rasa/cli/project_templates/finance/csvs/cards.csv +0 -11
  79. rasa/cli/project_templates/finance/csvs/payees.csv +0 -10
  80. rasa/cli/project_templates/finance/csvs/transactions.csv +0 -71
  81. rasa/cli/project_templates/finance/csvs/users.csv +0 -4
  82. rasa/cli/project_templates/finance/data/flows/add_payee.yml +0 -29
  83. rasa/cli/project_templates/finance/data/flows/block_card.yml +0 -66
  84. rasa/cli/project_templates/finance/data/flows/check_balance.yml +0 -9
  85. rasa/cli/project_templates/finance/data/flows/list_payees.yml +0 -5
  86. rasa/cli/project_templates/finance/data/flows/remove_payee.yml +0 -21
  87. rasa/cli/project_templates/finance/data/flows/select_card.yml +0 -12
  88. rasa/cli/project_templates/finance/data/flows/transfer_money.yml +0 -67
  89. rasa/cli/project_templates/finance/data/flows/welcome.yml +0 -14
  90. rasa/cli/project_templates/finance/data/nlu.yml +0 -29
  91. rasa/cli/project_templates/finance/data/patterns/pattern_chitchat.yml +0 -7
  92. rasa/cli/project_templates/finance/data/patterns/pattern_completed.yml +0 -6
  93. rasa/cli/project_templates/finance/data/patterns/pattern_search.yml +0 -5
  94. rasa/cli/project_templates/finance/data/patterns/pattern_session_start.yml +0 -9
  95. rasa/cli/project_templates/finance/data/source/accounts.json +0 -51
  96. rasa/cli/project_templates/finance/data/source/advisors.json +0 -44
  97. rasa/cli/project_templates/finance/data/source/appointments.json +0 -1474
  98. rasa/cli/project_templates/finance/data/source/branches.json +0 -47
  99. rasa/cli/project_templates/finance/data/source/cards.json +0 -72
  100. rasa/cli/project_templates/finance/data/source/payees.json +0 -74
  101. rasa/cli/project_templates/finance/data/source/transactions.json +0 -492
  102. rasa/cli/project_templates/finance/data/source/users.json +0 -29
  103. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/consequences_of_blocking_card.txt +0 -8
  104. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/reasons_to_block_card.txt +0 -8
  105. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/recovering_from_card_fraud.txt +0 -8
  106. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/tips_for_card_security.txt +0 -8
  107. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/what_to_do_if_card_is_lost.txt +0 -8
  108. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/account_balance_security.txt +0 -7
  109. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/common_balance_inquiries.txt +0 -8
  110. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/methods_to_check_balance.txt +0 -8
  111. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/understanding_balance_updates.txt +0 -8
  112. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/what_to_do_if_balance_is_incorrect.txt +0 -8
  113. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/benefits_of_authorised_payees.txt +0 -8
  114. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/common_issues_with_payees.txt +0 -8
  115. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/general_payee_information.txt +0 -8
  116. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/payee_management_tips.txt +0 -8
  117. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/understanding_payee_types.txt +0 -8
  118. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/common_transfer_errors.txt +0 -8
  119. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/fees_for_transfers.txt +0 -8
  120. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/general_transfer_information.txt +0 -8
  121. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/security_tips_for_transfers.txt +0 -8
  122. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/transfer_processing_times.txt +0 -8
  123. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part1.txt +0 -50
  124. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part10.txt +0 -50
  125. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part11.txt +0 -48
  126. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part12.txt +0 -50
  127. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part13.txt +0 -50
  128. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part14.txt +0 -47
  129. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part15.txt +0 -50
  130. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part16.txt +0 -50
  131. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part17.txt +0 -47
  132. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part18.txt +0 -50
  133. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part19.txt +0 -50
  134. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part2.txt +0 -50
  135. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part20.txt +0 -47
  136. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part21.txt +0 -50
  137. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part22.txt +0 -50
  138. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part23.txt +0 -47
  139. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part24.txt +0 -50
  140. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part25.txt +0 -50
  141. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part26.txt +0 -47
  142. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part27.txt +0 -50
  143. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part28.txt +0 -50
  144. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part29.txt +0 -47
  145. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part3.txt +0 -47
  146. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part30.txt +0 -50
  147. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part31.txt +0 -50
  148. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part32.txt +0 -47
  149. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part33.txt +0 -50
  150. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part34.txt +0 -50
  151. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part35.txt +0 -47
  152. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part36.txt +0 -50
  153. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part37.txt +0 -50
  154. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part38.txt +0 -47
  155. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part39.txt +0 -50
  156. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part4.txt +0 -50
  157. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part40.txt +0 -50
  158. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part41.txt +0 -47
  159. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part42.txt +0 -50
  160. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part43.txt +0 -50
  161. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part44.txt +0 -47
  162. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part45.txt +0 -50
  163. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part46.txt +0 -50
  164. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part47.txt +0 -47
  165. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part48.txt +0 -50
  166. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part49.txt +0 -50
  167. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part5.txt +0 -50
  168. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part50.txt +0 -47
  169. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part51.txt +0 -50
  170. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part52.txt +0 -50
  171. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part53.txt +0 -47
  172. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part54.txt +0 -50
  173. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part55.txt +0 -50
  174. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part56.txt +0 -47
  175. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part57.txt +0 -50
  176. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part58.txt +0 -50
  177. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part59.txt +0 -47
  178. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part6.txt +0 -47
  179. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part60.txt +0 -50
  180. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part61.txt +0 -50
  181. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part7.txt +0 -50
  182. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part8.txt +0 -50
  183. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part9.txt +0 -47
  184. rasa/cli/project_templates/finance/domain/add_payee.yml +0 -47
  185. rasa/cli/project_templates/finance/domain/block_card.yml +0 -101
  186. rasa/cli/project_templates/finance/domain/check_balance.yml +0 -9
  187. rasa/cli/project_templates/finance/domain/default_actions.yml +0 -16
  188. rasa/cli/project_templates/finance/domain/default_flows.yml +0 -33
  189. rasa/cli/project_templates/finance/domain/list_payees.yml +0 -4
  190. rasa/cli/project_templates/finance/domain/remove_payee.yml +0 -16
  191. rasa/cli/project_templates/finance/domain/select_card.yml +0 -12
  192. rasa/cli/project_templates/finance/domain/transfer_money.yml +0 -79
  193. rasa/cli/project_templates/finance/endpoints.yml +0 -62
  194. rasa/cli/project_templates/finance/prompts/command-generator.jinja2 +0 -57
  195. rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2 +0 -19
  196. rasa/cli/project_templates/finance/tests/conversation_repair/cancellations.yml +0 -12
  197. rasa/cli/project_templates/finance/tests/conversation_repair/cannot_handle.yml +0 -7
  198. rasa/cli/project_templates/finance/tests/conversation_repair/chitchat.yml +0 -7
  199. rasa/cli/project_templates/finance/tests/conversation_repair/clarification.yml +0 -9
  200. rasa/cli/project_templates/finance/tests/conversation_repair/completion.yml +0 -18
  201. rasa/cli/project_templates/finance/tests/conversation_repair/corrections.yml +0 -17
  202. rasa/cli/project_templates/finance/tests/conversation_repair/digressions.yml +0 -32
  203. rasa/cli/project_templates/finance/tests/conversation_repair/human_handoff.yml +0 -21
  204. rasa/cli/project_templates/finance/tests/conversation_repair/skipping_collect_steps.yml +0 -16
  205. rasa/cli/project_templates/finance/tests/demo_scripts/main.yml +0 -16
  206. rasa/cli/project_templates/finance/tests/happy_paths/balance_verification.yml +0 -15
  207. rasa/cli/project_templates/finance/tests/happy_paths/banking_questions.yml +0 -12
  208. rasa/cli/project_templates/finance/tests/happy_paths/card_blocking.yml +0 -52
  209. rasa/cli/project_templates/finance/tests/happy_paths/money_transfer.yml +0 -136
  210. rasa/cli/project_templates/finance/tests/happy_paths/payee_management.yml +0 -27
  211. rasa/cli/project_templates/finance/tests/happy_paths/user_greeted.yml +0 -5
  212. rasa/cli/project_templates/plain/actions/__init__.py +0 -0
  213. rasa/cli/project_templates/plain/config.yml +0 -17
  214. rasa/cli/project_templates/plain/credentials.yml +0 -33
  215. rasa/cli/project_templates/plain/data/patterns/pattern_session_start.yml +0 -7
  216. rasa/cli/project_templates/plain/domain.yml +0 -5
  217. rasa/cli/project_templates/plain/endpoints.yml +0 -58
  218. rasa/cli/project_templates/telco/actions/__init__.py +0 -0
  219. rasa/cli/project_templates/telco/actions/actions_billing.py +0 -197
  220. rasa/cli/project_templates/telco/actions/actions_get_data_from_db.py +0 -43
  221. rasa/cli/project_templates/telco/actions/actions_run_diagnostics.py +0 -23
  222. rasa/cli/project_templates/telco/actions/actions_session_start.py +0 -13
  223. rasa/cli/project_templates/telco/config.yml +0 -25
  224. rasa/cli/project_templates/telco/credentials.yml +0 -33
  225. rasa/cli/project_templates/telco/csvs/billing.csv +0 -10
  226. rasa/cli/project_templates/telco/csvs/customers.csv +0 -5
  227. rasa/cli/project_templates/telco/data/flows/flow_global.yml +0 -5
  228. rasa/cli/project_templates/telco/data/flows/flow_reboot_router.yml +0 -8
  229. rasa/cli/project_templates/telco/data/flows/flow_reset_router.yml +0 -7
  230. rasa/cli/project_templates/telco/data/flows/flow_solve_internet_issue.yml +0 -73
  231. rasa/cli/project_templates/telco/data/flows/flow_undertand_bill.yml +0 -45
  232. rasa/cli/project_templates/telco/data/patterns/pattern_completed.yml +0 -7
  233. rasa/cli/project_templates/telco/data/patterns/pattern_human_handoff.yml +0 -6
  234. rasa/cli/project_templates/telco/data/patterns/pattern_search.yml +0 -7
  235. rasa/cli/project_templates/telco/data/patterns/pattern_session_start.yml +0 -9
  236. rasa/cli/project_templates/telco/docs/reset_vs_rboot_router.txt +0 -1
  237. rasa/cli/project_templates/telco/docs/restart_router.txt +0 -6
  238. rasa/cli/project_templates/telco/docs/run_speed_test.txt +0 -6
  239. rasa/cli/project_templates/telco/domain/domain_global.yml +0 -29
  240. rasa/cli/project_templates/telco/domain/domain_patterns.yml +0 -17
  241. rasa/cli/project_templates/telco/domain/domain_reboot_router.yml +0 -20
  242. rasa/cli/project_templates/telco/domain/domain_reset_router.yml +0 -11
  243. rasa/cli/project_templates/telco/domain/domain_run_speed_test.yml +0 -24
  244. rasa/cli/project_templates/telco/domain/domain_solve_internet_issue.yml +0 -74
  245. rasa/cli/project_templates/telco/domain/domain_undertand_bill.yml +0 -102
  246. rasa/cli/project_templates/telco/endpoints.yml +0 -60
  247. rasa/cli/project_templates/telco/prompts/command-generator.jinja2 +0 -57
  248. rasa/cli/project_templates/telco/tests/e2e_results_failed.yml +0 -62
  249. rasa/cli/project_templates/telco/tests/e2e_results_passed.yml +0 -130
  250. rasa/cli/project_templates/telco/tests/e2e_test_cases/billing_test_cases.yml +0 -68
  251. rasa/cli/project_templates/telco/tests/e2e_test_cases/global_test_cases.yml +0 -13
  252. rasa/cli/project_templates/telco/tests/e2e_test_cases/internet_slow_test_case.yml +0 -47
  253. rasa/cli/project_templates/telco/tests/e2e_test_cases/out_of_scope_test_case.yml +0 -21
  254. rasa/cli/project_templates/telco/tests/e2e_test_cases/patterns_test_cases.yml +0 -15
  255. rasa/shared/importers/static.py +0 -63
  256. rasa/utils/openapi.py +0 -144
  257. {rasa_pro-3.13.1a18.dist-info → rasa_pro-3.13.2.dist-info}/NOTICE +0 -0
  258. {rasa_pro-3.13.1a18.dist-info → rasa_pro-3.13.2.dist-info}/WHEEL +0 -0
  259. {rasa_pro-3.13.1a18.dist-info → rasa_pro-3.13.2.dist-info}/entry_points.txt +0 -0
@@ -1,12 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_simple_cancellation
3
- steps:
4
- - user: "hello"
5
- - utter: utter_chitchat
6
- - user: "who are my payees"
7
- - bot: "You are authorised to transfer money to: Amy, Fitness Gym and William"
8
- - user: "I want to transfer 55 to Amy"
9
- - utter: utter_transfer_money_understand
10
- - bot: "Which account would you like to transfer money from?"
11
- - user: "sorry, I want to cancel that"
12
- - utter: utter_flow_cancelled_rasa
@@ -1,7 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_cannot_handle
3
- steps:
4
- - user: "hello"
5
- - utter: utter_chitchat
6
- - user: "I want to apply for a mortgage"
7
- - utter: utter_ask_rephrase
@@ -1,7 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_chitchat
3
- steps:
4
- - user: "hello,"
5
- - utter: utter_chitchat
6
- - user: "How can we solve world hunger?"
7
- - bot: "Based on the provided documents and the context of the recent conversation, the question about solving world hunger is not directly addressed. If you have any specific questions related to the documents or conversation context, feel free to ask for more information."
@@ -1,9 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_clarification
3
- steps:
4
- - user: "hello"
5
- - utter: utter_chitchat
6
- - user: "payee"
7
- - utter: utter_clarification_options_rasa
8
- - user: "view a list"
9
- - bot: "You are authorised to transfer money to: Robert, James and Food Market"
@@ -1,18 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_completion
3
- steps:
4
- - user: "hello"
5
- - utter: utter_chitchat
6
- - user: "Who are my payees"
7
- - bot: "You are authorised to transfer money to: Amy, Fitness Gym and William"
8
- - user: "I want to transfer money to William"
9
- - utter: utter_transfer_money_understand
10
- - bot: "Which account would you like to transfer money from?"
11
- - user: "78901234"
12
- - utter: utter_ask_amount
13
- - user: "120"
14
- - utter: utter_ask_timing
15
- - user: "/SetSlots(timing=now)"
16
- - utter: utter_ask_confirm_immediate_payment
17
- - user: "yes"
18
- - utter: utter_transfer_successful
@@ -1,17 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_corrections
3
- steps:
4
- - user: "who are my payees"
5
- - bot: "You are authorised to transfer money to: Amy, Fitness Gym and William"
6
- - user: "I want to transfer 55 to Amy"
7
- - utter: utter_transfer_money_understand
8
- - bot: "Which account would you like to transfer money from?"
9
- - user: "67890123"
10
- - utter: utter_ask_timing
11
- - user: "/SetSlots(timing=now)"
12
- - utter: utter_ask_confirm_immediate_payment
13
- - user: "Sorry, I meant 65 and from Current"
14
- - utter: utter_corrected_previous_input
15
- - utter: utter_ask_confirm_immediate_payment
16
- - user: "yes"
17
- - utter: utter_transfer_successful
@@ -1,32 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_digressions
3
- steps:
4
- - user: "I want to transfer money"
5
- - utter: utter_transfer_money_understand
6
- - bot: "Which account would you like to transfer money from?"
7
- - user: "who are my payees"
8
- - bot: "You are authorised to transfer money to: Richard, Susan and Electric Company"
9
- - utter: utter_flow_continue_interrupted
10
- - bot: "Which account would you like to transfer money from?"
11
- - user: "I would like to add Brad as a payee"
12
- - utter: utter_ask_account_number
13
- - user: "123456"
14
- - utter: utter_ask_payee_type
15
- - user: "/SetSlots(payee_type=person)"
16
- - utter: utter_ask_reference
17
- - user: "Facebook Marketplace"
18
- - utter: utter_ask_confirm_payee_details
19
- - user: "/SetSlots(confirm_payee_details=True)"
20
- - utter: utter_payee_added_success
21
- - utter: utter_flow_continue_interrupted
22
- - bot: "Which account would you like to transfer money from?"
23
- - user: "12345678"
24
- - utter: utter_ask_payee_name
25
- - user: "Brad"
26
- - utter: utter_ask_amount
27
- - user: "55.23"
28
- - utter: utter_ask_timing
29
- - user: "immediate"
30
- - utter: utter_ask_confirm_immediate_payment
31
- - user: "yup"
32
- - utter: utter_transfer_successful
@@ -1,21 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_human_handoff
3
- steps:
4
- - user: "hello"
5
- - utter: utter_chitchat
6
- - user: "i want to transfer 999 from savings"
7
- - utter: utter_transfer_money_understand
8
- - utter: utter_ask_payee_name
9
- - user: "who are my payees"
10
- - bot: "You are authorised to transfer money to: Amy, Fitness Gym and William"
11
- - utter: utter_flow_continue_interrupted
12
- - utter: utter_ask_payee_name
13
- - user: "Amy"
14
- - utter: utter_ask_timing
15
- - user: "/SetSlots(timing=now)"
16
- - utter: utter_ask_confirm_immediate_payment
17
- - user: "I want to talk to a human"
18
- - utter: utter_human_handoff_not_available
19
- - utter: utter_ask_confirm_immediate_payment
20
- - user: "no"
21
- - utter: utter_cancel_transfer
@@ -1,16 +0,0 @@
1
- test_cases:
2
- - test_case: conversation_repair_skipping_collect_step
3
- steps:
4
- - user: "I want to transfer 55 to Amy from savings right now"
5
- - utter: utter_transfer_money_understand
6
- - utter: utter_ask_confirm_immediate_payment
7
- - user: "sorry, I meant 65"
8
- - utter: utter_corrected_previous_input
9
- - utter: utter_ask_confirm_immediate_payment
10
- - user: "sorry, I meant in the future"
11
- - utter: utter_corrected_previous_input
12
- - utter: utter_ask_payment_date
13
- - user: "12/12/2025"
14
- - utter: utter_ask_confirm_future_payment
15
- - user: "yes"
16
- - utter: utter_payment_scheduled
@@ -1,16 +0,0 @@
1
- test_cases:
2
- - test_case: A simple test scripts used in standard demos for Starterpack - Financial Services (en)
3
- steps:
4
- - user: "I want to transfer money"
5
- - utter: utter_transfer_money_understand
6
- - bot: "Which account would you like to transfer money from?"
7
- - user: "56789012"
8
- - utter: utter_ask_payee_name
9
- - user: "Susan"
10
- - utter: utter_ask_amount
11
- - user: "55.10"
12
- - utter: utter_ask_timing
13
- - user: "/SetSlots(timing=now)"
14
- - utter: utter_ask_confirm_immediate_payment
15
- - user: "Yes"
16
- - utter: utter_transfer_successful
@@ -1,15 +0,0 @@
1
- test_cases:
2
- - test_case: various_tests_for_account_balance
3
- steps:
4
- - user: "I want to view my account balance"
5
- - bot: "Which account would you like the balance for?"
6
- - user: "12345678"
7
- - bot: "The balance is: $10123.45"
8
- - user: "I want to query the balance of my acccounts"
9
- - bot: "Which account would you like the balance for?"
10
- - user: "12345678"
11
- - bot: "The balance is: $10123.45"
12
- - user: "I want to know the balance of one of my accounts"
13
- - bot: "Which account would you like the balance for?"
14
- - user: "23456789"
15
- - bot: "The balance is: $4923.67"
@@ -1,12 +0,0 @@
1
- test_cases:
2
- - test_case: banking_questions - Happy paths no 1
3
- steps:
4
- - user: "Are there any fees to transfer money to my friends?"
5
- - bot: "Yes, there may be fees associated with transferring money, especially for international transfers. To avoid fees, consider using bank-to-bank transfers within the UK whenever possible. You will be notified of any applicable fees before confirming the transfer."
6
-
7
- - test_case: banking_questions - Happy paths no 2
8
- steps:
9
- - user: "I have a question on prepaid card"
10
- - utter: utter_help
11
- - user: "are there fees to transfer from or to prepaid cards"
12
- - bot: "Yes, there may be fees associated with transferring funds to or from prepaid cards. It is advisable to check your account details for specific charges related to these transactions."
@@ -1,52 +0,0 @@
1
- test_cases:
2
- - test_case: card_blocking - Happy paths no1
3
- steps:
4
- - user: "I want to block my card"
5
- - utter: utter_block_card_understand
6
- - bot: "Select the card you require assistance with:"
7
- - user: "Wait, Wait, what will happen to my pre-authorized payments"
8
- - bot: "When you block your card, any recurring payments linked to it will be interrupted until you update them with a new card number. You can request the merchants to cancel the hold on your pre-authorized payments if it is no longer necessary."
9
- - bot: "Select the card you require assistance with:"
10
- - user: "SetSlots(card_selection=3456789034567890)"
11
- - utter: utter_ask_reason_for_blocking
12
- - user: "/SetSlots(reason_for_blocking=lost)"
13
- - utter: utter_acknowledge_reason_fraud_stolen_lost
14
- - utter: utter_card_blocked
15
- - utter: utter_ask_confirm_issue_new_card
16
- - user: "/SetSlots(confirm_issue_new_card=true)"
17
- - utter: utter_ask_address_confirmed
18
- - user: "/SetSlots(address_confirmed=True)"
19
- - utter: utter_confirm_physical_address
20
-
21
- - test_case: card_blocking - Happy paths no2
22
- steps:
23
- - user: "I think I that I have lost my card"
24
- - utter: utter_block_card_understand
25
- - bot: "Select the card you require assistance with:"
26
- - user: "SetSlots(card_selection=5555666677778888)"
27
- - utter: utter_acknowledge_reason_fraud_stolen_lost
28
- - utter: utter_card_blocked
29
- - utter: utter_ask_confirm_issue_new_card
30
- - user: "/SetSlots(confirm_issue_new_card=false)"
31
-
32
- - test_case: card_blocking - Happy paths no3
33
- steps:
34
- - user: "I think I have lost my card"
35
- - utter: utter_block_card_understand
36
- - bot: "Select the card you require assistance with:"
37
- - user: "SetSlots(card_selection=1111222233334444)"
38
- - utter: utter_acknowledge_reason_fraud_stolen_lost
39
- - utter: utter_card_blocked
40
- - utter: utter_ask_confirm_issue_new_card
41
- - user: "sorry, i selected the wrong card"
42
- - utter: utter_corrected_previous_input
43
- - bot: "Select the card you require assistance with:"
44
- - user: "the second debit card"
45
- - utter: utter_corrected_previous_input
46
- - utter: utter_acknowledge_reason_fraud_stolen_lost
47
- - utter: utter_card_blocked
48
- - utter: utter_ask_confirm_issue_new_card
49
- - user: "/SetSlots(confirm_issue_new_card=true)"
50
- - utter: utter_ask_address_confirmed
51
- - user: "yes"
52
- - utter: utter_confirm_physical_address
@@ -1,136 +0,0 @@
1
- test_cases:
2
- - test_case: Money Transfer - Happy paths no1
3
- steps:
4
- - user: "I want to transfer money"
5
- - utter: utter_transfer_money_understand
6
- - bot: "Which account would you like to transfer money from?"
7
- - user: "12345678"
8
- - utter: utter_ask_payee_name
9
- - user: "Robert"
10
- - utter: utter_ask_amount
11
- - user: "55"
12
- - utter: utter_ask_timing
13
- - user: "immediate"
14
- - utter: utter_ask_confirm_immediate_payment
15
- - user: "Yes"
16
- - utter: utter_transfer_successful
17
-
18
- - test_case: Money Transfer - Happy paths no2
19
- steps:
20
- - user: "I want to transfer $55.55 to Amy from checking"
21
- - utter: utter_transfer_money_understand
22
- - utter: utter_ask_timing
23
- - user: "/SetSlots(timing=now)"
24
- - utter: utter_ask_confirm_immediate_payment
25
- - user: "yes"
26
- - utter: utter_transfer_successful
27
-
28
- - test_case: Money Transfer - Happy paths no3
29
- steps:
30
- - user: "I want to transfer $55.55 to Amy"
31
- - utter: utter_transfer_money_understand
32
- - bot: "Which account would you like to transfer money from?"
33
- - user: "78901234"
34
- - utter: utter_ask_timing
35
- - user: "/SetSlots(timing=now)"
36
- - utter: utter_ask_confirm_immediate_payment
37
- - user: "yes"
38
- - utter: utter_transfer_successful
39
-
40
- - test_case: Money Transfer - Happy paths no4
41
- steps:
42
- - user: "I would like to transfer $55.55 to Amy"
43
- - utter: utter_transfer_money_understand
44
- - bot: "Which account would you like to transfer money from?"
45
- - user: "78901234"
46
- - utter: utter_ask_timing
47
- - user: "/SetSlots(timing=future)"
48
- - utter: utter_ask_payment_date
49
- - user: "12-12-2025"
50
- - utter: utter_ask_confirm_future_payment
51
- - user: "yes"
52
- - utter: utter_payment_scheduled
53
-
54
- - test_case: Money Transfer - Happy paths no5
55
- steps:
56
- - user: "I want to transfer $55.55 to Amy from checking"
57
- - utter: utter_transfer_money_understand
58
- - utter: utter_ask_timing
59
- - user: "/SetSlots(timing=now)"
60
- - utter: utter_ask_confirm_immediate_payment
61
- - user: "yes"
62
- - utter: utter_transfer_successful
63
-
64
- - test_case: Money Transfer - Happy paths no6
65
- steps:
66
- - user: "I want to transfer 55.55$ to Amy"
67
- - utter: utter_transfer_money_understand
68
- - bot: "Which account would you like to transfer money from?"
69
- - user: "67890123"
70
- - utter: utter_ask_timing
71
- - user: "immediate"
72
- - utter: utter_ask_confirm_immediate_payment
73
- - user: "yes"
74
- - utter: utter_transfer_successful
75
-
76
- - test_case: Money Transfer - Happy paths no7
77
- steps:
78
- - user: "I want to transfer $55.55 to Amy from checking right now"
79
- - utter: utter_transfer_money_understand
80
- - utter: utter_ask_confirm_immediate_payment
81
- - user: "yes"
82
- - utter: utter_transfer_successful
83
-
84
- - test_case: Money Transfer - Happy paths no8
85
- steps:
86
- - user: "I want to transfer 100.24$ from my savings to Amy right now"
87
- - utter: utter_transfer_money_understand
88
- - utter: utter_ask_confirm_immediate_payment
89
- - user: "yes"
90
- - utter: utter_transfer_successful
91
-
92
- - test_case: Money Transfer - Happy paths no9
93
- steps:
94
- - user: "I want to transfer money"
95
- - utter: utter_transfer_money_understand
96
- - bot: "Which account would you like to transfer money from?"
97
- - user: "who are my payees"
98
- - bot: "You are authorised to transfer money to: Robert, James and Food Market"
99
- - utter: utter_flow_continue_interrupted
100
- - bot: "Which account would you like to transfer money from?"
101
- - user: "I would like to add Timmy as a payee"
102
- - utter: utter_ask_account_number
103
- - user: "56567"
104
- - utter: utter_ask_payee_type
105
- - user: "/SetSlots(payee_type=person)"
106
- - utter: utter_ask_reference
107
- - user: "Facebook Marketplace"
108
- - utter: utter_ask_confirm_payee_details
109
- - user: "/SetSlots(confirm_payee_details=True)"
110
- - utter: utter_payee_added_success
111
- - utter: utter_flow_continue_interrupted
112
- - bot: "Which account would you like to transfer money from?"
113
- - user: "12345678"
114
- - utter: utter_ask_amount
115
- - user: "$40.67"
116
- - utter: utter_ask_timing
117
- - user: "/SetSlots(timing=now)"
118
- - utter: utter_ask_confirm_immediate_payment
119
- - user: "yup"
120
- - utter: utter_transfer_successful
121
-
122
- - test_case: Money Transfer - Happy paths no10
123
- steps:
124
- - user: "I want to transfer 55 to Amy from savings right now"
125
- - utter: utter_transfer_money_understand
126
- - utter: utter_ask_confirm_immediate_payment
127
- - user: "sorry I meant 65"
128
- - utter: utter_corrected_previous_input
129
- - utter: utter_ask_confirm_immediate_payment
130
- - user: "sorry I meant in the future"
131
- - utter: utter_corrected_previous_input
132
- - utter: utter_ask_payment_date
133
- - user: "12/12/2025"
134
- - utter: utter_ask_confirm_future_payment
135
- - user: "Yes"
136
- - utter: utter_payment_scheduled
@@ -1,27 +0,0 @@
1
- test_cases:
2
- - test_case: payee_management - Happy paths no1
3
- steps:
4
- - user: "who are my payees"
5
- - bot: "You are authorised to transfer money to: Robert, James and Food Market"
6
-
7
- - test_case: payee_management - Happy paths no2
8
- steps:
9
- - user: "I want to add a payee"
10
- - utter: utter_ask_payee_name
11
- - user: "Sonia Smith"
12
- - utter: utter_ask_account_number
13
- - user: "123456"
14
- - utter: utter_ask_payee_type
15
- - user: "person"
16
- - utter: utter_ask_reference
17
- - user: "Facebook Marketplace"
18
- - utter: utter_ask_confirm_payee_details
19
- - user: "/SetSlots(confirm_payee_details=True)"
20
- - utter: utter_payee_added_success
21
-
22
- - test_case: payee_management - Happy paths no3
23
- steps:
24
- - user: "who are my payees"
25
- - bot: "You are authorised to transfer money to: Robert, James and Food Market"
26
- - user: "I want to remove a payee"
27
- - utter: utter_ask_rephrase
@@ -1,5 +0,0 @@
1
- test_cases:
2
- - test_case: user is greeted by the assistant
3
- steps:
4
- - user: /session_start
5
- - utter: utter_greeting
File without changes
@@ -1,17 +0,0 @@
1
- # The config recipe.
2
- recipe: default.v1
3
-
4
- # The assistant project unique identifier
5
- # This default value must be replaced with a unique assistant name within your deployment
6
- assistant_id: placeholder_default
7
-
8
- language: en
9
- pipeline:
10
- - name: CompactLLMCommandGenerator
11
- llm:
12
- model_group: openai-gpt-4o
13
-
14
- # Configuration for Rasa Core.
15
- policies:
16
- - name: FlowPolicy
17
- - name: IntentlessPolicy
@@ -1,33 +0,0 @@
1
- # This file contains the credentials for the voice & chat platforms
2
- # which your bot is using.
3
- # https://rasa.com/docs/rasa-pro/connectors/messaging-and-voice-channels/
4
-
5
- rest:
6
- # # you don't need to provide anything here - this channel doesn't
7
- # # require any credentials
8
-
9
-
10
- #facebook:
11
- # verify: "<verify>"
12
- # secret: "<your secret>"
13
- # page-access-token: "<your page access token>"
14
-
15
- #slack:
16
- # slack_token: "<your slack token>"
17
- # slack_channel: "<the slack channel>"
18
- # slack_signing_secret: "<your slack signing secret>"
19
-
20
- #socketio:
21
- # user_message_evt: <event name for user message>
22
- # bot_message_evt: <event name for bot messages>
23
- # session_persistence: <true/false>
24
-
25
- #mattermost:
26
- # url: "https://<mattermost instance>/api/v4"
27
- # token: "<bot token>"
28
- # webhook_url: "<callback URL>"
29
-
30
- # This entry is needed if you are using Rasa Enterprise. The entry represents credentials
31
- # for the Rasa Enterprise "channel", i.e. Talk to your bot and Share with guest testers.
32
- rasa:
33
- url: "http://localhost:5002/api"
@@ -1,7 +0,0 @@
1
- flows:
2
- pattern_session_start:
3
- description: Custom session start to greet the user.
4
- nlu_trigger:
5
- - intent: session_start
6
- steps:
7
- - action: utter_greet
@@ -1,5 +0,0 @@
1
- version: "3.1"
2
-
3
- responses:
4
- utter_greet:
5
- - text: "Hello! Welcome to your assistant - currently, I can't help you with anything, but you can tailor me to your needs!"
@@ -1,58 +0,0 @@
1
- # This file contains the different endpoints your bot can use.
2
-
3
- # Server where the models are pulled from.
4
- # https://rasa.com/docs/rasa-pro/production/model-storage#fetching-models-from-a-server
5
-
6
- #models:
7
- # url: http://my-server.com/models/default_core@latest
8
- # wait_time_between_pulls: 10 # [optional](default: 100)
9
-
10
- # Server which runs your custom actions.
11
- # https://rasa.com/docs/rasa-pro/concepts/custom-actions
12
-
13
- action_endpoint:
14
- actions_module: "actions"
15
-
16
- # Tracker store which is used to store the conversations.
17
- # By default the conversations are stored in memory.
18
- # https://rasa.com/docs/rasa-pro/production/tracker-stores
19
-
20
- #tracker_store:
21
- # type: redis
22
- # url: <host of the redis instance, e.g. localhost>
23
- # port: <port of your redis instance, usually 6379>
24
- # db: <number of your database within redis, e.g. 0>
25
- # password: <password used for authentication>
26
- # use_ssl: <whether or not the communication is encrypted, default false>
27
-
28
- #tracker_store:
29
- # type: mongod
30
- # url: <url to your mongo instance, e.g. mongodb://localhost:27017>
31
- # db: <name of the db within your mongo instance, e.g. rasa>
32
- # username: <username used for authentication>
33
- # password: <password used for authentication>
34
-
35
- # Event broker which all conversation events should be streamed to.
36
- # https://rasa.com/docs/rasa-pro/production/event-brokers
37
-
38
- #event_broker:
39
- # url: localhost
40
- # username: username
41
- # password: password
42
- # queue: queue
43
-
44
- # The lines below activate contextual rephrasing, using the default OpenAI language model.
45
- # Ensure the OPENAI_API_KEY is set to prevent any missing API key errors.
46
- # For more details, refer to the documentation:
47
- # https://rasa.com/docs/rasa-pro/concepts/contextual-response-rephraser
48
- # To enable the rephraser, remove the comment symbols in the lines below.
49
- #nlg:
50
- # type: rephrase
51
-
52
- model_groups:
53
- - id: openai-gpt-4o
54
- models:
55
- - provider: openai
56
- model: gpt-4o-2024-11-20
57
- request_timeout: 7
58
- max_tokens: 256
File without changes