rasa-pro 3.13.1a5__py3-none-any.whl → 3.13.1a6__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 (184) hide show
  1. rasa/cli/project_templates/finance/actions/action_add_payee.py +47 -0
  2. rasa/cli/project_templates/finance/actions/action_ask_account.py +50 -0
  3. rasa/cli/project_templates/finance/actions/action_ask_account_from.py +50 -0
  4. rasa/cli/project_templates/finance/actions/action_ask_card.py +47 -0
  5. rasa/cli/project_templates/finance/actions/action_check_balance.py +40 -0
  6. rasa/cli/project_templates/finance/actions/action_check_card_existence.py +35 -0
  7. rasa/cli/project_templates/finance/actions/action_check_payee_existence.py +40 -0
  8. rasa/cli/project_templates/finance/actions/action_check_sufficient_funds.py +41 -0
  9. rasa/cli/project_templates/finance/actions/action_list_payees.py +45 -0
  10. rasa/cli/project_templates/finance/actions/action_process_immediate_payment.py +18 -0
  11. rasa/cli/project_templates/finance/actions/action_remove_payee.py +49 -0
  12. rasa/cli/project_templates/finance/actions/action_schedule_payment.py +19 -0
  13. rasa/cli/project_templates/finance/actions/action_session_start.py +69 -0
  14. rasa/cli/project_templates/finance/actions/action_update_card_status.py +45 -0
  15. rasa/cli/project_templates/finance/actions/action_validate_payment_date.py +36 -0
  16. rasa/cli/project_templates/finance/actions/database.py +233 -0
  17. rasa/cli/project_templates/finance/config.yml +16 -1
  18. rasa/cli/project_templates/finance/csvs/accounts.csv +8 -0
  19. rasa/cli/project_templates/finance/csvs/advisors.csv +7 -0
  20. rasa/cli/project_templates/finance/csvs/appointments.csv +211 -0
  21. rasa/cli/project_templates/finance/csvs/branches.csv +10 -0
  22. rasa/cli/project_templates/finance/csvs/cards.csv +11 -0
  23. rasa/cli/project_templates/finance/csvs/payees.csv +10 -0
  24. rasa/cli/project_templates/finance/csvs/transactions.csv +71 -0
  25. rasa/cli/project_templates/finance/csvs/users.csv +4 -0
  26. rasa/cli/project_templates/finance/data/flows/add_payee.yml +29 -0
  27. rasa/cli/project_templates/finance/data/flows/block_card.yml +66 -0
  28. rasa/cli/project_templates/finance/data/flows/check_balance.yml +9 -0
  29. rasa/cli/project_templates/finance/data/flows/list_payees.yml +5 -0
  30. rasa/cli/project_templates/finance/data/flows/remove_payee.yml +21 -0
  31. rasa/cli/project_templates/finance/data/flows/select_card.yml +12 -0
  32. rasa/cli/project_templates/finance/data/flows/transfer_money.yml +64 -2
  33. rasa/cli/project_templates/finance/data/flows/welcome.yml +14 -0
  34. rasa/cli/project_templates/finance/data/nlu.yml +29 -0
  35. rasa/cli/project_templates/finance/data/patterns/pattern_chitchat.yml +7 -0
  36. rasa/cli/project_templates/finance/data/patterns/pattern_completed.yml +6 -0
  37. rasa/cli/project_templates/finance/data/patterns/pattern_search.yml +5 -0
  38. rasa/cli/project_templates/finance/data/patterns/pattern_session_start.yml +5 -3
  39. rasa/cli/project_templates/finance/data/source/accounts.json +51 -0
  40. rasa/cli/project_templates/finance/data/source/advisors.json +44 -0
  41. rasa/cli/project_templates/finance/data/source/appointments.json +1474 -0
  42. rasa/cli/project_templates/finance/data/source/branches.json +47 -0
  43. rasa/cli/project_templates/finance/data/source/cards.json +72 -0
  44. rasa/cli/project_templates/finance/data/source/payees.json +74 -0
  45. rasa/cli/project_templates/finance/data/source/transactions.json +492 -0
  46. rasa/cli/project_templates/finance/data/source/users.json +29 -0
  47. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/consequences_of_blocking_card.txt +8 -0
  48. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/reasons_to_block_card.txt +8 -0
  49. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/recovering_from_card_fraud.txt +8 -0
  50. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/tips_for_card_security.txt +8 -0
  51. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/what_to_do_if_card_is_lost.txt +8 -0
  52. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/account_balance_security.txt +7 -0
  53. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/common_balance_inquiries.txt +8 -0
  54. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/methods_to_check_balance.txt +8 -0
  55. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/understanding_balance_updates.txt +8 -0
  56. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/what_to_do_if_balance_is_incorrect.txt +8 -0
  57. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/benefits_of_authorised_payees.txt +8 -0
  58. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/common_issues_with_payees.txt +8 -0
  59. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/general_payee_information.txt +8 -0
  60. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/payee_management_tips.txt +8 -0
  61. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/understanding_payee_types.txt +8 -0
  62. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/common_transfer_errors.txt +8 -0
  63. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/fees_for_transfers.txt +8 -0
  64. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/general_transfer_information.txt +8 -0
  65. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/security_tips_for_transfers.txt +8 -0
  66. rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/transfer_processing_times.txt +8 -0
  67. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part1.txt +50 -0
  68. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part10.txt +50 -0
  69. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part11.txt +48 -0
  70. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part12.txt +50 -0
  71. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part13.txt +50 -0
  72. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part14.txt +47 -0
  73. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part15.txt +50 -0
  74. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part16.txt +50 -0
  75. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part17.txt +47 -0
  76. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part18.txt +50 -0
  77. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part19.txt +50 -0
  78. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part2.txt +50 -0
  79. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part20.txt +47 -0
  80. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part21.txt +50 -0
  81. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part22.txt +50 -0
  82. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part23.txt +47 -0
  83. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part24.txt +50 -0
  84. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part25.txt +50 -0
  85. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part26.txt +47 -0
  86. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part27.txt +50 -0
  87. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part28.txt +50 -0
  88. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part29.txt +47 -0
  89. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part3.txt +47 -0
  90. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part30.txt +50 -0
  91. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part31.txt +50 -0
  92. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part32.txt +47 -0
  93. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part33.txt +50 -0
  94. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part34.txt +50 -0
  95. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part35.txt +47 -0
  96. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part36.txt +50 -0
  97. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part37.txt +50 -0
  98. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part38.txt +47 -0
  99. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part39.txt +50 -0
  100. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part4.txt +50 -0
  101. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part40.txt +50 -0
  102. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part41.txt +47 -0
  103. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part42.txt +50 -0
  104. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part43.txt +50 -0
  105. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part44.txt +47 -0
  106. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part45.txt +50 -0
  107. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part46.txt +50 -0
  108. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part47.txt +47 -0
  109. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part48.txt +50 -0
  110. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part49.txt +50 -0
  111. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part5.txt +50 -0
  112. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part50.txt +47 -0
  113. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part51.txt +50 -0
  114. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part52.txt +50 -0
  115. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part53.txt +47 -0
  116. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part54.txt +50 -0
  117. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part55.txt +50 -0
  118. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part56.txt +47 -0
  119. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part57.txt +50 -0
  120. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part58.txt +50 -0
  121. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part59.txt +47 -0
  122. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part6.txt +47 -0
  123. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part60.txt +50 -0
  124. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part61.txt +50 -0
  125. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part7.txt +50 -0
  126. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part8.txt +50 -0
  127. rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part9.txt +47 -0
  128. rasa/cli/project_templates/finance/domain/add_payee.yml +47 -0
  129. rasa/cli/project_templates/finance/domain/block_card.yml +101 -0
  130. rasa/cli/project_templates/finance/domain/check_balance.yml +9 -0
  131. rasa/cli/project_templates/finance/domain/default_actions.yml +16 -0
  132. rasa/cli/project_templates/finance/domain/default_flows.yml +33 -0
  133. rasa/cli/project_templates/finance/domain/list_payees.yml +4 -0
  134. rasa/cli/project_templates/finance/domain/remove_payee.yml +16 -0
  135. rasa/cli/project_templates/finance/domain/select_card.yml +12 -0
  136. rasa/cli/project_templates/finance/domain/transfer_money.yml +79 -0
  137. rasa/cli/project_templates/finance/endpoints.yml +6 -2
  138. rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2 +19 -0
  139. rasa/cli/project_templates/finance/requirements.txt +1 -0
  140. rasa/cli/project_templates/telco/prompts/command-generator.jinja2 +57 -0
  141. rasa/cli/scaffold.py +1 -1
  142. rasa/version.py +1 -1
  143. {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a6.dist-info}/METADATA +1 -1
  144. {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a6.dist-info}/RECORD +183 -48
  145. rasa/cli/project_templates/finance/domain.yml +0 -7
  146. /rasa/cli/project_templates/{teleco → finance}/prompts/command-generator.jinja2 +0 -0
  147. /rasa/cli/project_templates/{teleco → telco}/actions/actions_billing.py +0 -0
  148. /rasa/cli/project_templates/{teleco → telco}/actions/actions_get_data_from_db.py +0 -0
  149. /rasa/cli/project_templates/{teleco → telco}/actions/actions_run_diagnostics.py +0 -0
  150. /rasa/cli/project_templates/{teleco → telco}/actions/actions_session_start.py +0 -0
  151. /rasa/cli/project_templates/{teleco → telco}/config.yml +0 -0
  152. /rasa/cli/project_templates/{teleco → telco}/credentials.yml +0 -0
  153. /rasa/cli/project_templates/{teleco → telco}/csvs/billing.csv +0 -0
  154. /rasa/cli/project_templates/{teleco → telco}/csvs/customers.csv +0 -0
  155. /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_global.yml +0 -0
  156. /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_reboot_router.yml +0 -0
  157. /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_reset_router.yml +0 -0
  158. /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_solve_internet_issue.yml +0 -0
  159. /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_undertand_bill.yml +0 -0
  160. /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_completed.yml +0 -0
  161. /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_human_handoff.yml +0 -0
  162. /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_search.yml +0 -0
  163. /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_session_start.yml +0 -0
  164. /rasa/cli/project_templates/{teleco → telco}/docs/reset_vs_rboot_router.txt +0 -0
  165. /rasa/cli/project_templates/{teleco → telco}/docs/restart_router.txt +0 -0
  166. /rasa/cli/project_templates/{teleco → telco}/docs/run_speed_test.txt +0 -0
  167. /rasa/cli/project_templates/{teleco → telco}/domain/domain_global.yml +0 -0
  168. /rasa/cli/project_templates/{teleco → telco}/domain/domain_patterns.yml +0 -0
  169. /rasa/cli/project_templates/{teleco → telco}/domain/domain_reboot_router.yml +0 -0
  170. /rasa/cli/project_templates/{teleco → telco}/domain/domain_reset_router.yml +0 -0
  171. /rasa/cli/project_templates/{teleco → telco}/domain/domain_run_speed_test.yml +0 -0
  172. /rasa/cli/project_templates/{teleco → telco}/domain/domain_solve_internet_issue.yml +0 -0
  173. /rasa/cli/project_templates/{teleco → telco}/domain/domain_undertand_bill.yml +0 -0
  174. /rasa/cli/project_templates/{teleco → telco}/endpoints.yml +0 -0
  175. /rasa/cli/project_templates/{teleco → telco}/tests/e2e_results_failed.yml +0 -0
  176. /rasa/cli/project_templates/{teleco → telco}/tests/e2e_results_passed.yml +0 -0
  177. /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/billing_test_cases.yml +0 -0
  178. /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/global_test_cases.yml +0 -0
  179. /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/internet_slow_test_case.yml +0 -0
  180. /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/out_of_scope_test_case.yml +0 -0
  181. /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/patterns_test_cases.yml +0 -0
  182. {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a6.dist-info}/NOTICE +0 -0
  183. {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a6.dist-info}/WHEEL +0 -0
  184. {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a6.dist-info}/entry_points.txt +0 -0
