rasa-pro 3.13.1a4__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.
- rasa/builder/project_generator.py +6 -1
- rasa/cli/project_templates/finance/actions/__init__.py +0 -0
- rasa/cli/project_templates/finance/actions/action_add_payee.py +47 -0
- rasa/cli/project_templates/finance/actions/action_ask_account.py +50 -0
- rasa/cli/project_templates/finance/actions/action_ask_account_from.py +50 -0
- rasa/cli/project_templates/finance/actions/action_ask_card.py +47 -0
- rasa/cli/project_templates/finance/actions/action_check_balance.py +40 -0
- rasa/cli/project_templates/finance/actions/action_check_card_existence.py +35 -0
- rasa/cli/project_templates/finance/actions/action_check_payee_existence.py +40 -0
- rasa/cli/project_templates/finance/actions/action_check_sufficient_funds.py +41 -0
- rasa/cli/project_templates/finance/actions/action_list_payees.py +45 -0
- rasa/cli/project_templates/finance/actions/action_process_immediate_payment.py +18 -0
- rasa/cli/project_templates/finance/actions/action_remove_payee.py +49 -0
- rasa/cli/project_templates/finance/actions/action_schedule_payment.py +19 -0
- rasa/cli/project_templates/finance/actions/action_session_start.py +69 -0
- rasa/cli/project_templates/finance/actions/action_update_card_status.py +45 -0
- rasa/cli/project_templates/finance/actions/action_validate_payment_date.py +36 -0
- rasa/cli/project_templates/finance/actions/database.py +233 -0
- rasa/cli/project_templates/finance/config.yml +16 -1
- rasa/cli/project_templates/finance/csvs/accounts.csv +8 -0
- rasa/cli/project_templates/finance/csvs/advisors.csv +7 -0
- rasa/cli/project_templates/finance/csvs/appointments.csv +211 -0
- rasa/cli/project_templates/finance/csvs/branches.csv +10 -0
- rasa/cli/project_templates/finance/csvs/cards.csv +11 -0
- rasa/cli/project_templates/finance/csvs/payees.csv +10 -0
- rasa/cli/project_templates/finance/csvs/transactions.csv +71 -0
- rasa/cli/project_templates/finance/csvs/users.csv +4 -0
- rasa/cli/project_templates/finance/data/flows/add_payee.yml +29 -0
- rasa/cli/project_templates/finance/data/flows/block_card.yml +66 -0
- rasa/cli/project_templates/finance/data/flows/check_balance.yml +9 -0
- rasa/cli/project_templates/finance/data/flows/list_payees.yml +5 -0
- rasa/cli/project_templates/finance/data/flows/remove_payee.yml +21 -0
- rasa/cli/project_templates/finance/data/flows/select_card.yml +12 -0
- rasa/cli/project_templates/finance/data/flows/transfer_money.yml +64 -2
- rasa/cli/project_templates/finance/data/flows/welcome.yml +14 -0
- rasa/cli/project_templates/finance/data/nlu.yml +29 -0
- rasa/cli/project_templates/finance/data/patterns/pattern_chitchat.yml +7 -0
- rasa/cli/project_templates/finance/data/patterns/pattern_completed.yml +6 -0
- rasa/cli/project_templates/finance/data/patterns/pattern_search.yml +5 -0
- rasa/cli/project_templates/finance/data/patterns/pattern_session_start.yml +5 -3
- rasa/cli/project_templates/finance/data/source/accounts.json +51 -0
- rasa/cli/project_templates/finance/data/source/advisors.json +44 -0
- rasa/cli/project_templates/finance/data/source/appointments.json +1474 -0
- rasa/cli/project_templates/finance/data/source/branches.json +47 -0
- rasa/cli/project_templates/finance/data/source/cards.json +72 -0
- rasa/cli/project_templates/finance/data/source/payees.json +74 -0
- rasa/cli/project_templates/finance/data/source/transactions.json +492 -0
- rasa/cli/project_templates/finance/data/source/users.json +29 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/consequences_of_blocking_card.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/reasons_to_block_card.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/recovering_from_card_fraud.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/tips_for_card_security.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/what_to_do_if_card_is_lost.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/account_balance_security.txt +7 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/common_balance_inquiries.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/methods_to_check_balance.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/understanding_balance_updates.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/what_to_do_if_balance_is_incorrect.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/benefits_of_authorised_payees.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/common_issues_with_payees.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/general_payee_information.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/payee_management_tips.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/understanding_payee_types.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/common_transfer_errors.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/fees_for_transfers.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/general_transfer_information.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/security_tips_for_transfers.txt +8 -0
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/transfer_processing_times.txt +8 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part1.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part10.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part11.txt +48 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part12.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part13.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part14.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part15.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part16.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part17.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part18.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part19.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part2.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part20.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part21.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part22.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part23.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part24.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part25.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part26.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part27.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part28.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part29.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part3.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part30.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part31.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part32.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part33.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part34.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part35.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part36.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part37.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part38.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part39.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part4.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part40.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part41.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part42.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part43.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part44.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part45.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part46.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part47.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part48.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part49.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part5.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part50.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part51.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part52.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part53.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part54.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part55.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part56.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part57.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part58.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part59.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part6.txt +47 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part60.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part61.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part7.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part8.txt +50 -0
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part9.txt +47 -0
- rasa/cli/project_templates/finance/domain/add_payee.yml +47 -0
- rasa/cli/project_templates/finance/domain/block_card.yml +101 -0
- rasa/cli/project_templates/finance/domain/check_balance.yml +9 -0
- rasa/cli/project_templates/finance/domain/default_actions.yml +16 -0
- rasa/cli/project_templates/finance/domain/default_flows.yml +33 -0
- rasa/cli/project_templates/finance/domain/list_payees.yml +4 -0
- rasa/cli/project_templates/finance/domain/remove_payee.yml +16 -0
- rasa/cli/project_templates/finance/domain/select_card.yml +12 -0
- rasa/cli/project_templates/finance/domain/transfer_money.yml +79 -0
- rasa/cli/project_templates/finance/endpoints.yml +6 -2
- rasa/cli/project_templates/finance/prompts/command-generator.jinja2 +57 -0
- rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2 +19 -0
- rasa/cli/project_templates/finance/requirements.txt +1 -0
- rasa/cli/project_templates/plain/actions/__init__.py +0 -0
- rasa/cli/project_templates/telco/actions/actions_billing.py +151 -0
- rasa/cli/project_templates/telco/actions/actions_get_data_from_db.py +27 -0
- rasa/cli/project_templates/telco/actions/actions_run_diagnostics.py +23 -0
- rasa/cli/project_templates/telco/actions/actions_session_start.py +13 -0
- rasa/cli/project_templates/{telecom → telco}/config.yml +9 -1
- rasa/cli/project_templates/telco/csvs/billing.csv +10 -0
- rasa/cli/project_templates/telco/csvs/customers.csv +5 -0
- rasa/cli/project_templates/telco/data/flows/flow_global.yml +5 -0
- rasa/cli/project_templates/telco/data/flows/flow_reboot_router.yml +8 -0
- rasa/cli/project_templates/telco/data/flows/flow_reset_router.yml +7 -0
- rasa/cli/project_templates/telco/data/flows/flow_solve_internet_issue.yml +73 -0
- rasa/cli/project_templates/telco/data/flows/flow_undertand_bill.yml +45 -0
- rasa/cli/project_templates/telco/data/patterns/pattern_completed.yml +7 -0
- rasa/cli/project_templates/telco/data/patterns/pattern_human_handoff.yml +6 -0
- rasa/cli/project_templates/telco/data/patterns/pattern_search.yml +7 -0
- rasa/cli/project_templates/telco/data/patterns/pattern_session_start.yml +9 -0
- rasa/cli/project_templates/telco/docs/reset_vs_rboot_router.txt +1 -0
- rasa/cli/project_templates/telco/docs/restart_router.txt +6 -0
- rasa/cli/project_templates/telco/docs/run_speed_test.txt +6 -0
- rasa/cli/project_templates/telco/domain/domain_global.yml +29 -0
- rasa/cli/project_templates/telco/domain/domain_patterns.yml +17 -0
- rasa/cli/project_templates/telco/domain/domain_reboot_router.yml +20 -0
- rasa/cli/project_templates/telco/domain/domain_reset_router.yml +11 -0
- rasa/cli/project_templates/telco/domain/domain_run_speed_test.yml +24 -0
- rasa/cli/project_templates/telco/domain/domain_solve_internet_issue.yml +74 -0
- rasa/cli/project_templates/telco/domain/domain_undertand_bill.yml +102 -0
- rasa/cli/project_templates/{telecom → telco}/endpoints.yml +4 -2
- rasa/cli/project_templates/telco/prompts/command-generator.jinja2 +57 -0
- rasa/cli/project_templates/telco/tests/e2e_results_failed.yml +62 -0
- rasa/cli/project_templates/telco/tests/e2e_results_passed.yml +130 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/billing_test_cases.yml +68 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/global_test_cases.yml +13 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/internet_slow_test_case.yml +47 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/out_of_scope_test_case.yml +21 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/patterns_test_cases.yml +15 -0
- rasa/cli/scaffold.py +1 -1
- rasa/core/channels/studio_chat.py +1 -0
- rasa/version.py +1 -1
- {rasa_pro-3.13.1a4.dist-info → rasa_pro-3.13.1a6.dist-info}/METADATA +1 -1
- {rasa_pro-3.13.1a4.dist-info → rasa_pro-3.13.1a6.dist-info}/RECORD +187 -20
- rasa/cli/project_templates/finance/domain.yml +0 -7
- rasa/cli/project_templates/telecom/data/flows/upgrade_contract.yml +0 -5
- rasa/cli/project_templates/telecom/data/patterns/pattern_session_start.yml +0 -7
- rasa/cli/project_templates/telecom/domain.yml +0 -7
- /rasa/cli/project_templates/{telecom → telco}/credentials.yml +0 -0
- {rasa_pro-3.13.1a4.dist-info → rasa_pro-3.13.1a6.dist-info}/NOTICE +0 -0
- {rasa_pro-3.13.1a4.dist-info → rasa_pro-3.13.1a6.dist-info}/WHEEL +0 -0
- {rasa_pro-3.13.1a4.dist-info → rasa_pro-3.13.1a6.dist-info}/entry_points.txt +0 -0
|
@@ -13,7 +13,7 @@ rasa/builder/llm_service.py,sha256=tFtIno9V5Fq2idJ2uJt8K9b3GeO9ic2ZWWYg3rKdufw,1
|
|
|
13
13
|
rasa/builder/logging_utils.py,sha256=iPJoN2HhNlS14SKyZv0s0iIljrmP6A8s8C5btoDVOXM,1383
|
|
14
14
|
rasa/builder/main.py,sha256=M_c751NEnl14jI97WSZfL7M8BKydS1Uqzdkk20DEJsk,1587
|
|
15
15
|
rasa/builder/models.py,sha256=IFsVCTIE3cUeuwxZ0MHgB9jD8T354fPPh86bZ0QrGBg,4494
|
|
16
|
-
rasa/builder/project_generator.py,sha256=
|
|
16
|
+
rasa/builder/project_generator.py,sha256=jZ56FgwsPNJIAvd2Q8aRCgKd02xn4KlH6j2BRHWOOfQ,10351
|
|
17
17
|
rasa/builder/scrape_rasa_docs.py,sha256=HukkTCIh1rMCE8D_EtXGHy0aHtFBVrVTT_6Wpex3XQM,2428
|
|
18
18
|
rasa/builder/service.py,sha256=7PPZL-nAurjSrDmmuAXCjjjl19lPysC4zpTbzr15qfc,15955
|
|
19
19
|
rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
|
|
@@ -69,23 +69,190 @@ rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact.ym
|
|
|
69
69
|
rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact_from_list.yml,sha256=5iMfRCbPpf08Jawog_fuXw-aR6nV0za0Cx60wiFwhhA,417
|
|
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
|
-
rasa/cli/project_templates/finance/
|
|
72
|
+
rasa/cli/project_templates/finance/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
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
|
|
73
90
|
rasa/cli/project_templates/finance/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
74
|
-
rasa/cli/project_templates/finance/
|
|
75
|
-
rasa/cli/project_templates/finance/
|
|
76
|
-
rasa/cli/project_templates/finance/
|
|
77
|
-
rasa/cli/project_templates/finance/
|
|
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
|
|
214
|
+
rasa/cli/project_templates/plain/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
215
|
rasa/cli/project_templates/plain/config.yml,sha256=bmJ5X9nnuD2knwClniM9EFh11wstAbVvMvFR7nv-U2g,390
|
|
79
216
|
rasa/cli/project_templates/plain/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
80
217
|
rasa/cli/project_templates/plain/data/patterns/pattern_session_start.yml,sha256=m7Kyo738_25JeGM_HbvjOrNMQXCdGpaSlSVCicD1S28,175
|
|
81
218
|
rasa/cli/project_templates/plain/domain.yml,sha256=fbHtsIff5tlBZ7bwj2NYDJ9_IAHvdKua1mKbiPIWjJE,124
|
|
82
219
|
rasa/cli/project_templates/plain/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
83
|
-
rasa/cli/project_templates/
|
|
84
|
-
rasa/cli/project_templates/
|
|
85
|
-
rasa/cli/project_templates/
|
|
86
|
-
rasa/cli/project_templates/
|
|
87
|
-
rasa/cli/project_templates/
|
|
88
|
-
rasa/cli/project_templates/
|
|
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
|
|
89
256
|
rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
257
|
rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
|
|
91
258
|
rasa/cli/project_templates/tutorial/config.yml,sha256=3kqcjn_S1lITvgkH1pPECSZPxsjtsnOS5B5RdebJCv8,232
|
|
@@ -95,7 +262,7 @@ rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHN
|
|
|
95
262
|
rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
|
|
96
263
|
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=ZZfchpZLo5MObU5JVXPqBi8KrKe8gzsZskSDAjpfS9E,1788
|
|
97
264
|
rasa/cli/run.py,sha256=QnmVCXORZambJzee1z3wMa3Ki8cPwSsImgQ2hbvbpuU,4632
|
|
98
|
-
rasa/cli/scaffold.py,sha256=
|
|
265
|
+
rasa/cli/scaffold.py,sha256=pDtpXoCIba___Mt92we-gzKPiNRq_F4FkSOXs-50qMM,8667
|
|
99
266
|
rasa/cli/shell.py,sha256=YTXn3_iDWJySY187BEJTRDxPoG-mqRtl17jqwqQ6hX4,4332
|
|
100
267
|
rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
268
|
rasa/cli/studio/download.py,sha256=5uLdnW60JQ1NkUcJfK_be2pKjVOtYzCCjNAQpfGkYnM,1163
|
|
@@ -288,7 +455,7 @@ rasa/core/channels/rest.py,sha256=LWBYBdVzOz5Vv5tZCkB1QA7LxXJFTeC87CQLAi_ZGeI,73
|
|
|
288
455
|
rasa/core/channels/rocketchat.py,sha256=hajaH6549CjEYFM5jSapw1DQKBPKTXbn7cVSuZzknmI,5999
|
|
289
456
|
rasa/core/channels/slack.py,sha256=jVsTTUu9wUjukPoIsAhbee9o0QFUMCNlQHbR8LTcMBc,24406
|
|
290
457
|
rasa/core/channels/socketio.py,sha256=ZEavmx2on9AH73cuIFSGMKn1LHJhzcQVaqrFz7SH-CE,11348
|
|
291
|
-
rasa/core/channels/studio_chat.py,sha256
|
|
458
|
+
rasa/core/channels/studio_chat.py,sha256=-CXmv-XDndanmO1xvOY06eUOJBBzBop5-Glf33FIpSc,20070
|
|
292
459
|
rasa/core/channels/telegram.py,sha256=TKVknsk3U9tYeY1a8bzlhqkltWmZfGSOvrcmwa9qozc,12499
|
|
293
460
|
rasa/core/channels/twilio.py,sha256=2BTQpyx0b0yPpc0A2BHYfxLPgodrLGLs8nq6i3lVGAM,5906
|
|
294
461
|
rasa/core/channels/vier_cvg.py,sha256=5O4yx0TDQIMppvlCxTOzmPB60CA-vqQXqWQ7upfrTO0,13496
|
|
@@ -882,9 +1049,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
|
|
|
882
1049
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
883
1050
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
884
1051
|
rasa/validator.py,sha256=IRhLfcgCpps0wSpokOvUGNaY8t8GsmeSmPOUVRKeOeE,83087
|
|
885
|
-
rasa/version.py,sha256=
|
|
886
|
-
rasa_pro-3.13.
|
|
887
|
-
rasa_pro-3.13.
|
|
888
|
-
rasa_pro-3.13.
|
|
889
|
-
rasa_pro-3.13.
|
|
890
|
-
rasa_pro-3.13.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|