rasa-pro 3.13.1a5__py3-none-any.whl → 3.13.1a7__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/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 +276 -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/rephraser_demo_personality_prompt.jinja2 +19 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/cancellations.yml +12 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/cannot_handle.yml +7 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/chitchat.yml +7 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/clarification.yml +9 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/completion.yml +18 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/corrections.yml +17 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/digressions.yml +32 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/human_handoff.yml +21 -0
- rasa/cli/project_templates/finance/tests/conversation_repair/skipping_collect_steps.yml +16 -0
- rasa/cli/project_templates/finance/tests/demo_scripts/main.yml +16 -0
- rasa/cli/project_templates/finance/tests/happy_paths/balance_verification.yml +15 -0
- rasa/cli/project_templates/finance/tests/happy_paths/banking_questions.yml +12 -0
- rasa/cli/project_templates/finance/tests/happy_paths/card_blocking.yml +52 -0
- rasa/cli/project_templates/finance/tests/happy_paths/money_transfer.yml +136 -0
- rasa/cli/project_templates/finance/tests/happy_paths/payee_management.yml +27 -0
- rasa/cli/project_templates/finance/tests/happy_paths/user_greeted.yml +5 -0
- rasa/cli/project_templates/plain/domain.yml +1 -1
- rasa/cli/project_templates/telco/actions/actions_billing.py +196 -0
- rasa/cli/project_templates/telco/actions/actions_get_data_from_db.py +42 -0
- rasa/cli/project_templates/telco/prompts/command-generator.jinja2 +57 -0
- rasa/cli/scaffold.py +1 -1
- rasa/core/policies/enterprise_search_policy.py +1 -1
- rasa/dialogue_understanding/generator/flow_retrieval.py +10 -9
- rasa/version.py +1 -1
- {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a7.dist-info}/METADATA +1 -1
- {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a7.dist-info}/RECORD +201 -51
- rasa/cli/project_templates/finance/domain.yml +0 -7
- rasa/cli/project_templates/teleco/actions/actions_billing.py +0 -151
- rasa/cli/project_templates/teleco/actions/actions_get_data_from_db.py +0 -27
- /rasa/cli/project_templates/{teleco → finance}/prompts/command-generator.jinja2 +0 -0
- /rasa/cli/project_templates/{teleco → telco}/actions/actions_run_diagnostics.py +0 -0
- /rasa/cli/project_templates/{teleco → telco}/actions/actions_session_start.py +0 -0
- /rasa/cli/project_templates/{teleco → telco}/config.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/credentials.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/csvs/billing.csv +0 -0
- /rasa/cli/project_templates/{teleco → telco}/csvs/customers.csv +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_global.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_reboot_router.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_reset_router.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_solve_internet_issue.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/flows/flow_undertand_bill.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_completed.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_human_handoff.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_search.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/data/patterns/pattern_session_start.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/docs/reset_vs_rboot_router.txt +0 -0
- /rasa/cli/project_templates/{teleco → telco}/docs/restart_router.txt +0 -0
- /rasa/cli/project_templates/{teleco → telco}/docs/run_speed_test.txt +0 -0
- /rasa/cli/project_templates/{teleco → telco}/domain/domain_global.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/domain/domain_patterns.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/domain/domain_reboot_router.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/domain/domain_reset_router.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/domain/domain_run_speed_test.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/domain/domain_solve_internet_issue.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/domain/domain_undertand_bill.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/endpoints.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/tests/e2e_results_failed.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/tests/e2e_results_passed.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/billing_test_cases.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/global_test_cases.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/internet_slow_test_case.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/out_of_scope_test_case.yml +0 -0
- /rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/patterns_test_cases.yml +0 -0
- {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a7.dist-info}/NOTICE +0 -0
- {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a7.dist-info}/WHEEL +0 -0
- {rasa_pro-3.13.1a5.dist-info → rasa_pro-3.13.1a7.dist-info}/entry_points.txt +0 -0
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.13.
|
|
3
|
+
Version: 3.13.1a7
|
|
4
4
|
Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
|
|
5
5
|
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
6
6
|
Author: Rasa Technologies GmbH
|
|
@@ -70,54 +70,204 @@ 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/
|
|
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=JDLWzYs9BocjxJ345GCXrUwwd-IHe3glfjtwbcfV06I,9955
|
|
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/
|
|
76
|
-
rasa/cli/project_templates/finance/
|
|
77
|
-
rasa/cli/project_templates/finance/
|
|
78
|
-
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/tests/conversation_repair/cancellations.yml,sha256=KF6p7c2NfEHYRxbNxf8mac0-L1Cq3qF1QmQGWSltYgM,477
|
|
214
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/cannot_handle.yml,sha256=zwlynIt5ChHza4Kt4dxP4kXT_Kp-atjLYwAb7GAQsnE,197
|
|
215
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/chitchat.yml,sha256=9jRIFd0hO6f4XYLrBSeLH4uTZm9DzxT7KpoCqqY7XdM,441
|
|
216
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/clarification.yml,sha256=Sti3D7vZUsx7PJka2TBOxVu1WU3_GYrZkTnZPICt76Q,296
|
|
217
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/completion.yml,sha256=n5ZfVPuxyOwXyqzuY2a1vck6Dg9qLZnKS0K3skswsz8,636
|
|
218
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/corrections.yml,sha256=g52IPCSmpaKtWNao3tFFLNILmEQYbIVBRmDnsiQFv-0,676
|
|
219
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/digressions.yml,sha256=fhfKuSej2MUoEtOVmhaA3iOwCJDK9ww3wfxz_9V2VyY,1240
|
|
220
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/human_handoff.yml,sha256=7HIA6pVcIMws1AajwPqoYp10GDcTiLQhDe-hanGiAD8,764
|
|
221
|
+
rasa/cli/project_templates/finance/tests/conversation_repair/skipping_collect_steps.yml,sha256=L2Oa-aptctOpGYLtyXzjq4-PYNxptKCg8yAPlX9QPsA,614
|
|
222
|
+
rasa/cli/project_templates/finance/tests/demo_scripts/main.yml,sha256=SZfBe8EdEkJFRpaoE8VALSRi7lmV_xicU-ugG2SkpCc,574
|
|
223
|
+
rasa/cli/project_templates/finance/tests/happy_paths/balance_verification.yml,sha256=19OhXzHIqMRkGC6Oqf9HsolUojGDgO-A4UPhMltTQIU,603
|
|
224
|
+
rasa/cli/project_templates/finance/tests/happy_paths/banking_questions.yml,sha256=8o8q9T8FNj1Llns50RbJL224JFtD8j50i8971JEtqaY,812
|
|
225
|
+
rasa/cli/project_templates/finance/tests/happy_paths/card_blocking.yml,sha256=lnwiqvzVp5im6fsWlINBca3r3z_jF_eZuxCU2DZae4U,2419
|
|
226
|
+
rasa/cli/project_templates/finance/tests/happy_paths/money_transfer.yml,sha256=is5nKqzLs8EU2_SebnHiQ6i-RGfz2oAgnjtPq8Yppxg,4818
|
|
227
|
+
rasa/cli/project_templates/finance/tests/happy_paths/payee_management.yml,sha256=JtAgVO0-qvbuVELpKPDV64HG8TEkIIz8S5we37A1J-g,914
|
|
228
|
+
rasa/cli/project_templates/finance/tests/happy_paths/user_greeted.yml,sha256=op9TrCV_0E1xfMelNvx9bWP1xPtKDQeAbtD-EXSPEq8,126
|
|
79
229
|
rasa/cli/project_templates/plain/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
230
|
rasa/cli/project_templates/plain/config.yml,sha256=bmJ5X9nnuD2knwClniM9EFh11wstAbVvMvFR7nv-U2g,390
|
|
81
231
|
rasa/cli/project_templates/plain/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
82
232
|
rasa/cli/project_templates/plain/data/patterns/pattern_session_start.yml,sha256=m7Kyo738_25JeGM_HbvjOrNMQXCdGpaSlSVCicD1S28,175
|
|
83
|
-
rasa/cli/project_templates/plain/domain.yml,sha256=
|
|
233
|
+
rasa/cli/project_templates/plain/domain.yml,sha256=6Jm8AbB3LD2KBWPKfpiW03sSFBCEW9iJfLw3Zx3msAs,171
|
|
84
234
|
rasa/cli/project_templates/plain/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
85
|
-
rasa/cli/project_templates/
|
|
86
|
-
rasa/cli/project_templates/
|
|
87
|
-
rasa/cli/project_templates/
|
|
88
|
-
rasa/cli/project_templates/
|
|
89
|
-
rasa/cli/project_templates/
|
|
90
|
-
rasa/cli/project_templates/
|
|
91
|
-
rasa/cli/project_templates/
|
|
92
|
-
rasa/cli/project_templates/
|
|
93
|
-
rasa/cli/project_templates/
|
|
94
|
-
rasa/cli/project_templates/
|
|
95
|
-
rasa/cli/project_templates/
|
|
96
|
-
rasa/cli/project_templates/
|
|
97
|
-
rasa/cli/project_templates/
|
|
98
|
-
rasa/cli/project_templates/
|
|
99
|
-
rasa/cli/project_templates/
|
|
100
|
-
rasa/cli/project_templates/
|
|
101
|
-
rasa/cli/project_templates/
|
|
102
|
-
rasa/cli/project_templates/
|
|
103
|
-
rasa/cli/project_templates/
|
|
104
|
-
rasa/cli/project_templates/
|
|
105
|
-
rasa/cli/project_templates/
|
|
106
|
-
rasa/cli/project_templates/
|
|
107
|
-
rasa/cli/project_templates/
|
|
108
|
-
rasa/cli/project_templates/
|
|
109
|
-
rasa/cli/project_templates/
|
|
110
|
-
rasa/cli/project_templates/
|
|
111
|
-
rasa/cli/project_templates/
|
|
112
|
-
rasa/cli/project_templates/
|
|
113
|
-
rasa/cli/project_templates/
|
|
114
|
-
rasa/cli/project_templates/
|
|
115
|
-
rasa/cli/project_templates/
|
|
116
|
-
rasa/cli/project_templates/
|
|
117
|
-
rasa/cli/project_templates/
|
|
118
|
-
rasa/cli/project_templates/
|
|
119
|
-
rasa/cli/project_templates/
|
|
120
|
-
rasa/cli/project_templates/
|
|
235
|
+
rasa/cli/project_templates/telco/actions/actions_billing.py,sha256=ug75b3shRrYXE1j7SDDJpe9xLx3Vo9QQ1Hku_10-NlY,7152
|
|
236
|
+
rasa/cli/project_templates/telco/actions/actions_get_data_from_db.py,sha256=4stTMHLLOMYhzYAqHxoneedg2xOeaiO0Fi5sQZJc5Sw,1401
|
|
237
|
+
rasa/cli/project_templates/telco/actions/actions_run_diagnostics.py,sha256=V1QqtTPZTWlkqExOqmLBqvzm-yIPPx-T9pc950SLvdk,739
|
|
238
|
+
rasa/cli/project_templates/telco/actions/actions_session_start.py,sha256=j14ItwzwQt_qQcEAcDD1Xh_MxKXTCI0v3bP0q2RjyjY,309
|
|
239
|
+
rasa/cli/project_templates/telco/config.yml,sha256=W52rQO0RxWLarRcZXtdT8RdAuWxxkQ0zio1XKiw9HTQ,577
|
|
240
|
+
rasa/cli/project_templates/telco/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
241
|
+
rasa/cli/project_templates/telco/csvs/billing.csv,sha256=ffhfRiMVnpVoZOhpUhTpiU2LHKRHgMNDzMV1mnffCC4,278
|
|
242
|
+
rasa/cli/project_templates/telco/csvs/customers.csv,sha256=ZOsH7gUooq_l09QKoZsEQwoGWcaozdfJYigcwNE1ipM,109
|
|
243
|
+
rasa/cli/project_templates/telco/data/flows/flow_global.yml,sha256=YGlDpgM6uzC93mwzJMCSaAsVUOFY3TpOjIjAcFMfM8s,209
|
|
244
|
+
rasa/cli/project_templates/telco/data/flows/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
|
|
245
|
+
rasa/cli/project_templates/telco/data/flows/flow_reset_router.yml,sha256=IFp8WSVclHQKQlM7dJphKBtRcIGXO_l4CmvTvvuGG8A,258
|
|
246
|
+
rasa/cli/project_templates/telco/data/flows/flow_solve_internet_issue.yml,sha256=IhJfXTHhLDGjCkEwQRT1NkLsOupKTcrIY-liqSc9WoI,4025
|
|
247
|
+
rasa/cli/project_templates/telco/data/flows/flow_undertand_bill.yml,sha256=8MQAu5KiIz4kDXLgeusU11uJQIzNdJ73U18QBUxvxFo,2275
|
|
248
|
+
rasa/cli/project_templates/telco/data/patterns/pattern_completed.yml,sha256=PgL2r2Gwu_GwLzFAH1t6-3XYwLCeGFKi_yIkxBRZV-s,372
|
|
249
|
+
rasa/cli/project_templates/telco/data/patterns/pattern_human_handoff.yml,sha256=J3KdWxx0EqQzVUu5ZG3PTDxZRikPnkuwoS4WppIFkxw,243
|
|
250
|
+
rasa/cli/project_templates/telco/data/patterns/pattern_search.yml,sha256=o6QSBlX6dAoQuRkMbB5YeT9UahEEuDxu_wQd_1YSRwE,484
|
|
251
|
+
rasa/cli/project_templates/telco/data/patterns/pattern_session_start.yml,sha256=IQKATa7b9buY5rigCJVh5d4HOSYoMpFagreb4fv-jJE,325
|
|
252
|
+
rasa/cli/project_templates/telco/docs/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
|
|
253
|
+
rasa/cli/project_templates/telco/docs/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
|
|
254
|
+
rasa/cli/project_templates/telco/docs/run_speed_test.txt,sha256=VTVPiH0G1Tf-f42yetkl5_LyJB5D9e6-Ean0EZzm3dI,627
|
|
255
|
+
rasa/cli/project_templates/telco/domain/domain_global.yml,sha256=c6ojIwqZm7d-aZh4VPkhOav9XOdi7jmEjmp4QntgaAw,809
|
|
256
|
+
rasa/cli/project_templates/telco/domain/domain_patterns.yml,sha256=-Y1wKEu0KCF3YUSHmHGWgerAv49B90jECskWnnfa-S0,708
|
|
257
|
+
rasa/cli/project_templates/telco/domain/domain_reboot_router.yml,sha256=tLhlVDQGwRnK_4D_PgZinrF00vKnRfrWwz-kgnBA9GU,440
|
|
258
|
+
rasa/cli/project_templates/telco/domain/domain_reset_router.yml,sha256=g1pAM5N8S6A18sD2kNePkbDpllgsI9YyU8DMitCyFsE,412
|
|
259
|
+
rasa/cli/project_templates/telco/domain/domain_run_speed_test.yml,sha256=ECdBaP9cXWrQTmLAJB9HLf8Km3ZMrIysjtRmksXK5pg,492
|
|
260
|
+
rasa/cli/project_templates/telco/domain/domain_solve_internet_issue.yml,sha256=mxoWE0J-JEYF8IZXucdkanh7AvXQqiD_J_sfaLf88lc,2761
|
|
261
|
+
rasa/cli/project_templates/telco/domain/domain_undertand_bill.yml,sha256=-KYKDbqew12esbmHzAgGXr5epitsgNhNCfxy9HSnCeA,2331
|
|
262
|
+
rasa/cli/project_templates/telco/endpoints.yml,sha256=hy8eLiBAkoj9OK2N2Cb7UPiM6TX6GvFey0gmZLLzkxE,2034
|
|
263
|
+
rasa/cli/project_templates/telco/prompts/command-generator.jinja2,sha256=3_vP1QthoteyHZpdGgc2Rz0Nd7PTHvH3lxbBz2WD3HQ,3529
|
|
264
|
+
rasa/cli/project_templates/telco/tests/e2e_results_failed.yml,sha256=R2GZsKp1cuEiT9oQQ36nK5dcvAzOVTnGScRJYCrJC-k,7523
|
|
265
|
+
rasa/cli/project_templates/telco/tests/e2e_results_passed.yml,sha256=hRqqd4iOlHPNuiErEtiRyb_-XwDgyh3AGlJysVLKjl8,4752
|
|
266
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/billing_test_cases.yml,sha256=v_pKl8imWKpqSTj-lmbJci6vIw0-o3CTlxy-4ozpG40,2456
|
|
267
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/global_test_cases.yml,sha256=ZCG2zKXyFIoy3VaCcmrdr90WJGqtS0zDwDUXwHI-j20,467
|
|
268
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/internet_slow_test_case.yml,sha256=-KJnfEQXiCGit3N_H8tZBW5tzYpAk1pZPzqay2GySy8,1823
|
|
269
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/out_of_scope_test_case.yml,sha256=-oGwHJsiKKSMNQ0I2y6Sg-cvYiTaFLPrfF03GaIHy-Y,1060
|
|
270
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/patterns_test_cases.yml,sha256=eZGIPq--nctYJDckjxvJKl3Zvd0f-3XSIvsV2Y8aL9A,1251
|
|
121
271
|
rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
272
|
rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
|
|
123
273
|
rasa/cli/project_templates/tutorial/config.yml,sha256=3kqcjn_S1lITvgkH1pPECSZPxsjtsnOS5B5RdebJCv8,232
|
|
@@ -127,7 +277,7 @@ rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHN
|
|
|
127
277
|
rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
|
|
128
278
|
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=ZZfchpZLo5MObU5JVXPqBi8KrKe8gzsZskSDAjpfS9E,1788
|
|
129
279
|
rasa/cli/run.py,sha256=QnmVCXORZambJzee1z3wMa3Ki8cPwSsImgQ2hbvbpuU,4632
|
|
130
|
-
rasa/cli/scaffold.py,sha256=
|
|
280
|
+
rasa/cli/scaffold.py,sha256=pDtpXoCIba___Mt92we-gzKPiNRq_F4FkSOXs-50qMM,8667
|
|
131
281
|
rasa/cli/shell.py,sha256=YTXn3_iDWJySY187BEJTRDxPoG-mqRtl17jqwqQ6hX4,4332
|
|
132
282
|
rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
283
|
rasa/cli/studio/download.py,sha256=5uLdnW60JQ1NkUcJfK_be2pKjVOtYzCCjNAQpfGkYnM,1163
|
|
@@ -387,7 +537,7 @@ rasa/core/nlg/translate.py,sha256=PBMTbIgdkhx8rhzqv6h0u5r9jqdfiVIh7u0qb363sJA,18
|
|
|
387
537
|
rasa/core/persistor.py,sha256=7LCZHAwCM-xrUI38aaJ5dkxJvLdJXWI1TEUKsBo4_EE,21295
|
|
388
538
|
rasa/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
539
|
rasa/core/policies/ensemble.py,sha256=XoHxU0jcb_io_LBOpjJffylzqtGEB7CH9ivhRyO8pDc,12960
|
|
390
|
-
rasa/core/policies/enterprise_search_policy.py,sha256=
|
|
540
|
+
rasa/core/policies/enterprise_search_policy.py,sha256=6o4KiqK_r6nNR5nJEltc0MSXemJcGqV2Dli6bxtCd2U,46872
|
|
391
541
|
rasa/core/policies/enterprise_search_policy_config.py,sha256=rTIGBrfGfe_lvsYQW1cU20tza07p_-oxFfjXhw7-phc,8644
|
|
392
542
|
rasa/core/policies/enterprise_search_prompt_template.jinja2,sha256=dCS_seyBGxMQoMsOjjvPp0dd31OSzZCJSZeev1FJK5Q,1187
|
|
393
543
|
rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256=va9rpP97dN3PKoJZOVfyuISt3cPBlb10Pqyz25RwO_Q,3294
|
|
@@ -468,7 +618,7 @@ rasa/dialogue_understanding/generator/command_parser.py,sha256=gI_VGsD4aJOQmIVlU
|
|
|
468
618
|
rasa/dialogue_understanding/generator/command_parser_validator.py,sha256=qUIaKBRhH6Q-BGOELJLRvgv3gwUf75el-kw7p0v7eWI,2293
|
|
469
619
|
rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
|
|
470
620
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
471
|
-
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=
|
|
621
|
+
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=TF0QEM7q8KpyDYIJDu0Ym6K-ObjCOw4EEUbGXdpgPvY,17732
|
|
472
622
|
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=dori1F756kxOv-VkYetGPnacTsoTYHIUt1mTqt050Qs,23585
|
|
473
623
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=z7jhIJ3W_5GFH-p15kVoWbigMIoY8fIJjc_j_uX7yxw,2581
|
|
474
624
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -914,9 +1064,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
|
|
|
914
1064
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
915
1065
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
916
1066
|
rasa/validator.py,sha256=IRhLfcgCpps0wSpokOvUGNaY8t8GsmeSmPOUVRKeOeE,83087
|
|
917
|
-
rasa/version.py,sha256=
|
|
918
|
-
rasa_pro-3.13.
|
|
919
|
-
rasa_pro-3.13.
|
|
920
|
-
rasa_pro-3.13.
|
|
921
|
-
rasa_pro-3.13.
|
|
922
|
-
rasa_pro-3.13.
|
|
1067
|
+
rasa/version.py,sha256=qitZXgzJBInAXqPOwijzZnTrGa3eqY_mwDrUjpKlN2Y,119
|
|
1068
|
+
rasa_pro-3.13.1a7.dist-info/METADATA,sha256=BAkRjK-q3FhiOCcKpvYqkth6g1cQxxncve2JTVYMW_Y,10555
|
|
1069
|
+
rasa_pro-3.13.1a7.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
1070
|
+
rasa_pro-3.13.1a7.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
1071
|
+
rasa_pro-3.13.1a7.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
1072
|
+
rasa_pro-3.13.1a7.dist-info/RECORD,,
|
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
import logging
|
|
2
|
-
from datetime import datetime
|
|
3
|
-
|
|
4
|
-
import pandas as pd
|
|
5
|
-
from rasa_sdk import Action
|
|
6
|
-
from rasa_sdk.events import SlotSet
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class ActionVerifyBillByDate(Action):
|
|
10
|
-
def name(self):
|
|
11
|
-
return "action_verify_bill_by_date"
|
|
12
|
-
|
|
13
|
-
def text_to_date(month_text):
|
|
14
|
-
try:
|
|
15
|
-
# Get the current year
|
|
16
|
-
current_year = datetime.now().year
|
|
17
|
-
|
|
18
|
-
# Combine user input with the current year
|
|
19
|
-
full_text = f"{month_text} {current_year}"
|
|
20
|
-
|
|
21
|
-
# Parse the text format (e.g., "March 2025")
|
|
22
|
-
date_obj = datetime.strptime(full_text, "%B %Y")
|
|
23
|
-
|
|
24
|
-
# Format as DD/MM/YYYY (defaults to the first day of the month)
|
|
25
|
-
formatted_date = date_obj.strftime("01/%m/%Y")
|
|
26
|
-
logging.info(f"This is an info message: formatted_date: {formatted_date}")
|
|
27
|
-
return formatted_date
|
|
28
|
-
except ValueError:
|
|
29
|
-
return "Invalid format. Please use a full month name (e.g., 'March')."
|
|
30
|
-
|
|
31
|
-
def run(self, dispatcher, tracker, domain):
|
|
32
|
-
# Load CSV file with billing data
|
|
33
|
-
df = pd.read_csv("csvs/billing.csv")
|
|
34
|
-
|
|
35
|
-
# Get customer ID and date from slots
|
|
36
|
-
customer_id = tracker.get_slot("customer_id")
|
|
37
|
-
bill_month = tracker.get_slot("bill_month")
|
|
38
|
-
# logging.info(f"This is an info message: bill_month : {bill_month}")
|
|
39
|
-
|
|
40
|
-
bill_date = ActionVerifyBillByDate.text_to_date(bill_month)
|
|
41
|
-
# logging.info(f"This is an info message: bill_month after
|
|
42
|
-
# transformation: {bill_date}")
|
|
43
|
-
|
|
44
|
-
if not customer_id:
|
|
45
|
-
dispatcher.utter_message(
|
|
46
|
-
"I couldn't find your customer ID. Please provide it."
|
|
47
|
-
)
|
|
48
|
-
return []
|
|
49
|
-
|
|
50
|
-
if not bill_date:
|
|
51
|
-
dispatcher.utter_message(
|
|
52
|
-
"Please specify the date for the bill you want to check."
|
|
53
|
-
)
|
|
54
|
-
return []
|
|
55
|
-
|
|
56
|
-
# Convert date to datetime
|
|
57
|
-
df["date"] = pd.to_datetime(df["date"])
|
|
58
|
-
bill_date = pd.to_datetime(bill_date)
|
|
59
|
-
|
|
60
|
-
# Filter data for the given customer and date
|
|
61
|
-
customer_bills = df[df["customer_id"] == int(customer_id)]
|
|
62
|
-
specific_bill = customer_bills[customer_bills["date"] == bill_date]
|
|
63
|
-
|
|
64
|
-
if specific_bill.empty:
|
|
65
|
-
dispatcher.utter_message(f"No bill found for {bill_date.date()}.")
|
|
66
|
-
return []
|
|
67
|
-
|
|
68
|
-
bill_amount = specific_bill.iloc[0]["amount"]
|
|
69
|
-
average_bill = customer_bills["amount"].mean()
|
|
70
|
-
difference = bill_amount - average_bill
|
|
71
|
-
|
|
72
|
-
# Generate response
|
|
73
|
-
response = (
|
|
74
|
-
f"Your bill for {bill_month} {bill_date.date().year} is "
|
|
75
|
-
f"${bill_amount:.2f}. \n"
|
|
76
|
-
f"The average of your past bills is ${average_bill:.2f}. \n"
|
|
77
|
-
f"This bill is {'higher' if difference > 0 else 'lower'} than "
|
|
78
|
-
f"your average by ${abs(difference):.2f}."
|
|
79
|
-
)
|
|
80
|
-
|
|
81
|
-
dispatcher.utter_message(response)
|
|
82
|
-
return [
|
|
83
|
-
SlotSet("bill_amount", int(bill_amount)),
|
|
84
|
-
SlotSet("average_bill", int(average_bill)),
|
|
85
|
-
SlotSet("difference", int(difference)),
|
|
86
|
-
]
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
class ActionRecapBill(Action):
|
|
90
|
-
def name(self):
|
|
91
|
-
return "action_recap_bill"
|
|
92
|
-
|
|
93
|
-
def run(self, dispatcher, tracker, domain):
|
|
94
|
-
# Path to the CSV file (Update path if necessary)
|
|
95
|
-
csv_path = "csvs/billing.csv"
|
|
96
|
-
|
|
97
|
-
# Read the CSV
|
|
98
|
-
df = pd.read_csv(csv_path)
|
|
99
|
-
# this can be shown in the logs of your custom action, if you want
|
|
100
|
-
# the message to be displayed to the user use 'dispatcher.utter_message'
|
|
101
|
-
print(df)
|
|
102
|
-
# Get customer_id and bill_date from slots
|
|
103
|
-
customer_id = tracker.get_slot("customer_id")
|
|
104
|
-
bill_month = tracker.get_slot("bill_month")
|
|
105
|
-
# Convert date to datetime
|
|
106
|
-
df["date"] = pd.to_datetime(df["date"])
|
|
107
|
-
bill_date = ActionVerifyBillByDate.text_to_date(bill_month)
|
|
108
|
-
bill_date = pd.to_datetime(bill_date)
|
|
109
|
-
|
|
110
|
-
if not customer_id:
|
|
111
|
-
dispatcher.utter_message(
|
|
112
|
-
"I need your customer ID to fetch your bill recap."
|
|
113
|
-
)
|
|
114
|
-
return []
|
|
115
|
-
|
|
116
|
-
if not bill_date:
|
|
117
|
-
dispatcher.utter_message(
|
|
118
|
-
"I need a date to fetch your bill recap. Can you provide one?"
|
|
119
|
-
)
|
|
120
|
-
return []
|
|
121
|
-
|
|
122
|
-
# Convert customer_id to int if needed
|
|
123
|
-
try:
|
|
124
|
-
customer_id = int(customer_id)
|
|
125
|
-
except ValueError:
|
|
126
|
-
dispatcher.utter_message("Invalid customer ID format.")
|
|
127
|
-
return []
|
|
128
|
-
|
|
129
|
-
# Filter records for the given customer_id and date
|
|
130
|
-
filtered_df = df[(df["customer_id"] == customer_id)]
|
|
131
|
-
|
|
132
|
-
if filtered_df.empty:
|
|
133
|
-
dispatcher.utter_message(
|
|
134
|
-
f"No transactions found for customer {customer_id} on "
|
|
135
|
-
f"{bill_date.date().strftime('%B %Y')}."
|
|
136
|
-
)
|
|
137
|
-
return []
|
|
138
|
-
|
|
139
|
-
# Format the output
|
|
140
|
-
response1 = "Here is a summary of your costs :"
|
|
141
|
-
dispatcher.utter_message(response1)
|
|
142
|
-
response = "\n".join(
|
|
143
|
-
[
|
|
144
|
-
f"{row['date'].date()} | {row['amount']} $ | {row['source']}"
|
|
145
|
-
for _, row in filtered_df.iterrows()
|
|
146
|
-
]
|
|
147
|
-
)
|
|
148
|
-
# Send response to user
|
|
149
|
-
dispatcher.utter_message(response)
|
|
150
|
-
print("response heeere", response)
|
|
151
|
-
return []
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import pandas as pd
|
|
2
|
-
from rasa_sdk import Action
|
|
3
|
-
from rasa_sdk.events import SlotSet
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ActionGetCustomerInfo(Action):
|
|
7
|
-
def name(self):
|
|
8
|
-
return "action_get_customer_info"
|
|
9
|
-
|
|
10
|
-
def run(self, dispatcher, tracker, domain):
|
|
11
|
-
# Load CSV file
|
|
12
|
-
file_path = "csvs/customers.csv" # get information from your DBs
|
|
13
|
-
df = pd.read_csv(file_path)
|
|
14
|
-
customer_id = tracker.get_slot("customer_id")
|
|
15
|
-
|
|
16
|
-
# Filter data for the given customer ID
|
|
17
|
-
customer_info = df[df["customer_id"] == int(customer_id)]
|
|
18
|
-
|
|
19
|
-
if customer_info.empty:
|
|
20
|
-
dispatcher.utter_message("No customer found with this ID.")
|
|
21
|
-
return []
|
|
22
|
-
|
|
23
|
-
# Extract customer details
|
|
24
|
-
first_name = customer_info.iloc[0]["first_name"]
|
|
25
|
-
|
|
26
|
-
# Set the retrieved name in a slot
|
|
27
|
-
return [SlotSet("customer_first_name", first_name)]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/internet_slow_test_case.yml
RENAMED
|
File without changes
|
/rasa/cli/project_templates/{teleco → telco}/tests/e2e_test_cases/out_of_scope_test_case.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|