@@ -70,54 +70,189 @@ rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact_fr
70
70
  rasa/cli/project_templates/default/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
71
71
  rasa/cli/project_templates/defaults.py,sha256=36XGO6Xky2SXuI3hfzNaOSPxaHzoGwsEzY1mQSpYqkI,4613
72
72
  rasa/cli/project_templates/finance/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- rasa/cli/project_templates/finance/config.yml,sha256=bmJ5X9nnuD2knwClniM9EFh11wstAbVvMvFR7nv-U2g,390
73
+ rasa/cli/project_templates/finance/actions/action_add_payee.py,sha256=ktqKPqAc7IdJxNUBk8TOH6ZAwu5JzMsS3B9PixO9N14,1480
74
+ rasa/cli/project_templates/finance/actions/action_ask_account.py,sha256=7RXZRBUC-9ur9dTPWLkB3zJ-ndaIBLFFUSLgGyCHMok,1444
75
+ rasa/cli/project_templates/finance/actions/action_ask_account_from.py,sha256=J-uqHopVsFpNU0GDxd2IpoQzLuePp_EQALPTBbaA1bk,1418
76
+ rasa/cli/project_templates/finance/actions/action_ask_card.py,sha256=s2vST5-yxFROpl9-xuhfgoFmkzYyVbGjxeWtjf_0HMw,1336
77
+ rasa/cli/project_templates/finance/actions/action_check_balance.py,sha256=san_BAM1AazRTFMJRqEjW8dwEdRZud743tWUok2g-GQ,1139
78
+ rasa/cli/project_templates/finance/actions/action_check_card_existence.py,sha256=wHwtUY-VG6LeKmgVgEksWRe3bPJk4VAMM4C8uCZaaXw,1061
79
+ rasa/cli/project_templates/finance/actions/action_check_payee_existence.py,sha256=1ioa0YCrgcFf9dD4eDeDec1ArPM7gPgH4xA3RnJeq-0,1132
80
+ rasa/cli/project_templates/finance/actions/action_check_sufficient_funds.py,sha256=NpVh-bBliV6OjNmlHXetKr5W2emeGjlTGmHnKAiAnf8,1250
81
+ rasa/cli/project_templates/finance/actions/action_list_payees.py,sha256=BXzrZt1Hm6ClQyxP_3r0_1zLbOHsQHTMAKedUEtLXgY,1258
82
+ rasa/cli/project_templates/finance/actions/action_process_immediate_payment.py,sha256=nczehD_DIMn2zFRpJv7Fm0YaBA4hHNACdG80DXYSll4,504
83
+ rasa/cli/project_templates/finance/actions/action_remove_payee.py,sha256=xUfFrsNwibHnG_i7N5GnBuUXHt3AEwv9EvRAwOYKQsE,1525
84
+ rasa/cli/project_templates/finance/actions/action_schedule_payment.py,sha256=DRXO-H4bLVKI3T1fLErLurqcdDwiwjHHvG2V09pxg7o,561
85
+ rasa/cli/project_templates/finance/actions/action_session_start.py,sha256=Pp6AHDNMxiocGGfGRS5g9Ls_tP2GV4KgKkzdvyNRe8Y,2398
86
+ rasa/cli/project_templates/finance/actions/action_update_card_status.py,sha256=5uIWwyjy1LhNA7jP8Qr43t4sPsEBfzAMXWVatEQEVTM,1482
87
+ rasa/cli/project_templates/finance/actions/action_validate_payment_date.py,sha256=7591cJicv4SukK4Xwf-GsHFJ9GyPA0lqIeWVPeyQcaw,1230
88
+ rasa/cli/project_templates/finance/actions/database.py,sha256=akGbezRl09QC5zZoVIcn4Gmim31JcoxBGeIN9BsTaSw,8843
89
+ rasa/cli/project_templates/finance/config.yml,sha256=6G3gaVEGYszM71a_lShgxV334Awcclw7vOEcyBr1q9c,790
74
90
  rasa/cli/project_templates/finance/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
75
- rasa/cli/project_templates/finance/data/flows/transfer_money.yml,sha256=tHhUr17ViIpLYb_79WMI1eT7Hxs6JtcXJTcxL4D4VzA,123
76
- rasa/cli/project_templates/finance/data/patterns/pattern_session_start.yml,sha256=m7Kyo738_25JeGM_HbvjOrNMQXCdGpaSlSVCicD1S28,175
77
- rasa/cli/project_templates/finance/domain.yml,sha256=7AE4pREevtCLdPExhSByC7HKGnR6dyzh9ArLy9dRsRc,214
78
- rasa/cli/project_templates/finance/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
91
+ rasa/cli/project_templates/finance/csvs/accounts.csv,sha256=DcFXLw_ji2cO8uXxGTycvCiGY0WEpS8gGXA9dpVE7PI,470
92
+ rasa/cli/project_templates/finance/csvs/advisors.csv,sha256=LGhoLPNEYONp4ryZ0vGeIn4hqESR1cmdQZoH_usSgYI,553
93
+ rasa/cli/project_templates/finance/csvs/appointments.csv,sha256=_A4UVwOeDiMOMuwWPfODp2hrFdIK-AwMtFWKI_wWCLo,7529
94
+ rasa/cli/project_templates/finance/csvs/branches.csv,sha256=5fNH0IACEpmw434dbXE-gLaKxiLX3I6KOkBszTSdPkI,785
95
+ rasa/cli/project_templates/finance/csvs/cards.csv,sha256=c_QuwlZBSbn1GMvdExb7RC8Tpk2JvLmObKqD0cYZoFQ,874
96
+ rasa/cli/project_templates/finance/csvs/payees.csv,sha256=sgJHt2QL860vpMdq-VUkB-S6ZQdJNHpC7hZbesJJXpo,687
97
+ rasa/cli/project_templates/finance/csvs/transactions.csv,sha256=BeJxE7FLlD5skEwf8ao7PfiuEzR0G4NXV8Db1qA4MOE,6742
98
+ rasa/cli/project_templates/finance/csvs/users.csv,sha256=AeO3jwDmo6y00MDJQq9gUgDhJ9qOsPSvMbGbiKxFNns,601
99
+ rasa/cli/project_templates/finance/data/flows/add_payee.yml,sha256=MP2ssaXM86xxSKlkA1XFxkyriuVUzv32ibEYa9I2phc,1171
100
+ rasa/cli/project_templates/finance/data/flows/block_card.yml,sha256=wYmVYk5tvmWyV1GC8zRarKW5sp3NDqd5p-Gdmezd94E,3146
101
+ rasa/cli/project_templates/finance/data/flows/check_balance.yml,sha256=ikGISLx5HdpOm0S1kNG0NWP1zZAbhMdqJinVRKv3DmE,289
102
+ rasa/cli/project_templates/finance/data/flows/list_payees.yml,sha256=bINUCywX62vFGvYkwfi0JHDZXrH6sDDH4nP7RfU0nkg,211
103
+ rasa/cli/project_templates/finance/data/flows/remove_payee.yml,sha256=SIbhe7cbZLteApQyIRQ-GvcwecWGZ8yyDvc0K7bspWc,756
104
+ rasa/cli/project_templates/finance/data/flows/select_card.yml,sha256=LrrYFW4nLbbawf-VcWJc4yozKi4jQkr1Zb62nhMa9ds,355
105
+ rasa/cli/project_templates/finance/data/flows/transfer_money.yml,sha256=k1Q12ZNbYSnuTkfla1xFEY14l4lOMS7TEL8VTB32wo8,2353
106
+ rasa/cli/project_templates/finance/data/flows/welcome.yml,sha256=KGChyOdhytoeD_zAhgKfFilkD1eBrbsyOgF_VRzE3tQ,467
107
+ rasa/cli/project_templates/finance/data/nlu.yml,sha256=cVIvipnOogJ7_lYOrmmTJt65EdSV6lmYsi7jkxWj0oM,610
108
+ rasa/cli/project_templates/finance/data/patterns/pattern_chitchat.yml,sha256=4n42VtrCiSCclCjho1PhcF4nKwNZ-jNauDnTaR5egmM,161
109
+ rasa/cli/project_templates/finance/data/patterns/pattern_completed.yml,sha256=Tp7uZdWqcLIx6DTiA5pcXrZ04fDI91Q_ffi0Jxm45r0,156
110
+ rasa/cli/project_templates/finance/data/patterns/pattern_search.yml,sha256=dcXq-zYrJUsarngkF718Hy7yy7v_H0plqHAUI93CwO4,147
111
+ rasa/cli/project_templates/finance/data/patterns/pattern_session_start.yml,sha256=lJfWvIuOh_hY5cVxLiac7FXGh819KClb2n0-mOCwRak,253
112
+ rasa/cli/project_templates/finance/data/source/accounts.json,sha256=0Smi0Sts1AjDJHKIV0AaT8QG5VHzbfAS3rbmAga3atg,889
113
+ rasa/cli/project_templates/finance/data/source/advisors.json,sha256=tEE1CuryyCRJu2OxI7jw-TYMW5DV1imXkuT06Idp23c,1114
114
+ rasa/cli/project_templates/finance/data/source/appointments.json,sha256=IERKoZZhoQI7H2B7KQGXD1Wx-G9kGbkFhX70yo4baog,32375
115
+ rasa/cli/project_templates/finance/data/source/branches.json,sha256=Q5AP_-Tlp9ZIi76IK80cTTxbLtxTwJesqsPXCmS-2u4,1245
116
+ rasa/cli/project_templates/finance/data/source/cards.json,sha256=oIEBQBloYjLwmynyT_u0dEm91XGFOLie19pdfU387Zk,1275
117
+ rasa/cli/project_templates/finance/data/source/payees.json,sha256=LA94tqmPqaFr6biLEUNGFjf7iaqzcqwPEh8e5v9eBoc,1461
118
+ rasa/cli/project_templates/finance/data/source/transactions.json,sha256=qUBMkuYAF6eKl2Lhseiy_W_p_qJxRFx76LohlOMeQ_8,11955
119
+ rasa/cli/project_templates/finance/data/source/users.json,sha256=vVqtYHX6vkDfyskmdD7dhWSg8s7kf6YqmTmkIqiSDx8,761
120
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/consequences_of_blocking_card.txt,sha256=P10DX5Uvy76BSw4mM-51oBYGizPB6qzZwElqRDLwoRI,477
121
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/reasons_to_block_card.txt,sha256=xmFiV_j7tVH1bzeI46JA2Wh5cVHzHx6DGdnVLTaQ_eI,492
122
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/recovering_from_card_fraud.txt,sha256=Ul5ujCkATAvpuEmtkemxVwALnwsTTxXltIY81j8Rtuo,493
123
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/tips_for_card_security.txt,sha256=xbeS_bXtITTR7PRXBjBCJDwl5-7uRAUTJx67X9cZ7O4,530
124
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/what_to_do_if_card_is_lost.txt,sha256=X67TgPpGgPTQPAy2pojpWuorXl1QWDSKaLud3byUG4U,487
125
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/account_balance_security.txt,sha256=UdzpH_7E55LJpRo9eLgeanNew8jIf70aUhMIFIVd_1Q,378
126
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/common_balance_inquiries.txt,sha256=xOioXWRwyV_A5dJtxrtLzAej87S1OSlYt0E_LFRXkcQ,534
127
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/methods_to_check_balance.txt,sha256=q8VcSZ3ksuiGEvi1qjMWbCbJOo-G-EiwSroEGUmnur8,436
128
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/understanding_balance_updates.txt,sha256=OaUsD_wQJmoWXJQMOCi4Jv1ChEbdJgAMsutjBhQyoSc,449
129
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/what_to_do_if_balance_is_incorrect.txt,sha256=n00N1bDmWHYHllllBQOhelYtR_It88MQC8WfAqRWcZ0,540
130
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/benefits_of_authorised_payees.txt,sha256=SXEBsmhHIiAwYSBz-270J8xPYfDh2oh0bCKd1TF_yG0,535
131
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/common_issues_with_payees.txt,sha256=isLt01kWtYgl-YnCJ1xvLY8opkJG014gw3awnjFiYOY,533
132
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/general_payee_information.txt,sha256=GaZ4AMT5-f3vhVF4r18s-zSBXNvAJgn19jTYQ4mS42w,446
133
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/payee_management_tips.txt,sha256=wq0JeVrm56iybGYstLsgEy_Hh3Q2RzbdRP6_55mV82s,441
134
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/understanding_payee_types.txt,sha256=Dn7glzH3RWDwSmc3jZqj9LJTmJI6laokFl8PsbVY3CM,455
135
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/common_transfer_errors.txt,sha256=kENNkZ1yEHoohqmH4vFqTiKVja1sW__VOWGCMDDJ7RQ,557
136
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/fees_for_transfers.txt,sha256=C4iHIKVfKAsDPXmmGvfuCcOnBRE9N30t66eAmcxs4Vs,461
137
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/general_transfer_information.txt,sha256=IkklWyTBXrLbhsnpmQOwh4vlbpyPPmSfU1cwJ3Ag_B8,455
138
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/security_tips_for_transfers.txt,sha256=6JGi050EQBjdnXcBAt85YfjoW14L6ZTI8jv8jiw15Hk,528
139
+ rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/transfer_processing_times.txt,sha256=K1nACrSHkF8bRQJ0LVitKCQODIEn_tclbJxCI2Wm9o8,471
140
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part1.txt,sha256=qXi0AnrO37yMVdWJgFB1P6PMn2dnXSaB31XOEGrlaDk,21342
141
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part10.txt,sha256=mkclHX4CE1O2qmeT7sa2rWqfUQmAptiYv6fUFYaKDL0,30616
142
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part11.txt,sha256=mw_IKqkyObOquUIPH-V_LVSVB_OrQI63x18YQi9s3rY,11227
143
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part12.txt,sha256=fBs1i-a-aO-RudDLu80b2DAS7FDqKhpPVeJp3_XIp0g,20000
144
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part13.txt,sha256=MnWmh5Ery1R0VWr4uIDa9LxIV5PWUv8-VDXh4Z58vJU,17747
145
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part14.txt,sha256=--dMHO6XgGALcjtZYdPb_cYraaa_t9xJKOhsWTv-uq4,15787
146
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part15.txt,sha256=8RKnKdYjgtCSV46XUg_8noy7HG6aG6Xe_NjCyermX7o,24621
147
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part16.txt,sha256=y2r9omuqNRwct27rxiYQ4ytigi519-y_AKJPp6x1sDE,12706
148
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part17.txt,sha256=14HH3bsdDxLRze0GQ5fOfI2zwX3t5Q6zYm_Rf4MVI1s,25517
149
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part18.txt,sha256=4gzC8WymFPIACu3mXolQmqeiljmHr4RopIxma9rTQOs,17878
150
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part19.txt,sha256=-pQt2gF4IYPEawFHUlhGqqJNFSWG4KyCjXdXa2X0GD4,16898
151
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part2.txt,sha256=dqFmeGMB_S9TwHmnL7zjua4FAuXsnTFP1fc5kLMmNNU,15262
152
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part20.txt,sha256=YW6bbfT_ntMTCzdEfrzdqDRkC_9RCWU8ynUOZbY24Y0,18452
153
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part21.txt,sha256=q3rOY2Wu8dmQL7Vfjm8-u_92WZxQTMy7nlR82CV-fdQ,19377
154
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part22.txt,sha256=Kyyz9Cap1jqxwAVpGiww7Dw2MTEM0C6UliGsi0pUpxs,17000
155
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part23.txt,sha256=fDnPy9xXS81WoQ3mwNUOwyIY_fq12gu6GgQ5PljzLZo,20713
156
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part24.txt,sha256=R6_p4FzVK298VlLgTk2CY8xXRiOw8t20KFrhepC0qpQ,10986
157
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part25.txt,sha256=ZOw6vSC8VitWzUCUFwrQn2dr9BfXt6B5ppwdKhQhZ9U,17170
158
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part26.txt,sha256=JraAnKbrd1UZ_lCBD09fi4ECOVzg8D8EjeSbf5J3ehE,10761
159
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part27.txt,sha256=QmXPh7k9H5CxVyhE7SmzEAiUFdWaSy7px9mB0ZsuK3g,19336
160
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part28.txt,sha256=iE0du9hkGfzGADlfkpr6swrKmqpzZ3VO961QKnoyNCI,14681
161
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part29.txt,sha256=GyD648wiwD3gXSDMMYUKyGjX0SmsR6u4gRzKkWOXJw8,27004
162
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part3.txt,sha256=pTnoKXcoXr2I-0AWgW2junZ5XRyfFgqBPTOHcqy-hBg,18900
163
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part30.txt,sha256=KjJM0BclYvQ7yl1CaSJqA3uvtCYSC_3W-GvkYRT_b_4,16466
164
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part31.txt,sha256=I9elWeXK0K4mNTodDOin_QMZTb8VBHEcZaSBlEdVhP8,19033
165
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part32.txt,sha256=t0rErOoJlZstpUtaMViTHyEQDP-JdDUTpVoPZ0Ctddc,12537
166
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part33.txt,sha256=uJFb0CrQvRE-jVPpQf28jJB4Yp0tZUSupNJ0QMiXP-Y,18793
167
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part34.txt,sha256=GdTYA4jzOfCxEYuAbTtpH-Y5WoBTR8UqGj6aWNnKQds,22304
168
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part35.txt,sha256=evUjnRpoqGn6JmKq3CJkz4q0d8PWO4_u_-s8SJtMgQ8,13147
169
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part36.txt,sha256=mXFZvxGRrd58KSfAyQIv-xdAwIJM_FZHk4PNEK-1PB0,19755
170
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part37.txt,sha256=dK7BfKoZ9X89o8kMEH8Y_8san7vyy9ZBFO0ilpP8jnA,20159
171
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part38.txt,sha256=rdAr0OCq_qYyV2M39091tiJvH37HHc49f1NKyTjAVs0,14622
172
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part39.txt,sha256=xRI1Yrp6ssKrO5bSIqxY_83nnzNq5juJZp8IXUDrjVo,26018
173
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part4.txt,sha256=ECD2VM10jdUufwdrz7eYdwIeTTpj5jp66lpOmKhdo6Y,19400
174
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part40.txt,sha256=z9UVGhsQbnFzFOVQsih7BcyEiTHb8VluZXgabFKYlTQ,21872
175
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part41.txt,sha256=WnbHg9Cpz80zxw903CjsTow9weDvlsivQJO6_Yb8iGw,15319
176
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part42.txt,sha256=C6bb8vb7zsyhSD8h-3meN4jgsVXgbm5_8BqKEKzUBOg,19267
177
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part43.txt,sha256=pttRMjhB5GiFcuPqqOWHwnujnHUqtmRSXH1m5Ab884w,21689
178
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part44.txt,sha256=27BriV1wOWXcCBxM4Izj58yorXyOLrETD9M-ZMT-qcg,14253
179
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part45.txt,sha256=L9k5YhdK8jgX623pRHfVR2MZPjGFcQsRn-6f8EjU6DI,14418
180
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part46.txt,sha256=fdWAG-e8f0wtya55BOYrEr-yqGQonikgxOpigzTsMNc,17512
181
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part47.txt,sha256=DZY9oCxmzgZ4ZkIUD06L2v0DvlcalkU7Cp65avcAGKo,17922
182
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part48.txt,sha256=eTgMJGeRqG0OYFGSclVaaBFOILsvpp0iH1yDmuokfpM,22653
183
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part49.txt,sha256=L0m8kgeIjmeO-51lun4TvYD9OfTGa6NgNA-tmtO_Ulg,25537
184
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part5.txt,sha256=D3k1bebP3HZAzPCVyraYc9SubtzX9aK9Hv7cBKKstAI,22062
185
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part50.txt,sha256=pnEDMTjp5p7k_osyMxtmloXrTt4M5RST_FeeSkJIKuo,23697
186
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part51.txt,sha256=6wgQo-WwknbhHPPlH_DZYXTxszOTJ76OPJ40Yqa_qKc,17751
187
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part52.txt,sha256=67mDUerLplkkGDdT8Y8vXbUIpfQRG8_TWMyh83jvGxA,14220
188
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part53.txt,sha256=4qyJJL71fmb35hUeNzkYgR5W0xf0D_CCtZQaO1mmhDk,12270
189
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part54.txt,sha256=8IgiGD6-T_WmO4dXVVd5iL7n44oaXZymcik7QetY4gc,12703
190
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part55.txt,sha256=KsV13Tay9OrFJaR4VqMBc0fe2RcwuyLAbpby30vjxXU,25359
191
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part56.txt,sha256=PTulbRj9pJAJJD6UF40hq4JpV4e7T9ZBP8VpTx8b8uk,15896
192
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part57.txt,sha256=sbtupe8hxNYrszZyqw2BxlKoCXtk0EYxAb0ADgFE33A,22968
193
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part58.txt,sha256=F93D5Pp6s5VRnYHiHdaFZ7SUgF6JQjMN0P3IEvfpeCM,17410
194
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part59.txt,sha256=oXwbXU83A6eT7zL8flryFTPM8PHU0o6ZEtYEQGgTv4A,16845
195
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part6.txt,sha256=oaJWaHOE-fMwDBMlCfZoQVVqSgOhiR0cwbsSO2PO5tE,22583
196
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part60.txt,sha256=cWq8WOI_JXCgL6AiKNOOXFj4lkrAg0gq24E_V63umMk,24630
197
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part61.txt,sha256=t4lrO-c2JHvd7POESU2EchlIjyKnmpwL4V_mjeownpY,12732
198
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part7.txt,sha256=KdBohNojdDv2C5AjEn5n0plWcouXnucX1oBD6spcGe8,15489
199
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part8.txt,sha256=8pYFAXMN85Ib_e0WaoXkrg6oWLzUw9Ws1dt8t1Pqhpo,20310
200
+ rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part9.txt,sha256=z768wU20LHoWt2SfYufeRPGmWXPI7h5F5Hsvikpnt7k,20368
201
+ rasa/cli/project_templates/finance/domain/add_payee.yml,sha256=cn7Fe1g-wN1wg_9jSm3qv1mrqsSRZUDl1EOCONiMnhY,1445
202
+ rasa/cli/project_templates/finance/domain/block_card.yml,sha256=U0zScEU4pKENnHt2-_TVquyMGTNoqEDmhCDKjy6k5Qw,3974
203
+ rasa/cli/project_templates/finance/domain/check_balance.yml,sha256=UuMUTIn3bA3cXAJ0dg-UaWrE3UMco4q3bTdYqQcImaI,107
204
+ rasa/cli/project_templates/finance/domain/default_actions.yml,sha256=t1b0pAwAWkEYSLB9ZqPxCiF7wxMmEk-MDtfZ9gBqCmQ,209
205
+ rasa/cli/project_templates/finance/domain/default_flows.yml,sha256=ZjgFGDRDTHr9ICp241bA2IEyNH8jwE2p0sv4erlKc0Q,1615
206
+ rasa/cli/project_templates/finance/domain/list_payees.yml,sha256=jowm8wCj-iiMTF17R-f5S8LtIIQmk5WRFw5E8ggkc2A,48
207
+ rasa/cli/project_templates/finance/domain/remove_payee.yml,sha256=OHiseEt-urNIPRez3OmY6Ev7TFifuiwjqS8N0aCvVMM,473
208
+ rasa/cli/project_templates/finance/domain/select_card.yml,sha256=eYmfmmz8QHsWJAK7YWnmf4AjyqeMSWi1srLm65B4f9s,171
209
+ rasa/cli/project_templates/finance/domain/transfer_money.yml,sha256=RUyNU3qiJBk5oyy666B0ipAUkNRd4fdJNJrYbpC8c4M,2321
210
+ rasa/cli/project_templates/finance/endpoints.yml,sha256=ltcxb1Cj2S4BFRVtzIfW1eyd4WBgMPoe3DrNphleUcw,2115
211
+ rasa/cli/project_templates/finance/prompts/command-generator.jinja2,sha256=3_vP1QthoteyHZpdGgc2Rz0Nd7PTHvH3lxbBz2WD3HQ,3529
212
+ rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2,sha256=ZVlS0Cc-jTfWjbL4_Pi3_7cH6TbbMurdG519ECSE53s,707
213
+ rasa/cli/project_templates/finance/requirements.txt,sha256=6XrSUBleE3IYDEkKov8kyNmgBtPPjMzPPGQFxENOg5o,14
79
214
  rasa/cli/project_templates/plain/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
215
  rasa/cli/project_templates/plain/config.yml,sha256=bmJ5X9nnuD2knwClniM9EFh11wstAbVvMvFR7nv-U2g,390
81
216
  rasa/cli/project_templates/plain/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
82
217
  rasa/cli/project_templates/plain/data/patterns/pattern_session_start.yml,sha256=m7Kyo738_25JeGM_HbvjOrNMQXCdGpaSlSVCicD1S28,175
83
218
  rasa/cli/project_templates/plain/domain.yml,sha256=fbHtsIff5tlBZ7bwj2NYDJ9_IAHvdKua1mKbiPIWjJE,124
84
219
  rasa/cli/project_templates/plain/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
85
- rasa/cli/project_templates/teleco/actions/actions_billing.py,sha256=zUxN7mIbwnSNfGvmM-mr2b7vKDLibeYka72gbpu3hlU,5290
86
- rasa/cli/project_templates/teleco/actions/actions_get_data_from_db.py,sha256=THI-VZKBw1uYF7YeqGdoFv5ME7jjGYDzPE-kah2DX2M,861
87
- rasa/cli/project_templates/teleco/actions/actions_run_diagnostics.py,sha256=V1QqtTPZTWlkqExOqmLBqvzm-yIPPx-T9pc950SLvdk,739
88
- rasa/cli/project_templates/teleco/actions/actions_session_start.py,sha256=j14ItwzwQt_qQcEAcDD1Xh_MxKXTCI0v3bP0q2RjyjY,309
89
- rasa/cli/project_templates/teleco/config.yml,sha256=W52rQO0RxWLarRcZXtdT8RdAuWxxkQ0zio1XKiw9HTQ,577
90
- rasa/cli/project_templates/teleco/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
91
- rasa/cli/project_templates/teleco/csvs/billing.csv,sha256=ffhfRiMVnpVoZOhpUhTpiU2LHKRHgMNDzMV1mnffCC4,278
92
- rasa/cli/project_templates/teleco/csvs/customers.csv,sha256=ZOsH7gUooq_l09QKoZsEQwoGWcaozdfJYigcwNE1ipM,109
93
- rasa/cli/project_templates/teleco/data/flows/flow_global.yml,sha256=YGlDpgM6uzC93mwzJMCSaAsVUOFY3TpOjIjAcFMfM8s,209
94
- rasa/cli/project_templates/teleco/data/flows/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
95
- rasa/cli/project_templates/teleco/data/flows/flow_reset_router.yml,sha256=IFp8WSVclHQKQlM7dJphKBtRcIGXO_l4CmvTvvuGG8A,258
96
- rasa/cli/project_templates/teleco/data/flows/flow_solve_internet_issue.yml,sha256=IhJfXTHhLDGjCkEwQRT1NkLsOupKTcrIY-liqSc9WoI,4025
97
- rasa/cli/project_templates/teleco/data/flows/flow_undertand_bill.yml,sha256=8MQAu5KiIz4kDXLgeusU11uJQIzNdJ73U18QBUxvxFo,2275
98
- rasa/cli/project_templates/teleco/data/patterns/pattern_completed.yml,sha256=PgL2r2Gwu_GwLzFAH1t6-3XYwLCeGFKi_yIkxBRZV-s,372
99
- rasa/cli/project_templates/teleco/data/patterns/pattern_human_handoff.yml,sha256=J3KdWxx0EqQzVUu5ZG3PTDxZRikPnkuwoS4WppIFkxw,243
100
- rasa/cli/project_templates/teleco/data/patterns/pattern_search.yml,sha256=o6QSBlX6dAoQuRkMbB5YeT9UahEEuDxu_wQd_1YSRwE,484
101
- rasa/cli/project_templates/teleco/data/patterns/pattern_session_start.yml,sha256=IQKATa7b9buY5rigCJVh5d4HOSYoMpFagreb4fv-jJE,325
102
- rasa/cli/project_templates/teleco/docs/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
103
- rasa/cli/project_templates/teleco/docs/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
104
- rasa/cli/project_templates/teleco/docs/run_speed_test.txt,sha256=VTVPiH0G1Tf-f42yetkl5_LyJB5D9e6-Ean0EZzm3dI,627
105
- rasa/cli/project_templates/teleco/domain/domain_global.yml,sha256=c6ojIwqZm7d-aZh4VPkhOav9XOdi7jmEjmp4QntgaAw,809
106
- rasa/cli/project_templates/teleco/domain/domain_patterns.yml,sha256=-Y1wKEu0KCF3YUSHmHGWgerAv49B90jECskWnnfa-S0,708
107
- rasa/cli/project_templates/teleco/domain/domain_reboot_router.yml,sha256=tLhlVDQGwRnK_4D_PgZinrF00vKnRfrWwz-kgnBA9GU,440
108
- rasa/cli/project_templates/teleco/domain/domain_reset_router.yml,sha256=g1pAM5N8S6A18sD2kNePkbDpllgsI9YyU8DMitCyFsE,412
109
- rasa/cli/project_templates/teleco/domain/domain_run_speed_test.yml,sha256=ECdBaP9cXWrQTmLAJB9HLf8Km3ZMrIysjtRmksXK5pg,492
110
- rasa/cli/project_templates/teleco/domain/domain_solve_internet_issue.yml,sha256=mxoWE0J-JEYF8IZXucdkanh7AvXQqiD_J_sfaLf88lc,2761
111
- rasa/cli/project_templates/teleco/domain/domain_undertand_bill.yml,sha256=-KYKDbqew12esbmHzAgGXr5epitsgNhNCfxy9HSnCeA,2331
112
- rasa/cli/project_templates/teleco/endpoints.yml,sha256=hy8eLiBAkoj9OK2N2Cb7UPiM6TX6GvFey0gmZLLzkxE,2034
113
- rasa/cli/project_templates/teleco/prompts/command-generator.jinja2,sha256=3_vP1QthoteyHZpdGgc2Rz0Nd7PTHvH3lxbBz2WD3HQ,3529
114
- rasa/cli/project_templates/teleco/tests/e2e_results_failed.yml,sha256=R2GZsKp1cuEiT9oQQ36nK5dcvAzOVTnGScRJYCrJC-k,7523
115
- rasa/cli/project_templates/teleco/tests/e2e_results_passed.yml,sha256=hRqqd4iOlHPNuiErEtiRyb_-XwDgyh3AGlJysVLKjl8,4752
116
- rasa/cli/project_templates/teleco/tests/e2e_test_cases/billing_test_cases.yml,sha256=v_pKl8imWKpqSTj-lmbJci6vIw0-o3CTlxy-4ozpG40,2456
117
- rasa/cli/project_templates/teleco/tests/e2e_test_cases/global_test_cases.yml,sha256=ZCG2zKXyFIoy3VaCcmrdr90WJGqtS0zDwDUXwHI-j20,467
118
- rasa/cli/project_templates/teleco/tests/e2e_test_cases/internet_slow_test_case.yml,sha256=-KJnfEQXiCGit3N_H8tZBW5tzYpAk1pZPzqay2GySy8,1823
119
- rasa/cli/project_templates/teleco/tests/e2e_test_cases/out_of_scope_test_case.yml,sha256=-oGwHJsiKKSMNQ0I2y6Sg-cvYiTaFLPrfF03GaIHy-Y,1060
120
- rasa/cli/project_templates/teleco/tests/e2e_test_cases/patterns_test_cases.yml,sha256=eZGIPq--nctYJDckjxvJKl3Zvd0f-3XSIvsV2Y8aL9A,1251
220
+ rasa/cli/project_templates/telco/actions/actions_billing.py,sha256=zUxN7mIbwnSNfGvmM-mr2b7vKDLibeYka72gbpu3hlU,5290
221
+ rasa/cli/project_templates/telco/actions/actions_get_data_from_db.py,sha256=THI-VZKBw1uYF7YeqGdoFv5ME7jjGYDzPE-kah2DX2M,861
222
+ rasa/cli/project_templates/telco/actions/actions_run_diagnostics.py,sha256=V1QqtTPZTWlkqExOqmLBqvzm-yIPPx-T9pc950SLvdk,739
223
+ rasa/cli/project_templates/telco/actions/actions_session_start.py,sha256=j14ItwzwQt_qQcEAcDD1Xh_MxKXTCI0v3bP0q2RjyjY,309
224
+ rasa/cli/project_templates/telco/config.yml,sha256=W52rQO0RxWLarRcZXtdT8RdAuWxxkQ0zio1XKiw9HTQ,577
225
+ rasa/cli/project_templates/telco/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
226
+ rasa/cli/project_templates/telco/csvs/billing.csv,sha256=ffhfRiMVnpVoZOhpUhTpiU2LHKRHgMNDzMV1mnffCC4,278
227
+ rasa/cli/project_templates/telco/csvs/customers.csv,sha256=ZOsH7gUooq_l09QKoZsEQwoGWcaozdfJYigcwNE1ipM,109
228
+ rasa/cli/project_templates/telco/data/flows/flow_global.yml,sha256=YGlDpgM6uzC93mwzJMCSaAsVUOFY3TpOjIjAcFMfM8s,209
229
+ rasa/cli/project_templates/telco/data/flows/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
230
+ rasa/cli/project_templates/telco/data/flows/flow_reset_router.yml,sha256=IFp8WSVclHQKQlM7dJphKBtRcIGXO_l4CmvTvvuGG8A,258
231
+ rasa/cli/project_templates/telco/data/flows/flow_solve_internet_issue.yml,sha256=IhJfXTHhLDGjCkEwQRT1NkLsOupKTcrIY-liqSc9WoI,4025
232
+ rasa/cli/project_templates/telco/data/flows/flow_undertand_bill.yml,sha256=8MQAu5KiIz4kDXLgeusU11uJQIzNdJ73U18QBUxvxFo,2275
233
+ rasa/cli/project_templates/telco/data/patterns/pattern_completed.yml,sha256=PgL2r2Gwu_GwLzFAH1t6-3XYwLCeGFKi_yIkxBRZV-s,372
234
+ rasa/cli/project_templates/telco/data/patterns/pattern_human_handoff.yml,sha256=J3KdWxx0EqQzVUu5ZG3PTDxZRikPnkuwoS4WppIFkxw,243
235
+ rasa/cli/project_templates/telco/data/patterns/pattern_search.yml,sha256=o6QSBlX6dAoQuRkMbB5YeT9UahEEuDxu_wQd_1YSRwE,484
236
+ rasa/cli/project_templates/telco/data/patterns/pattern_session_start.yml,sha256=IQKATa7b9buY5rigCJVh5d4HOSYoMpFagreb4fv-jJE,325
237
+ rasa/cli/project_templates/telco/docs/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
238
+ rasa/cli/project_templates/telco/docs/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
239
+ rasa/cli/project_templates/telco/docs/run_speed_test.txt,sha256=VTVPiH0G1Tf-f42yetkl5_LyJB5D9e6-Ean0EZzm3dI,627
240
+ rasa/cli/project_templates/telco/domain/domain_global.yml,sha256=c6ojIwqZm7d-aZh4VPkhOav9XOdi7jmEjmp4QntgaAw,809
241
+ rasa/cli/project_templates/telco/domain/domain_patterns.yml,sha256=-Y1wKEu0KCF3YUSHmHGWgerAv49B90jECskWnnfa-S0,708
242
+ rasa/cli/project_templates/telco/domain/domain_reboot_router.yml,sha256=tLhlVDQGwRnK_4D_PgZinrF00vKnRfrWwz-kgnBA9GU,440
243
+ rasa/cli/project_templates/telco/domain/domain_reset_router.yml,sha256=g1pAM5N8S6A18sD2kNePkbDpllgsI9YyU8DMitCyFsE,412
244
+ rasa/cli/project_templates/telco/domain/domain_run_speed_test.yml,sha256=ECdBaP9cXWrQTmLAJB9HLf8Km3ZMrIysjtRmksXK5pg,492
245
+ rasa/cli/project_templates/telco/domain/domain_solve_internet_issue.yml,sha256=mxoWE0J-JEYF8IZXucdkanh7AvXQqiD_J_sfaLf88lc,2761
246
+ rasa/cli/project_templates/telco/domain/domain_undertand_bill.yml,sha256=-KYKDbqew12esbmHzAgGXr5epitsgNhNCfxy9HSnCeA,2331
247
+ rasa/cli/project_templates/telco/endpoints.yml,sha256=hy8eLiBAkoj9OK2N2Cb7UPiM6TX6GvFey0gmZLLzkxE,2034
248
+ rasa/cli/project_templates/telco/prompts/command-generator.jinja2,sha256=3_vP1QthoteyHZpdGgc2Rz0Nd7PTHvH3lxbBz2WD3HQ,3529
249
+ rasa/cli/project_templates/telco/tests/e2e_results_failed.yml,sha256=R2GZsKp1cuEiT9oQQ36nK5dcvAzOVTnGScRJYCrJC-k,7523
250
+ rasa/cli/project_templates/telco/tests/e2e_results_passed.yml,sha256=hRqqd4iOlHPNuiErEtiRyb_-XwDgyh3AGlJysVLKjl8,4752
251
+ rasa/cli/project_templates/telco/tests/e2e_test_cases/billing_test_cases.yml,sha256=v_pKl8imWKpqSTj-lmbJci6vIw0-o3CTlxy-4ozpG40,2456
252
+ rasa/cli/project_templates/telco/tests/e2e_test_cases/global_test_cases.yml,sha256=ZCG2zKXyFIoy3VaCcmrdr90WJGqtS0zDwDUXwHI-j20,467
253
+ rasa/cli/project_templates/telco/tests/e2e_test_cases/internet_slow_test_case.yml,sha256=-KJnfEQXiCGit3N_H8tZBW5tzYpAk1pZPzqay2GySy8,1823
254
+ rasa/cli/project_templates/telco/tests/e2e_test_cases/out_of_scope_test_case.yml,sha256=-oGwHJsiKKSMNQ0I2y6Sg-cvYiTaFLPrfF03GaIHy-Y,1060
255
+ rasa/cli/project_templates/telco/tests/e2e_test_cases/patterns_test_cases.yml,sha256=eZGIPq--nctYJDckjxvJKl3Zvd0f-3XSIvsV2Y8aL9A,1251
121
256
  rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
257
  rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
123
258
  rasa/cli/project_templates/tutorial/config.yml,sha256=3kqcjn_S1lITvgkH1pPECSZPxsjtsnOS5B5RdebJCv8,232
@@ -127,7 +262,7 @@ rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHN
127
262
  rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
128
263
  rasa/cli/project_templates/tutorial/endpoints.yml,sha256=ZZfchpZLo5MObU5JVXPqBi8KrKe8gzsZskSDAjpfS9E,1788
129
264
  rasa/cli/run.py,sha256=QnmVCXORZambJzee1z3wMa3Ki8cPwSsImgQ2hbvbpuU,4632
130
- rasa/cli/scaffold.py,sha256=oZ3CZaUWAHOTkq4IAjupF6Xm2d-QwXcedk_yER4RetQ,8669
265
+ rasa/cli/scaffold.py,sha256=pDtpXoCIba___Mt92we-gzKPiNRq_F4FkSOXs-50qMM,8667
131
266
  rasa/cli/shell.py,sha256=YTXn3_iDWJySY187BEJTRDxPoG-mqRtl17jqwqQ6hX4,4332
132
267
  rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
268
  rasa/cli/studio/download.py,sha256=5uLdnW60JQ1NkUcJfK_be2pKjVOtYzCCjNAQpfGkYnM,1163
@@ -914,9 +1049,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
914
1049
  rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
915
1050
  rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
916
1051
  rasa/validator.py,sha256=IRhLfcgCpps0wSpokOvUGNaY8t8GsmeSmPOUVRKeOeE,83087
917
- rasa/version.py,sha256=3KTcqlQoG0c6SVW-NYdMACdm_-PCp_G2ofOE9_d73LA,119
918
- rasa_pro-3.13.1a5.dist-info/METADATA,sha256=IyIOXEJsdORAlTiLymRAmr1ztpfr14pSq9N8Chq5R8U,10555
919
- rasa_pro-3.13.1a5.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
920
- rasa_pro-3.13.1a5.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
921
- rasa_pro-3.13.1a5.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
922
- rasa_pro-3.13.1a5.dist-info/RECORD,,
1052
+ rasa/version.py,sha256=O5kVK32yF4_TDRSp9uA7LLlg1Z5kQUJcoDIciqY0r0o,119
1053
+ rasa_pro-3.13.1a6.dist-info/METADATA,sha256=adoiu4iozzz5wv3QJsdJTKJBwvhLCEjZF_GSM1xbRH4,10555
1054
+ rasa_pro-3.13.1a6.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
1055
+ rasa_pro-3.13.1a6.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
1056
+ rasa_pro-3.13.1a6.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
1057
+ rasa_pro-3.13.1a6.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- version: "3.1"
2
-
3
- responses:
4
- utter_greet:
5
- - text: "Hello! Welcome to your finance assistant. How can I help you today?"
6
- utter_transfer_money:
7
- - text: "I'm sorry, I can't transfer money between accounts."
File without changes