rasa-pro 3.14.0.dev20250825__py3-none-any.whl → 3.14.0.dev20250901__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/README.md +120 -0
- rasa/builder/__init__.py +0 -0
- rasa/builder/auth.py +176 -0
- rasa/builder/config.py +91 -0
- rasa/builder/copilot/__init__.py +0 -0
- rasa/builder/copilot/constants.py +28 -0
- rasa/builder/copilot/copilot.py +376 -0
- rasa/builder/copilot/copilot_response_handler.py +522 -0
- rasa/builder/copilot/copilot_templated_message_provider.py +58 -0
- rasa/builder/copilot/exceptions.py +32 -0
- rasa/builder/copilot/models.py +464 -0
- rasa/builder/copilot/prompts/__init__.py +0 -0
- rasa/builder/copilot/prompts/copilot_system_prompt.jinja2 +771 -0
- rasa/builder/copilot/signing.py +305 -0
- rasa/builder/copilot/telemetry.py +200 -0
- rasa/builder/copilot/templated_messages/__init__.py +0 -0
- rasa/builder/copilot/templated_messages/copilot_internal_messages_templates.yml +16 -0
- rasa/builder/copilot/templated_messages/copilot_templated_responses.yml +38 -0
- rasa/builder/document_retrieval/__init__.py +0 -0
- rasa/builder/document_retrieval/constants.py +15 -0
- rasa/builder/document_retrieval/inkeep-rag-response-schema.json +64 -0
- rasa/builder/document_retrieval/inkeep_document_retrieval.py +238 -0
- rasa/builder/document_retrieval/models.py +62 -0
- rasa/builder/download.py +147 -0
- rasa/builder/exceptions.py +91 -0
- rasa/builder/guardrails/__init__.py +1 -0
- rasa/builder/guardrails/constants.py +9 -0
- rasa/builder/guardrails/exceptions.py +4 -0
- rasa/builder/guardrails/lakera.py +206 -0
- rasa/builder/guardrails/models.py +231 -0
- rasa/builder/guardrails/store.py +238 -0
- rasa/builder/guardrails/utils.py +328 -0
- rasa/builder/job_manager.py +87 -0
- rasa/builder/jobs.py +270 -0
- rasa/builder/llm_service.py +246 -0
- rasa/builder/logging_utils.py +265 -0
- rasa/builder/main.py +258 -0
- rasa/builder/models.py +216 -0
- rasa/builder/project_generator.py +462 -0
- rasa/builder/project_info.py +72 -0
- rasa/builder/scrape_rasa_docs.py +97 -0
- rasa/builder/service.py +1335 -0
- rasa/builder/shared/tracker_context.py +212 -0
- rasa/builder/skill_to_bot_prompt.jinja2 +164 -0
- rasa/builder/training_service.py +124 -0
- rasa/builder/validation_service.py +97 -0
- rasa/cli/project_templates/basic/actions/__init__ +0 -0
- rasa/cli/project_templates/basic/actions/action_human_handoff.py +40 -0
- rasa/cli/project_templates/basic/config.yml +27 -0
- rasa/cli/project_templates/basic/credentials.yml +33 -0
- rasa/cli/project_templates/basic/data/data.md +9 -0
- rasa/cli/project_templates/basic/data/general/feedback.yml +21 -0
- rasa/cli/project_templates/basic/data/general/goodbye.yml +6 -0
- rasa/cli/project_templates/basic/data/general/hello.yml +6 -0
- rasa/cli/project_templates/basic/data/general/help.yml +6 -0
- rasa/cli/project_templates/basic/data/general/human_handoff.yml +16 -0
- rasa/cli/project_templates/basic/data/general/show_faqs.yml +6 -0
- rasa/cli/project_templates/basic/data/system/patterns/pattern_cannot_handle.yml +7 -0
- rasa/cli/project_templates/basic/data/system/patterns/pattern_completed.yml +7 -0
- rasa/cli/project_templates/basic/data/system/patterns/pattern_correction.yml +7 -0
- rasa/cli/project_templates/basic/data/system/patterns/pattern_search.yml +8 -0
- rasa/cli/project_templates/basic/data/system/patterns/pattern_session_start.yml +8 -0
- rasa/cli/project_templates/basic/docs/docs.md +5 -0
- rasa/cli/project_templates/basic/docs/template.txt +28 -0
- rasa/cli/project_templates/basic/domain/domain.md +9 -0
- rasa/cli/project_templates/basic/domain/general/feedback.yml +25 -0
- rasa/cli/project_templates/basic/domain/general/goodbye.yml +9 -0
- rasa/cli/project_templates/basic/domain/general/hello.yml +7 -0
- rasa/cli/project_templates/basic/domain/general/help.yml +21 -0
- rasa/cli/project_templates/basic/domain/general/human_handoff.yml +32 -0
- rasa/cli/project_templates/basic/domain/general/show_faqs.yml +14 -0
- rasa/cli/project_templates/basic/domain/system/patterns/pattern_cannot_handle.yml +5 -0
- rasa/cli/project_templates/basic/domain/system/patterns/pattern_session_start.yml +19 -0
- rasa/cli/project_templates/basic/endpoints.yml +63 -0
- rasa/cli/project_templates/basic/prompts/rephraser_demo_personality_prompt.jinja2 +38 -0
- rasa/cli/project_templates/finance/actions/__init__.py +46 -0
- rasa/cli/project_templates/finance/actions/accounts/__init__.py +0 -0
- rasa/cli/project_templates/finance/actions/accounts/action_ask_account.py +47 -0
- rasa/cli/project_templates/finance/actions/accounts/action_check_balance.py +40 -0
- rasa/cli/project_templates/finance/actions/action_session_start.py +74 -0
- rasa/cli/project_templates/finance/actions/cards/__init__.py +0 -0
- rasa/cli/project_templates/finance/actions/cards/action_ask_card.py +48 -0
- rasa/cli/project_templates/finance/actions/cards/action_check_card_existence.py +36 -0
- rasa/cli/project_templates/finance/actions/cards/action_update_card_status.py +54 -0
- rasa/cli/project_templates/finance/actions/database.py +277 -0
- rasa/cli/project_templates/finance/actions/transfers/__init__.py +0 -0
- rasa/cli/project_templates/finance/actions/transfers/action_add_payee.py +52 -0
- rasa/cli/project_templates/finance/actions/transfers/action_ask_account_from.py +51 -0
- rasa/cli/project_templates/finance/actions/transfers/action_check_payee_existence.py +40 -0
- rasa/cli/project_templates/finance/actions/transfers/action_check_sufficient_funds.py +40 -0
- rasa/cli/project_templates/finance/actions/transfers/action_list_payees.py +46 -0
- rasa/cli/project_templates/finance/actions/transfers/action_process_immediate_payment.py +18 -0
- rasa/cli/project_templates/finance/actions/transfers/action_remove_payee.py +49 -0
- rasa/cli/project_templates/finance/actions/transfers/action_schedule_payment.py +19 -0
- rasa/cli/project_templates/finance/actions/transfers/action_validate_payment_date.py +36 -0
- rasa/cli/project_templates/finance/config.yml +21 -0
- rasa/cli/project_templates/finance/credentials.yml +32 -0
- 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 +11 -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/accounts/check_balance.yml +10 -0
- rasa/cli/project_templates/finance/data/cards/block_card.yml +66 -0
- rasa/cli/project_templates/finance/data/cards/select_card.yml +12 -0
- rasa/cli/project_templates/finance/data/general/bot_identity.yml +6 -0
- rasa/cli/project_templates/finance/data/general/feedback.yml +20 -0
- rasa/cli/project_templates/finance/data/general/goodbye.yml +6 -0
- rasa/cli/project_templates/finance/data/general/hello.yml +7 -0
- rasa/cli/project_templates/finance/data/general/help.yml +9 -0
- rasa/cli/project_templates/finance/data/general/human_handoff.yml +16 -0
- rasa/cli/project_templates/finance/data/general/welcome.yml +9 -0
- rasa/cli/project_templates/finance/data/system/patterns/pattern_chitchat.yml +5 -0
- rasa/cli/project_templates/finance/data/system/patterns/pattern_completed.yml +7 -0
- rasa/cli/project_templates/finance/data/system/patterns/pattern_correction.yml +7 -0
- rasa/cli/project_templates/finance/data/system/patterns/pattern_search.yml +8 -0
- rasa/cli/project_templates/finance/data/system/patterns/pattern_session_start.yml +8 -0
- rasa/cli/project_templates/finance/data/system/source/accounts.json +51 -0
- rasa/cli/project_templates/finance/data/system/source/advisors.json +44 -0
- rasa/cli/project_templates/finance/data/system/source/appointments.json +1474 -0
- rasa/cli/project_templates/finance/data/system/source/branches.json +47 -0
- rasa/cli/project_templates/finance/data/system/source/cards.json +72 -0
- rasa/cli/project_templates/finance/data/system/source/payees.json +74 -0
- rasa/cli/project_templates/finance/data/system/source/transactions.json +492 -0
- rasa/cli/project_templates/finance/data/system/source/users.json +29 -0
- rasa/cli/project_templates/finance/data/transfers/add_payee.yml +29 -0
- rasa/cli/project_templates/finance/data/transfers/list_payees.yml +5 -0
- rasa/cli/project_templates/finance/data/transfers/remove_payee.yml +21 -0
- rasa/cli/project_templates/finance/data/transfers/transfer_money.yml +67 -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/accounts/check_balance.yml +11 -0
- rasa/cli/project_templates/finance/domain/cards/block_card.yml +101 -0
- rasa/cli/project_templates/finance/domain/cards/select_card.yml +12 -0
- rasa/cli/project_templates/finance/domain/general/assistant_details.yml +12 -0
- rasa/cli/project_templates/finance/domain/general/bot_identity.yml +5 -0
- rasa/cli/project_templates/finance/domain/general/cannot_handle.yml +5 -0
- rasa/cli/project_templates/finance/domain/general/defaults.yml +24 -0
- rasa/cli/project_templates/finance/domain/general/feedback.yml +28 -0
- rasa/cli/project_templates/finance/domain/general/goodbye.yml +7 -0
- rasa/cli/project_templates/finance/domain/general/help.yml +5 -0
- rasa/cli/project_templates/finance/domain/general/human_handoff.yml +30 -0
- rasa/cli/project_templates/finance/domain/general/utils.yml +13 -0
- rasa/cli/project_templates/finance/domain/general/welcome.yml +8 -0
- rasa/cli/project_templates/finance/domain/transfers/add_payee.yml +47 -0
- rasa/cli/project_templates/finance/domain/transfers/list_payees.yml +4 -0
- rasa/cli/project_templates/finance/domain/transfers/remove_payee.yml +16 -0
- rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml +79 -0
- rasa/cli/project_templates/finance/endpoints.yml +63 -0
- rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2 +19 -0
- rasa/cli/project_templates/telco/actions/__init__.py +0 -0
- rasa/cli/project_templates/telco/actions/billing/__init__.py +0 -0
- rasa/cli/project_templates/telco/actions/billing/actions_billing.py +204 -0
- rasa/cli/project_templates/telco/actions/general/__init__.py +0 -0
- rasa/cli/project_templates/telco/actions/general/action_human_handoff.py +49 -0
- rasa/cli/project_templates/telco/actions/network/__init__.py +0 -0
- rasa/cli/project_templates/telco/actions/network/actions_get_data_from_db.py +48 -0
- rasa/cli/project_templates/telco/actions/network/actions_run_diagnostics.py +28 -0
- rasa/cli/project_templates/telco/actions/network/actions_session_start.py +18 -0
- rasa/cli/project_templates/telco/config.yml +27 -0
- rasa/cli/project_templates/telco/credentials.yml +33 -0
- rasa/cli/project_templates/telco/csvs/billing.csv +19 -0
- rasa/cli/project_templates/telco/csvs/customers.csv +5 -0
- rasa/cli/project_templates/telco/data/billing/flow_understand_bill.yml +45 -0
- rasa/cli/project_templates/telco/data/general/bot_challenge.yml +6 -0
- rasa/cli/project_templates/telco/data/general/feedback.yml +20 -0
- rasa/cli/project_templates/telco/data/general/goodbye.yml +6 -0
- rasa/cli/project_templates/telco/data/general/hello.yml +6 -0
- rasa/cli/project_templates/telco/data/general/human_handoff.yml +16 -0
- rasa/cli/project_templates/telco/data/general/patterns.yml +30 -0
- rasa/cli/project_templates/telco/data/network/flow_reboot_router.yml +8 -0
- rasa/cli/project_templates/telco/data/network/flow_reset_router.yml +7 -0
- rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml +73 -0
- rasa/cli/project_templates/telco/docs/docs.md +5 -0
- rasa/cli/project_templates/telco/docs/network/reset_vs_rboot_router.txt +1 -0
- rasa/cli/project_templates/telco/docs/network/restart_router.txt +6 -0
- rasa/cli/project_templates/telco/docs/network/run_speed_test.txt +6 -0
- rasa/cli/project_templates/telco/domain/billing/domain_undertand_bill.yml +102 -0
- rasa/cli/project_templates/telco/domain/general/bot_challenge.yml +4 -0
- rasa/cli/project_templates/telco/domain/general/feedback.yml +25 -0
- rasa/cli/project_templates/telco/domain/general/goodbye.yml +7 -0
- rasa/cli/project_templates/telco/domain/general/hello.yml +5 -0
- rasa/cli/project_templates/telco/domain/general/human_handoff.yml +29 -0
- rasa/cli/project_templates/telco/domain/general/patterns.yml +33 -0
- rasa/cli/project_templates/telco/domain/network/domain_reboot_router.yml +21 -0
- rasa/cli/project_templates/telco/domain/network/domain_reset_router.yml +12 -0
- rasa/cli/project_templates/telco/domain/network/domain_run_speed_test.yml +25 -0
- rasa/cli/project_templates/telco/domain/network/domain_solve_internet_issue.yml +75 -0
- rasa/cli/project_templates/telco/domain/shared.yml +129 -0
- rasa/cli/project_templates/telco/endpoints.yml +63 -0
- rasa/cli/project_templates/telco/prompts/rephraser_demo_personality_prompt.jinja2 +40 -0
- rasa/cli/project_templates/tutorial/config.yml +2 -1
- rasa/cli/scaffold.py +46 -2
- rasa/core/actions/action.py +0 -1
- rasa/core/channels/inspector/dist/assets/{arc-1ddec37b.js → arc-18042c22.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{blockDiagram-38ab4fdb-18af387c.js → blockDiagram-38ab4fdb-fdd6bcfa.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{c4Diagram-3d4e48cf-250127a3.js → c4Diagram-3d4e48cf-f5ae6786.js} +1 -1
- rasa/core/channels/inspector/dist/assets/channel-b9b536fc.js +1 -0
- rasa/core/channels/inspector/dist/assets/{classDiagram-70f12bd4-c3388b34.js → classDiagram-70f12bd4-81efba3e.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{classDiagram-v2-f2320105-9c893a82.js → classDiagram-v2-f2320105-3b6b6a92.js} +1 -1
- rasa/core/channels/inspector/dist/assets/clone-78d2ddcf.js +1 -0
- rasa/core/channels/inspector/dist/assets/{createText-2e5e7dd3-c111213b.js → createText-2e5e7dd3-31422447.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{edges-e0da2a9e-812a729d.js → edges-e0da2a9e-518a90db.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{erDiagram-9861fffd-fd5051bc.js → erDiagram-9861fffd-a6d3c25a.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{flowDb-956e92f1-3287ac02.js → flowDb-956e92f1-e048c2be.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{flowDiagram-66a62f08-692fb0b2.js → flowDiagram-66a62f08-c7474c91.js} +1 -1
- rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-8b09c060.js +1 -0
- rasa/core/channels/inspector/dist/assets/{flowchart-elk-definition-4a651766-008376f1.js → flowchart-elk-definition-4a651766-cb4d8723.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{ganttDiagram-c361ad54-df330a69.js → ganttDiagram-c361ad54-346636a2.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{gitGraphDiagram-72cf32ee-e03676fb.js → gitGraphDiagram-72cf32ee-7c508874.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{graph-46fad2ba.js → graph-14702d8a.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{index-3862675e-a484ac55.js → index-3862675e-f18b534b.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{index-a003633f.js → index-4d4bdf3a.js} +231 -231
- rasa/core/channels/inspector/dist/assets/{infoDiagram-f8f76790-3f9e6ec2.js → infoDiagram-f8f76790-64154b83.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{journeyDiagram-49397b02-79f72383.js → journeyDiagram-49397b02-833a5f95.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{layout-aad098e5.js → layout-5a3b2123.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{line-219ab7ae.js → line-2272a8c7.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{linear-2cddbe62.js → linear-35bcf273.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{mindmap-definition-fc14e90a-1d41ed99.js → mindmap-definition-fc14e90a-92dcb0e9.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{pieDiagram-8a3498a8-cc496ee8.js → pieDiagram-8a3498a8-94dbc900.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{quadrantDiagram-120e2f19-84d32884.js → quadrantDiagram-120e2f19-8b7a9c33.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{requirementDiagram-deff3bca-c0deb984.js → requirementDiagram-deff3bca-6f7eab81.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{sankeyDiagram-04a897e0-b9d7fd62.js → sankeyDiagram-04a897e0-f43e581d.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{sequenceDiagram-704730f1-7d517565.js → sequenceDiagram-704730f1-0bcbefc3.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{stateDiagram-587899a1-98ef9b27.js → stateDiagram-587899a1-b8a74083.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{stateDiagram-v2-d93cdb3a-cee70748.js → stateDiagram-v2-d93cdb3a-2070218f.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{styles-6aaf32cf-3f9d1c96.js → styles-6aaf32cf-f1d54e34.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{styles-9a916d00-67471923.js → styles-9a916d00-980de489.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{styles-c10674c1-bd093fb7.js → styles-c10674c1-3c03abde.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{svgDrawCommon-08f97a94-675794e8.js → svgDrawCommon-08f97a94-46ba068f.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{timeline-definition-85554ec2-0ac67617.js → timeline-definition-85554ec2-901f5e3d.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{xychartDiagram-e933f94c-c018dc37.js → xychartDiagram-e933f94c-acbc628a.js} +1 -1
- rasa/core/channels/inspector/dist/index.html +2 -2
- rasa/core/channels/inspector/index.html +1 -1
- rasa/core/channels/inspector/src/App.tsx +10 -11
- rasa/core/channels/inspector/src/components/DialogueInformation.tsx +12 -3
- rasa/core/channels/studio_chat.py +25 -7
- rasa/core/policies/enterprise_search_policy.py +4 -7
- rasa/core/policies/flows/flow_executor.py +8 -1
- rasa/dialogue_understanding/generator/flow_retrieval.py +10 -9
- rasa/engine/storage/local_model_storage.py +45 -2
- rasa/model_manager/model_api.py +1 -2
- rasa/model_manager/runner_service.py +1 -1
- rasa/model_manager/trainer_service.py +12 -9
- rasa/model_manager/utils.py +1 -29
- rasa/shared/core/domain.py +62 -15
- rasa/shared/core/flows/flow_step.py +7 -1
- rasa/shared/core/flows/steps/call.py +8 -1
- rasa/shared/core/flows/yaml_flows_io.py +16 -8
- rasa/shared/core/slots.py +4 -0
- rasa/shared/importers/importer.py +6 -0
- rasa/shared/importers/utils.py +77 -1
- rasa/studio/upload.py +12 -46
- rasa/telemetry.py +97 -23
- rasa/utils/io.py +27 -9
- rasa/utils/json_utils.py +6 -1
- rasa/utils/log_utils.py +5 -1
- rasa/utils/openapi.py +144 -0
- rasa/validator.py +7 -3
- rasa/version.py +1 -1
- {rasa_pro-3.14.0.dev20250825.dist-info → rasa_pro-3.14.0.dev20250901.dist-info}/METADATA +9 -10
- {rasa_pro-3.14.0.dev20250825.dist-info → rasa_pro-3.14.0.dev20250901.dist-info}/RECORD +347 -73
- rasa/core/channels/inspector/dist/assets/channel-59f6d54b.js +0 -1
- rasa/core/channels/inspector/dist/assets/clone-26177ddb.js +0 -1
- rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-29c03f5a.js +0 -1
- {rasa_pro-3.14.0.dev20250825.dist-info → rasa_pro-3.14.0.dev20250901.dist-info}/NOTICE +0 -0
- {rasa_pro-3.14.0.dev20250825.dist-info → rasa_pro-3.14.0.dev20250901.dist-info}/WHEEL +0 -0
- {rasa_pro-3.14.0.dev20250825.dist-info → rasa_pro-3.14.0.dev20250901.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,52 @@
|
|
|
1
1
|
rasa/__init__.py,sha256=YXG8RzVxiSJ__v-AewtV453YoCbmzWlHsU_4S0O2XpE,206
|
|
2
2
|
rasa/__main__.py,sha256=TVYPpDdKKnTxC9RRaPxAaoDosH8-UDMBPfd-UP7YBGg,6645
|
|
3
3
|
rasa/api.py,sha256=RY3SqtlOcdq4YZGgr6DOm-nUBpiA8l8uguUZOctL_7o,6320
|
|
4
|
+
rasa/builder/README.md,sha256=7WYioSzBHFY25h1QCFellv7bIOW9VLH7Gf7dwQEc1k0,3715
|
|
5
|
+
rasa/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
rasa/builder/auth.py,sha256=naswg4P1o_zB1GQDybqySbhnY0OPIp7cH2Ze98Uhwgc,5436
|
|
7
|
+
rasa/builder/config.py,sha256=LJOBoRaExOCCu04yP_OLrHlhmyg9M0gw7lDIgB3kRKk,3531
|
|
8
|
+
rasa/builder/copilot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
rasa/builder/copilot/constants.py,sha256=qcxnAFWq3wdefJacME7UMe7MiAAiECWlDkBHcXqJ9Kg,1123
|
|
10
|
+
rasa/builder/copilot/copilot.py,sha256=mdHiAG58CZrQ6viAUjYXQugcNQU_cLLxm-jSDZgKWM8,14255
|
|
11
|
+
rasa/builder/copilot/copilot_response_handler.py,sha256=teozaZFKR-XADdK2Nvkqu3wp48Bg1iqB7VT8rn5HcI4,20257
|
|
12
|
+
rasa/builder/copilot/copilot_templated_message_provider.py,sha256=eY8S7rVad6kX1-luyGpUT_2MNnIzfL4Fd1ZdLTTqM0g,1676
|
|
13
|
+
rasa/builder/copilot/exceptions.py,sha256=6alRMH8pyyXyjfKjtfSdjP1LunztC_c6Xu1OtlaUC2E,663
|
|
14
|
+
rasa/builder/copilot/models.py,sha256=kAUCTeyyVwvXdKVEO7idGj5qm6-LTTD5_wYLo_1q4-E,15326
|
|
15
|
+
rasa/builder/copilot/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
rasa/builder/copilot/prompts/copilot_system_prompt.jinja2,sha256=BQavybBdlIYoasGyzTBfMMv8tmsuHOZbKdpjInWfBSU,30444
|
|
17
|
+
rasa/builder/copilot/signing.py,sha256=z_eAGFMM1Mk009ambXA-mjJpM8KQRPaNHECpH2A2f-U,10011
|
|
18
|
+
rasa/builder/copilot/telemetry.py,sha256=zVGqxzdHQLRX4-XPDUlaFOQTXLEhPgs0ky0fqkzGJeo,6954
|
|
19
|
+
rasa/builder/copilot/templated_messages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
rasa/builder/copilot/templated_messages/copilot_internal_messages_templates.yml,sha256=dqKDO-25_srbDAVBoq0asdnPD95o8xcQ3eWIGyf0D2I,746
|
|
21
|
+
rasa/builder/copilot/templated_messages/copilot_templated_responses.yml,sha256=i6Nja6Gv_NtymUEFoXWNq5pMIXIyLjiMvtrhyYyl2OU,1935
|
|
22
|
+
rasa/builder/document_retrieval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
rasa/builder/document_retrieval/constants.py,sha256=bqG88KtCqxXgMFeiEFEDV5P1fe0J_hAg0FjMnXpatQk,356
|
|
24
|
+
rasa/builder/document_retrieval/inkeep-rag-response-schema.json,sha256=ePVbGo6u6sm_CPS8EeECX3UayIvcfUe6yTy2gtexKlk,1498
|
|
25
|
+
rasa/builder/document_retrieval/inkeep_document_retrieval.py,sha256=Xt10ryg2EmHEPRfnUcNmf-4Z3yR2WXRVGEsb66LmBBI,8982
|
|
26
|
+
rasa/builder/document_retrieval/models.py,sha256=VBgZYL7WW5B3DfgHHxxPkHi6RUmlbv34TQgP7PnsPO8,1977
|
|
27
|
+
rasa/builder/download.py,sha256=WI2xxZj2Fz5Yk0oBKRAS5YjravCwcA9W9_c6lXKRKdE,4227
|
|
28
|
+
rasa/builder/exceptions.py,sha256=tnfufzfyFRJBhwHtzHpgTmpSN_7Z_C98xCNORPsD2KY,2477
|
|
29
|
+
rasa/builder/guardrails/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
30
|
+
rasa/builder/guardrails/constants.py,sha256=Jcez4iNtgKwFsHEAW8w3quD9McSnnmXP4iatbJSXVp0,286
|
|
31
|
+
rasa/builder/guardrails/exceptions.py,sha256=z91rWucAWtONC0Esna5P_a7hp9Z5zp6ffz2fG8fg6L8,93
|
|
32
|
+
rasa/builder/guardrails/lakera.py,sha256=Ym_G5wZ_OkpMV323zvPRo_icVEdPAqB3fSR2bL1q3iY,7528
|
|
33
|
+
rasa/builder/guardrails/models.py,sha256=WlNoZWjDGo4Tigx7LLTkmR-zmMhVKpro0PjNdwMhYXo,7837
|
|
34
|
+
rasa/builder/guardrails/store.py,sha256=-mJdsCnHgSI08uPnPwZRObIyRV9u98zcpQ5QkeHdVK0,7660
|
|
35
|
+
rasa/builder/guardrails/utils.py,sha256=2eudDOqPCTFiKWEGRfsCHUXNhjsht-tMsLJlh8hv0AE,11275
|
|
36
|
+
rasa/builder/job_manager.py,sha256=eQ5HRff-U4Cj3joHKqpjDcfCMWj4nz4D_oQmoozpwPM,2507
|
|
37
|
+
rasa/builder/jobs.py,sha256=NhFghQwLcDT1G1tyelo2pUpLWVsHK7F-48GPvtZE58o,9327
|
|
38
|
+
rasa/builder/llm_service.py,sha256=y3CPQS0qHGFhe6Z4lbs2HkEVztYYVZtnWiTNjghlBdE,8859
|
|
39
|
+
rasa/builder/logging_utils.py,sha256=E1YZs5BdHT9TrnoA2758sFMD1Xw7e5mnAtqWSAZs1gk,9296
|
|
40
|
+
rasa/builder/main.py,sha256=R0yakUImIfhm_l4ZZIm8DtoOolylUV677fi5BgE6JFU,8260
|
|
41
|
+
rasa/builder/models.py,sha256=UWMN1Z20Btrc2fBK4y4eAyRmx3RVyQiqiUHYQTJfyIE,5937
|
|
42
|
+
rasa/builder/project_generator.py,sha256=SNG4ZJQ0US5aYxJYDAlp82SISGt9MKLP_vwKl2E0zlI,17897
|
|
43
|
+
rasa/builder/project_info.py,sha256=ZBwFCigZLSo1RBMhlZDYBoVl2G-9OnhRrYxdMWHn6S4,2093
|
|
44
|
+
rasa/builder/scrape_rasa_docs.py,sha256=iR_uThYA_kjDeIFY7AdpXcP-30P2vOHQ65gH4S1OjLw,2485
|
|
45
|
+
rasa/builder/service.py,sha256=DBIZeF9IDS-C0SWDfDwo8ieU6Ok9q5N417S3Mz82eLc,46649
|
|
46
|
+
rasa/builder/shared/tracker_context.py,sha256=2P-DsWjWEkZ32dqrx6s4zVxdo0_mokZNrU3LYisu6MY,7691
|
|
47
|
+
rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
|
|
48
|
+
rasa/builder/training_service.py,sha256=d33t5mmVctn08o43-J-Zm4N0xU60VzzEzOSnXJaZiws,3744
|
|
49
|
+
rasa/builder/validation_service.py,sha256=FAHSf2tQZ8yDlckWWjqMqhjb0rANbXR2DJTybh4fHnM,3099
|
|
4
50
|
rasa/cli/__init__.py,sha256=eO5vp9rFCANtbTVU-pxN3iMBKw4p9WRcgzytt9MzinY,115
|
|
5
51
|
rasa/cli/arguments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
52
|
rasa/cli/arguments/data.py,sha256=e3mYapaRIczM74P5genuXy1ORqIR4x20khQXUvy8JLA,3040
|
|
@@ -25,6 +71,35 @@ rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
|
|
|
25
71
|
rasa/cli/llm_fine_tuning.py,sha256=A2RbXSF7jjta1Ql-X251kOMMfU3FJqwPMzh-Xuy83bg,15043
|
|
26
72
|
rasa/cli/markers.py,sha256=DIYfP5ZVRqiwbDiXfgONjwSFckThHdpGsGl6Kqn_CN8,2484
|
|
27
73
|
rasa/cli/project_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
+
rasa/cli/project_templates/basic/actions/__init__,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
+
rasa/cli/project_templates/basic/actions/action_human_handoff.py,sha256=Vu4klzyBOgsU0jBlFa34D8OzXE7wubTXUcSE8SgvEbA,1469
|
|
76
|
+
rasa/cli/project_templates/basic/config.yml,sha256=WqUt_lfgYAZ15m_6C51UwkYHVXnzxd5byCpuPC7E6Mw,722
|
|
77
|
+
rasa/cli/project_templates/basic/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
78
|
+
rasa/cli/project_templates/basic/data/data.md,sha256=Fc4gfjON2NZlVsW301YElNfA2eziWJUaC76xB4RC_B4,509
|
|
79
|
+
rasa/cli/project_templates/basic/data/general/feedback.yml,sha256=NlFjGNQeJkW-hzL3zkVGMm7gnpKC6kkhwBueHNyYKio,699
|
|
80
|
+
rasa/cli/project_templates/basic/data/general/goodbye.yml,sha256=vu2Kj__TTT-zJEoRJRPLm1AObAuKR7M4LiW4nr_gRXI,176
|
|
81
|
+
rasa/cli/project_templates/basic/data/general/hello.yml,sha256=aJwc1CCd6sviuFZQTQQTXXfgvmwMZRI7lVFgtgf0WdY,121
|
|
82
|
+
rasa/cli/project_templates/basic/data/general/help.yml,sha256=0fur-sV6rn0Qe4S3NAgJ5HLh1M6-skEg7-QxZPh_iz0,160
|
|
83
|
+
rasa/cli/project_templates/basic/data/general/human_handoff.yml,sha256=oKTrd_ujiwpiiL4SDRJ1O8swVYre_D9QNE3vwkjxJtQ,558
|
|
84
|
+
rasa/cli/project_templates/basic/data/general/show_faqs.yml,sha256=Io3jzRIfUDjpHkeAc_hWFbtzDi7Nmacz1QrtBy9zDAY,166
|
|
85
|
+
rasa/cli/project_templates/basic/data/system/patterns/pattern_cannot_handle.yml,sha256=hkEbTudhX6At20iaxf5vtdG-7_ijztb88mZ_y5nmFwY,235
|
|
86
|
+
rasa/cli/project_templates/basic/data/system/patterns/pattern_completed.yml,sha256=t_1HTtSdC5mD0ofL6bxFmicFgJyIwg1-vhweVMlXGUk,171
|
|
87
|
+
rasa/cli/project_templates/basic/data/system/patterns/pattern_correction.yml,sha256=fSZk5_gobpkKSR_XifbJ12iXs3WCTAbAGAD7HfH9KtE,184
|
|
88
|
+
rasa/cli/project_templates/basic/data/system/patterns/pattern_search.yml,sha256=jEQ2lHAI3md4zn-WTqC5DOBiLKIQTiSPv-zMKRiqlcM,208
|
|
89
|
+
rasa/cli/project_templates/basic/data/system/patterns/pattern_session_start.yml,sha256=7nA3eKlD0Svf2HDqF5IH-35_c8Ny3P6SwfS7WG1fBO8,206
|
|
90
|
+
rasa/cli/project_templates/basic/docs/docs.md,sha256=RStqzq76CLsmaqMnklFTE5aL5NTG_4O6gn49I85POc4,414
|
|
91
|
+
rasa/cli/project_templates/basic/docs/template.txt,sha256=ekCWb6eF65QWuBwPRyviPoY6zYioSZalEBGNM92ZwI0,1945
|
|
92
|
+
rasa/cli/project_templates/basic/domain/domain.md,sha256=mtTQgwRvYy9WKP7QC_eFaVoXO967lCXR4cVZiVrqItY,522
|
|
93
|
+
rasa/cli/project_templates/basic/domain/general/feedback.yml,sha256=EPdP41J0lB79S9WftTOMECSAcsZcGlKU9EAsPy2rNsk,1076
|
|
94
|
+
rasa/cli/project_templates/basic/domain/general/goodbye.yml,sha256=A_xZLR1nbfUvS9ujKWDg35QFWuHg1aGHWy0Rj85td4M,349
|
|
95
|
+
rasa/cli/project_templates/basic/domain/general/hello.yml,sha256=g6kS_HE7VpZA4QhQFZnJ2qA0eZK4CAwauSDD4Fb1FCo,123
|
|
96
|
+
rasa/cli/project_templates/basic/domain/general/help.yml,sha256=F7AYeYNeB0Tbzf2tuwpVpioUCYk13vVWyKV_t9u9nHM,436
|
|
97
|
+
rasa/cli/project_templates/basic/domain/general/human_handoff.yml,sha256=_gTd1jLXyfZSusyNBQQJvu3LwRdgBzCuh-GgRyYTcPM,909
|
|
98
|
+
rasa/cli/project_templates/basic/domain/general/show_faqs.yml,sha256=1PQ_rriMVrRGEe0i3BWkr8pWlAZX5G1Khqc1PVW0D0g,346
|
|
99
|
+
rasa/cli/project_templates/basic/domain/system/patterns/pattern_cannot_handle.yml,sha256=2pOm4vtkUQtnJiTOY9KHOZXNeUQa1FiP0PE2Zphkjyk,135
|
|
100
|
+
rasa/cli/project_templates/basic/domain/system/patterns/pattern_session_start.yml,sha256=ojugI3laqH-iL-0Rlt170nTgJuH-uifY8IIJ9My0FNI,466
|
|
101
|
+
rasa/cli/project_templates/basic/endpoints.yml,sha256=DGhWsGuPxFgFr6_dF_cPF2iZmVxGbmiimeGqF_5wWds,2143
|
|
102
|
+
rasa/cli/project_templates/basic/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Djna_YB2PWSQxvzOduCnP7btgLihWZ4eLflR9WYwexo,1971
|
|
28
103
|
rasa/cli/project_templates/default/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
104
|
rasa/cli/project_templates/default/actions/action_template.py,sha256=BoiGE6tHbUl4WAEpf1sYTsQRV4_aZiTk4cLFEpk6QVY,755
|
|
30
105
|
rasa/cli/project_templates/default/actions/add_contact.py,sha256=bvXsHnHquhEJxSKB0sNYouePRTdL7gLyH3ftEknbI68,1032
|
|
@@ -51,16 +126,214 @@ rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact.ym
|
|
|
51
126
|
rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact_from_list.yml,sha256=5iMfRCbPpf08Jawog_fuXw-aR6nV0za0Cx60wiFwhhA,417
|
|
52
127
|
rasa/cli/project_templates/default/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
53
128
|
rasa/cli/project_templates/defaults.py,sha256=Yuqway0slq8d4nX8QakiXHokCrVcZiT1UY7sqv09c28,5370
|
|
129
|
+
rasa/cli/project_templates/finance/actions/__init__.py,sha256=VDptzUTRHtRWJLkLH6OZsetHKl2q19koOhqPx5jZwYU,1708
|
|
130
|
+
rasa/cli/project_templates/finance/actions/accounts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
+
rasa/cli/project_templates/finance/actions/accounts/action_ask_account.py,sha256=VFlpaMH4iClEhydA23p0xJu6iBwAKlG1nGC5rnB27Lc,1290
|
|
132
|
+
rasa/cli/project_templates/finance/actions/accounts/action_check_balance.py,sha256=tEENljCJ4vKQ-IZNZjMlof_D4AaQ08WljpxwoG-GIsM,1148
|
|
133
|
+
rasa/cli/project_templates/finance/actions/action_session_start.py,sha256=oiF6CEvbYCGYqMbfFUcJtfzbckcbDZ6EctYXVjwMRww,2531
|
|
134
|
+
rasa/cli/project_templates/finance/actions/cards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
|
+
rasa/cli/project_templates/finance/actions/cards/action_ask_card.py,sha256=uQbSty5WT7_R3i6_prnIfoTNNZ9vPYhmfCzQTcVjGCM,1355
|
|
136
|
+
rasa/cli/project_templates/finance/actions/cards/action_check_card_existence.py,sha256=TBYuUwJn31-hsEwNpJAzBEyrTMXH2R-2hduMrkyurfI,1080
|
|
137
|
+
rasa/cli/project_templates/finance/actions/cards/action_update_card_status.py,sha256=x8rjaQ_WOsqbL4rK7gB0unTTesd7PdZYirAPJs2JoZo,1796
|
|
138
|
+
rasa/cli/project_templates/finance/actions/database.py,sha256=QZntgOaXZ-VNCAYX7GPl_06EhiRT-quylDfOJj0HFs4,9956
|
|
139
|
+
rasa/cli/project_templates/finance/actions/transfers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
+
rasa/cli/project_templates/finance/actions/transfers/action_add_payee.py,sha256=hM4NRRkAHcJUQuhUOUBXhnCAvuiTGpEBKhbkcas2OIs,1534
|
|
141
|
+
rasa/cli/project_templates/finance/actions/transfers/action_ask_account_from.py,sha256=AoMQiX29u57pSsdWW_kr4dQ8NWoy7R-OsG-tl0hFVwI,1488
|
|
142
|
+
rasa/cli/project_templates/finance/actions/transfers/action_check_payee_existence.py,sha256=RHHANDAaKPIB8K6_pxubRXcxp-YQwVLU8CR3g3vEnlk,1125
|
|
143
|
+
rasa/cli/project_templates/finance/actions/transfers/action_check_sufficient_funds.py,sha256=HHJk-tT1Y_iJZpBAuZsmHFIh5qT61A1RlTV-sV1n8z4,1157
|
|
144
|
+
rasa/cli/project_templates/finance/actions/transfers/action_list_payees.py,sha256=SjPgjrTQUZGUNLXULsjBuTMT2aSTwbuHr28w5OvSAYs,1277
|
|
145
|
+
rasa/cli/project_templates/finance/actions/transfers/action_process_immediate_payment.py,sha256=nczehD_DIMn2zFRpJv7Fm0YaBA4hHNACdG80DXYSll4,504
|
|
146
|
+
rasa/cli/project_templates/finance/actions/transfers/action_remove_payee.py,sha256=nOk-WcHQBobDygcN0YPiE9EiLhsSsaytIGlpnLa1UTI,1523
|
|
147
|
+
rasa/cli/project_templates/finance/actions/transfers/action_schedule_payment.py,sha256=DRXO-H4bLVKI3T1fLErLurqcdDwiwjHHvG2V09pxg7o,561
|
|
148
|
+
rasa/cli/project_templates/finance/actions/transfers/action_validate_payment_date.py,sha256=7591cJicv4SukK4Xwf-GsHFJ9GyPA0lqIeWVPeyQcaw,1230
|
|
149
|
+
rasa/cli/project_templates/finance/config.yml,sha256=cXhTV7_k9GiJIwTk8qq1QGEsAm-zXfXNZnKiRbbsgPQ,369
|
|
150
|
+
rasa/cli/project_templates/finance/credentials.yml,sha256=lhQilJh4U_ggSugqbv8WP7v2HFX-ratTf9VS_0PJnlw,839
|
|
151
|
+
rasa/cli/project_templates/finance/csvs/accounts.csv,sha256=DcFXLw_ji2cO8uXxGTycvCiGY0WEpS8gGXA9dpVE7PI,470
|
|
152
|
+
rasa/cli/project_templates/finance/csvs/advisors.csv,sha256=LGhoLPNEYONp4ryZ0vGeIn4hqESR1cmdQZoH_usSgYI,553
|
|
153
|
+
rasa/cli/project_templates/finance/csvs/appointments.csv,sha256=_A4UVwOeDiMOMuwWPfODp2hrFdIK-AwMtFWKI_wWCLo,7529
|
|
154
|
+
rasa/cli/project_templates/finance/csvs/branches.csv,sha256=5fNH0IACEpmw434dbXE-gLaKxiLX3I6KOkBszTSdPkI,785
|
|
155
|
+
rasa/cli/project_templates/finance/csvs/cards.csv,sha256=N4dfxywNtLIJO0w4wZoOh1_-82YxdDivAlCWW5KlQZQ,834
|
|
156
|
+
rasa/cli/project_templates/finance/csvs/payees.csv,sha256=MnkZNTIflOqTJ-P4y6-zfmBuowX8rkAHsy-kVAHf5M8,724
|
|
157
|
+
rasa/cli/project_templates/finance/csvs/transactions.csv,sha256=BeJxE7FLlD5skEwf8ao7PfiuEzR0G4NXV8Db1qA4MOE,6742
|
|
158
|
+
rasa/cli/project_templates/finance/csvs/users.csv,sha256=AeO3jwDmo6y00MDJQq9gUgDhJ9qOsPSvMbGbiKxFNns,601
|
|
159
|
+
rasa/cli/project_templates/finance/data/accounts/check_balance.yml,sha256=kSeH_ypn7wnhT-wAz5M39ZB-MqRBWvNy84bCWnCSSHk,384
|
|
160
|
+
rasa/cli/project_templates/finance/data/cards/block_card.yml,sha256=wYmVYk5tvmWyV1GC8zRarKW5sp3NDqd5p-Gdmezd94E,3146
|
|
161
|
+
rasa/cli/project_templates/finance/data/cards/select_card.yml,sha256=LrrYFW4nLbbawf-VcWJc4yozKi4jQkr1Zb62nhMa9ds,355
|
|
162
|
+
rasa/cli/project_templates/finance/data/general/bot_identity.yml,sha256=9TpL4j9nWxxm8-4TDbHG3TC169yPQKBEnZhdeAoqnx0,180
|
|
163
|
+
rasa/cli/project_templates/finance/data/general/feedback.yml,sha256=810vxE8dJgabJEBWxsP6Q4xIKVzdjklTt7ZezYZmolg,672
|
|
164
|
+
rasa/cli/project_templates/finance/data/general/goodbye.yml,sha256=vu2Kj__TTT-zJEoRJRPLm1AObAuKR7M4LiW4nr_gRXI,176
|
|
165
|
+
rasa/cli/project_templates/finance/data/general/hello.yml,sha256=eSElBgQL7HqUisI3-S_u0dFOj386wIxdFNDNegyT0ig,125
|
|
166
|
+
rasa/cli/project_templates/finance/data/general/help.yml,sha256=ReSgsyeLWT0CCVH5ckWFSQ_UzpjmvxFlTn7KYLDB3Dg,354
|
|
167
|
+
rasa/cli/project_templates/finance/data/general/human_handoff.yml,sha256=UjNE8-5Gr2ttdQ91KIhj97JtVIJM9J_8vr35vTkMrWg,477
|
|
168
|
+
rasa/cli/project_templates/finance/data/general/welcome.yml,sha256=Zru27Xj7gl4hMkY8vGiluWZORh1uoGh8FYQWm6ZN7fs,289
|
|
169
|
+
rasa/cli/project_templates/finance/data/system/patterns/pattern_chitchat.yml,sha256=nnNUMjgpheQHl0dglpjC5D0zfYqGf_PCzPoOz-sFXYA,120
|
|
170
|
+
rasa/cli/project_templates/finance/data/system/patterns/pattern_completed.yml,sha256=t_1HTtSdC5mD0ofL6bxFmicFgJyIwg1-vhweVMlXGUk,171
|
|
171
|
+
rasa/cli/project_templates/finance/data/system/patterns/pattern_correction.yml,sha256=fSZk5_gobpkKSR_XifbJ12iXs3WCTAbAGAD7HfH9KtE,184
|
|
172
|
+
rasa/cli/project_templates/finance/data/system/patterns/pattern_search.yml,sha256=jEQ2lHAI3md4zn-WTqC5DOBiLKIQTiSPv-zMKRiqlcM,208
|
|
173
|
+
rasa/cli/project_templates/finance/data/system/patterns/pattern_session_start.yml,sha256=g4dM-sFC_6kUWYl4exU3KS89zlcYvUYTI7vkO1Yw1hc,207
|
|
174
|
+
rasa/cli/project_templates/finance/data/system/source/accounts.json,sha256=0Smi0Sts1AjDJHKIV0AaT8QG5VHzbfAS3rbmAga3atg,889
|
|
175
|
+
rasa/cli/project_templates/finance/data/system/source/advisors.json,sha256=tEE1CuryyCRJu2OxI7jw-TYMW5DV1imXkuT06Idp23c,1114
|
|
176
|
+
rasa/cli/project_templates/finance/data/system/source/appointments.json,sha256=IERKoZZhoQI7H2B7KQGXD1Wx-G9kGbkFhX70yo4baog,32375
|
|
177
|
+
rasa/cli/project_templates/finance/data/system/source/branches.json,sha256=Q5AP_-Tlp9ZIi76IK80cTTxbLtxTwJesqsPXCmS-2u4,1245
|
|
178
|
+
rasa/cli/project_templates/finance/data/system/source/cards.json,sha256=oIEBQBloYjLwmynyT_u0dEm91XGFOLie19pdfU387Zk,1275
|
|
179
|
+
rasa/cli/project_templates/finance/data/system/source/payees.json,sha256=LA94tqmPqaFr6biLEUNGFjf7iaqzcqwPEh8e5v9eBoc,1461
|
|
180
|
+
rasa/cli/project_templates/finance/data/system/source/transactions.json,sha256=qUBMkuYAF6eKl2Lhseiy_W_p_qJxRFx76LohlOMeQ_8,11955
|
|
181
|
+
rasa/cli/project_templates/finance/data/system/source/users.json,sha256=vVqtYHX6vkDfyskmdD7dhWSg8s7kf6YqmTmkIqiSDx8,761
|
|
182
|
+
rasa/cli/project_templates/finance/data/transfers/add_payee.yml,sha256=MP2ssaXM86xxSKlkA1XFxkyriuVUzv32ibEYa9I2phc,1171
|
|
183
|
+
rasa/cli/project_templates/finance/data/transfers/list_payees.yml,sha256=bINUCywX62vFGvYkwfi0JHDZXrH6sDDH4nP7RfU0nkg,211
|
|
184
|
+
rasa/cli/project_templates/finance/data/transfers/remove_payee.yml,sha256=SIbhe7cbZLteApQyIRQ-GvcwecWGZ8yyDvc0K7bspWc,756
|
|
185
|
+
rasa/cli/project_templates/finance/data/transfers/transfer_money.yml,sha256=k1Q12ZNbYSnuTkfla1xFEY14l4lOMS7TEL8VTB32wo8,2353
|
|
186
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/consequences_of_blocking_card.txt,sha256=P10DX5Uvy76BSw4mM-51oBYGizPB6qzZwElqRDLwoRI,477
|
|
187
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/reasons_to_block_card.txt,sha256=xmFiV_j7tVH1bzeI46JA2Wh5cVHzHx6DGdnVLTaQ_eI,492
|
|
188
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/recovering_from_card_fraud.txt,sha256=Ul5ujCkATAvpuEmtkemxVwALnwsTTxXltIY81j8Rtuo,493
|
|
189
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/tips_for_card_security.txt,sha256=xbeS_bXtITTR7PRXBjBCJDwl5-7uRAUTJx67X9cZ7O4,530
|
|
190
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/what_to_do_if_card_is_lost.txt,sha256=X67TgPpGgPTQPAy2pojpWuorXl1QWDSKaLud3byUG4U,487
|
|
191
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/account_balance_security.txt,sha256=UdzpH_7E55LJpRo9eLgeanNew8jIf70aUhMIFIVd_1Q,378
|
|
192
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/common_balance_inquiries.txt,sha256=xOioXWRwyV_A5dJtxrtLzAej87S1OSlYt0E_LFRXkcQ,534
|
|
193
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/methods_to_check_balance.txt,sha256=q8VcSZ3ksuiGEvi1qjMWbCbJOo-G-EiwSroEGUmnur8,436
|
|
194
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/understanding_balance_updates.txt,sha256=OaUsD_wQJmoWXJQMOCi4Jv1ChEbdJgAMsutjBhQyoSc,449
|
|
195
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/what_to_do_if_balance_is_incorrect.txt,sha256=n00N1bDmWHYHllllBQOhelYtR_It88MQC8WfAqRWcZ0,540
|
|
196
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/benefits_of_authorised_payees.txt,sha256=SXEBsmhHIiAwYSBz-270J8xPYfDh2oh0bCKd1TF_yG0,535
|
|
197
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/common_issues_with_payees.txt,sha256=isLt01kWtYgl-YnCJ1xvLY8opkJG014gw3awnjFiYOY,533
|
|
198
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/general_payee_information.txt,sha256=GaZ4AMT5-f3vhVF4r18s-zSBXNvAJgn19jTYQ4mS42w,446
|
|
199
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/payee_management_tips.txt,sha256=wq0JeVrm56iybGYstLsgEy_Hh3Q2RzbdRP6_55mV82s,441
|
|
200
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/understanding_payee_types.txt,sha256=Dn7glzH3RWDwSmc3jZqj9LJTmJI6laokFl8PsbVY3CM,455
|
|
201
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/common_transfer_errors.txt,sha256=kENNkZ1yEHoohqmH4vFqTiKVja1sW__VOWGCMDDJ7RQ,557
|
|
202
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/fees_for_transfers.txt,sha256=C4iHIKVfKAsDPXmmGvfuCcOnBRE9N30t66eAmcxs4Vs,461
|
|
203
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/general_transfer_information.txt,sha256=IkklWyTBXrLbhsnpmQOwh4vlbpyPPmSfU1cwJ3Ag_B8,455
|
|
204
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/security_tips_for_transfers.txt,sha256=6JGi050EQBjdnXcBAt85YfjoW14L6ZTI8jv8jiw15Hk,528
|
|
205
|
+
rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/transfer_processing_times.txt,sha256=K1nACrSHkF8bRQJ0LVitKCQODIEn_tclbJxCI2Wm9o8,471
|
|
206
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part1.txt,sha256=qXi0AnrO37yMVdWJgFB1P6PMn2dnXSaB31XOEGrlaDk,21342
|
|
207
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part10.txt,sha256=mkclHX4CE1O2qmeT7sa2rWqfUQmAptiYv6fUFYaKDL0,30616
|
|
208
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part11.txt,sha256=mw_IKqkyObOquUIPH-V_LVSVB_OrQI63x18YQi9s3rY,11227
|
|
209
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part12.txt,sha256=fBs1i-a-aO-RudDLu80b2DAS7FDqKhpPVeJp3_XIp0g,20000
|
|
210
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part13.txt,sha256=MnWmh5Ery1R0VWr4uIDa9LxIV5PWUv8-VDXh4Z58vJU,17747
|
|
211
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part14.txt,sha256=--dMHO6XgGALcjtZYdPb_cYraaa_t9xJKOhsWTv-uq4,15787
|
|
212
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part15.txt,sha256=8RKnKdYjgtCSV46XUg_8noy7HG6aG6Xe_NjCyermX7o,24621
|
|
213
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part16.txt,sha256=y2r9omuqNRwct27rxiYQ4ytigi519-y_AKJPp6x1sDE,12706
|
|
214
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part17.txt,sha256=14HH3bsdDxLRze0GQ5fOfI2zwX3t5Q6zYm_Rf4MVI1s,25517
|
|
215
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part18.txt,sha256=4gzC8WymFPIACu3mXolQmqeiljmHr4RopIxma9rTQOs,17878
|
|
216
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part19.txt,sha256=-pQt2gF4IYPEawFHUlhGqqJNFSWG4KyCjXdXa2X0GD4,16898
|
|
217
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part2.txt,sha256=dqFmeGMB_S9TwHmnL7zjua4FAuXsnTFP1fc5kLMmNNU,15262
|
|
218
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part20.txt,sha256=YW6bbfT_ntMTCzdEfrzdqDRkC_9RCWU8ynUOZbY24Y0,18452
|
|
219
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part21.txt,sha256=q3rOY2Wu8dmQL7Vfjm8-u_92WZxQTMy7nlR82CV-fdQ,19377
|
|
220
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part22.txt,sha256=Kyyz9Cap1jqxwAVpGiww7Dw2MTEM0C6UliGsi0pUpxs,17000
|
|
221
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part23.txt,sha256=fDnPy9xXS81WoQ3mwNUOwyIY_fq12gu6GgQ5PljzLZo,20713
|
|
222
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part24.txt,sha256=R6_p4FzVK298VlLgTk2CY8xXRiOw8t20KFrhepC0qpQ,10986
|
|
223
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part25.txt,sha256=ZOw6vSC8VitWzUCUFwrQn2dr9BfXt6B5ppwdKhQhZ9U,17170
|
|
224
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part26.txt,sha256=JraAnKbrd1UZ_lCBD09fi4ECOVzg8D8EjeSbf5J3ehE,10761
|
|
225
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part27.txt,sha256=QmXPh7k9H5CxVyhE7SmzEAiUFdWaSy7px9mB0ZsuK3g,19336
|
|
226
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part28.txt,sha256=iE0du9hkGfzGADlfkpr6swrKmqpzZ3VO961QKnoyNCI,14681
|
|
227
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part29.txt,sha256=GyD648wiwD3gXSDMMYUKyGjX0SmsR6u4gRzKkWOXJw8,27004
|
|
228
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part3.txt,sha256=pTnoKXcoXr2I-0AWgW2junZ5XRyfFgqBPTOHcqy-hBg,18900
|
|
229
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part30.txt,sha256=KjJM0BclYvQ7yl1CaSJqA3uvtCYSC_3W-GvkYRT_b_4,16466
|
|
230
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part31.txt,sha256=I9elWeXK0K4mNTodDOin_QMZTb8VBHEcZaSBlEdVhP8,19033
|
|
231
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part32.txt,sha256=t0rErOoJlZstpUtaMViTHyEQDP-JdDUTpVoPZ0Ctddc,12537
|
|
232
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part33.txt,sha256=uJFb0CrQvRE-jVPpQf28jJB4Yp0tZUSupNJ0QMiXP-Y,18793
|
|
233
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part34.txt,sha256=GdTYA4jzOfCxEYuAbTtpH-Y5WoBTR8UqGj6aWNnKQds,22304
|
|
234
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part35.txt,sha256=evUjnRpoqGn6JmKq3CJkz4q0d8PWO4_u_-s8SJtMgQ8,13147
|
|
235
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part36.txt,sha256=mXFZvxGRrd58KSfAyQIv-xdAwIJM_FZHk4PNEK-1PB0,19755
|
|
236
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part37.txt,sha256=dK7BfKoZ9X89o8kMEH8Y_8san7vyy9ZBFO0ilpP8jnA,20159
|
|
237
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part38.txt,sha256=rdAr0OCq_qYyV2M39091tiJvH37HHc49f1NKyTjAVs0,14622
|
|
238
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part39.txt,sha256=xRI1Yrp6ssKrO5bSIqxY_83nnzNq5juJZp8IXUDrjVo,26018
|
|
239
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part4.txt,sha256=ECD2VM10jdUufwdrz7eYdwIeTTpj5jp66lpOmKhdo6Y,19400
|
|
240
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part40.txt,sha256=z9UVGhsQbnFzFOVQsih7BcyEiTHb8VluZXgabFKYlTQ,21872
|
|
241
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part41.txt,sha256=WnbHg9Cpz80zxw903CjsTow9weDvlsivQJO6_Yb8iGw,15319
|
|
242
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part42.txt,sha256=C6bb8vb7zsyhSD8h-3meN4jgsVXgbm5_8BqKEKzUBOg,19267
|
|
243
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part43.txt,sha256=pttRMjhB5GiFcuPqqOWHwnujnHUqtmRSXH1m5Ab884w,21689
|
|
244
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part44.txt,sha256=27BriV1wOWXcCBxM4Izj58yorXyOLrETD9M-ZMT-qcg,14253
|
|
245
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part45.txt,sha256=L9k5YhdK8jgX623pRHfVR2MZPjGFcQsRn-6f8EjU6DI,14418
|
|
246
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part46.txt,sha256=fdWAG-e8f0wtya55BOYrEr-yqGQonikgxOpigzTsMNc,17512
|
|
247
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part47.txt,sha256=DZY9oCxmzgZ4ZkIUD06L2v0DvlcalkU7Cp65avcAGKo,17922
|
|
248
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part48.txt,sha256=eTgMJGeRqG0OYFGSclVaaBFOILsvpp0iH1yDmuokfpM,22653
|
|
249
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part49.txt,sha256=L0m8kgeIjmeO-51lun4TvYD9OfTGa6NgNA-tmtO_Ulg,25537
|
|
250
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part5.txt,sha256=D3k1bebP3HZAzPCVyraYc9SubtzX9aK9Hv7cBKKstAI,22062
|
|
251
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part50.txt,sha256=pnEDMTjp5p7k_osyMxtmloXrTt4M5RST_FeeSkJIKuo,23697
|
|
252
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part51.txt,sha256=6wgQo-WwknbhHPPlH_DZYXTxszOTJ76OPJ40Yqa_qKc,17751
|
|
253
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part52.txt,sha256=67mDUerLplkkGDdT8Y8vXbUIpfQRG8_TWMyh83jvGxA,14220
|
|
254
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part53.txt,sha256=4qyJJL71fmb35hUeNzkYgR5W0xf0D_CCtZQaO1mmhDk,12270
|
|
255
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part54.txt,sha256=8IgiGD6-T_WmO4dXVVd5iL7n44oaXZymcik7QetY4gc,12703
|
|
256
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part55.txt,sha256=KsV13Tay9OrFJaR4VqMBc0fe2RcwuyLAbpby30vjxXU,25359
|
|
257
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part56.txt,sha256=PTulbRj9pJAJJD6UF40hq4JpV4e7T9ZBP8VpTx8b8uk,15896
|
|
258
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part57.txt,sha256=sbtupe8hxNYrszZyqw2BxlKoCXtk0EYxAb0ADgFE33A,22968
|
|
259
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part58.txt,sha256=F93D5Pp6s5VRnYHiHdaFZ7SUgF6JQjMN0P3IEvfpeCM,17410
|
|
260
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part59.txt,sha256=oXwbXU83A6eT7zL8flryFTPM8PHU0o6ZEtYEQGgTv4A,16845
|
|
261
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part6.txt,sha256=oaJWaHOE-fMwDBMlCfZoQVVqSgOhiR0cwbsSO2PO5tE,22583
|
|
262
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part60.txt,sha256=cWq8WOI_JXCgL6AiKNOOXFj4lkrAg0gq24E_V63umMk,24630
|
|
263
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part61.txt,sha256=t4lrO-c2JHvd7POESU2EchlIjyKnmpwL4V_mjeownpY,12732
|
|
264
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part7.txt,sha256=KdBohNojdDv2C5AjEn5n0plWcouXnucX1oBD6spcGe8,15489
|
|
265
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part8.txt,sha256=8pYFAXMN85Ib_e0WaoXkrg6oWLzUw9Ws1dt8t1Pqhpo,20310
|
|
266
|
+
rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part9.txt,sha256=z768wU20LHoWt2SfYufeRPGmWXPI7h5F5Hsvikpnt7k,20368
|
|
267
|
+
rasa/cli/project_templates/finance/domain/accounts/check_balance.yml,sha256=NgWbPhSKjkL3bgMR8Obq5seV_enX4gYXsrJhiiI1uvs,144
|
|
268
|
+
rasa/cli/project_templates/finance/domain/cards/block_card.yml,sha256=U0zScEU4pKENnHt2-_TVquyMGTNoqEDmhCDKjy6k5Qw,3974
|
|
269
|
+
rasa/cli/project_templates/finance/domain/cards/select_card.yml,sha256=eYmfmmz8QHsWJAK7YWnmf4AjyqeMSWi1srLm65B4f9s,171
|
|
270
|
+
rasa/cli/project_templates/finance/domain/general/assistant_details.yml,sha256=xEGJePmluELpf96DC05CAisz-FlorWu5HVrglUdKtQY,340
|
|
271
|
+
rasa/cli/project_templates/finance/domain/general/bot_identity.yml,sha256=3_QGA79PHS8h7toeJGMBsrbERxGuMPd1AiF-clYbjO4,497
|
|
272
|
+
rasa/cli/project_templates/finance/domain/general/cannot_handle.yml,sha256=it4FJmLoVKCJ5fIP_Fs6pNgrkXwZbmW4TwyM6rc3Les,136
|
|
273
|
+
rasa/cli/project_templates/finance/domain/general/defaults.yml,sha256=Wtx5K3zKFGH9Ciowh9mXT9cIByy7jTd1ailcX1YXKjY,348
|
|
274
|
+
rasa/cli/project_templates/finance/domain/general/feedback.yml,sha256=p3fCzdLeOs7TL4b0qkQh3Ee-FWWZUHPwOdwNGzPQfyk,1098
|
|
275
|
+
rasa/cli/project_templates/finance/domain/general/goodbye.yml,sha256=Y0m_mmKXXkanrFl7bni0Idd2iEHvCVIZN2VkzuOyOi8,336
|
|
276
|
+
rasa/cli/project_templates/finance/domain/general/help.yml,sha256=07cY0mWhrzuzVsIpXSWY9phe8XuRepvBAy_kOCZaj9A,93
|
|
277
|
+
rasa/cli/project_templates/finance/domain/general/human_handoff.yml,sha256=txmgYajDgOHVNvUPLKciXPB1gBw8xHtQ5CPMg-tWop4,772
|
|
278
|
+
rasa/cli/project_templates/finance/domain/general/utils.yml,sha256=BNWmTtofjzrYBCBToFr2RolZ7l-ajpijJV4QSAz1Wqo,174
|
|
279
|
+
rasa/cli/project_templates/finance/domain/general/welcome.yml,sha256=h421NOedqr1oQy53PDxYaPK-M4KORVOgZEFn3gEV4P8,195
|
|
280
|
+
rasa/cli/project_templates/finance/domain/transfers/add_payee.yml,sha256=cn7Fe1g-wN1wg_9jSm3qv1mrqsSRZUDl1EOCONiMnhY,1445
|
|
281
|
+
rasa/cli/project_templates/finance/domain/transfers/list_payees.yml,sha256=jowm8wCj-iiMTF17R-f5S8LtIIQmk5WRFw5E8ggkc2A,48
|
|
282
|
+
rasa/cli/project_templates/finance/domain/transfers/remove_payee.yml,sha256=OHiseEt-urNIPRez3OmY6Ev7TFifuiwjqS8N0aCvVMM,473
|
|
283
|
+
rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml,sha256=RUyNU3qiJBk5oyy666B0ipAUkNRd4fdJNJrYbpC8c4M,2321
|
|
284
|
+
rasa/cli/project_templates/finance/endpoints.yml,sha256=6ijymHG7rjR4nS7bdHBVifJkUGkSEEYiKqCQJ7o5_Wc,2116
|
|
285
|
+
rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2,sha256=BiZtN3OYKaGckr-S0SM_IlOX8w2CjgC_x5eBN2fHssc,701
|
|
286
|
+
rasa/cli/project_templates/telco/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
287
|
+
rasa/cli/project_templates/telco/actions/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
|
+
rasa/cli/project_templates/telco/actions/billing/actions_billing.py,sha256=3UuskxfdQOFlmETMUv37dfI9M2I51RJSrutaUkjcCYQ,7525
|
|
289
|
+
rasa/cli/project_templates/telco/actions/general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
|
+
rasa/cli/project_templates/telco/actions/general/action_human_handoff.py,sha256=XtQlSCTy1RpptrwSIk9eXQ8cTwCi-oq3S5SwK-OuXok,1817
|
|
291
|
+
rasa/cli/project_templates/telco/actions/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
292
|
+
rasa/cli/project_templates/telco/actions/network/actions_get_data_from_db.py,sha256=8rM9H-KTTIznIlz-9ii_JnAI5XmxVkKR0qKu5FG0QIQ,1638
|
|
293
|
+
rasa/cli/project_templates/telco/actions/network/actions_run_diagnostics.py,sha256=JHFKtrGVpQA6zBVWvc9KrzGmBhXFu-kp_0JnOyI3ZWs,925
|
|
294
|
+
rasa/cli/project_templates/telco/actions/network/actions_session_start.py,sha256=_2NHKN3Pg1L6h_7DPIjJqDpREkacuYBkTG6p9sJbqvQ,495
|
|
295
|
+
rasa/cli/project_templates/telco/config.yml,sha256=WqUt_lfgYAZ15m_6C51UwkYHVXnzxd5byCpuPC7E6Mw,722
|
|
296
|
+
rasa/cli/project_templates/telco/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
297
|
+
rasa/cli/project_templates/telco/csvs/billing.csv,sha256=xYYF0S59HK0Vh2hU02JuyxCtynKUbIgJV-3Bjkm5OvA,550
|
|
298
|
+
rasa/cli/project_templates/telco/csvs/customers.csv,sha256=ZOsH7gUooq_l09QKoZsEQwoGWcaozdfJYigcwNE1ipM,109
|
|
299
|
+
rasa/cli/project_templates/telco/data/billing/flow_understand_bill.yml,sha256=hRy8YJut_FQhD14OUT1PyWTDuoP0bOSu1_DyKhGG-Dc,2267
|
|
300
|
+
rasa/cli/project_templates/telco/data/general/bot_challenge.yml,sha256=ft-LzMb1c4Yg2Wi8Z0uIiZddWmzkCZi-iwm7KcVCOUY,233
|
|
301
|
+
rasa/cli/project_templates/telco/data/general/feedback.yml,sha256=GmFEjb87C3ZrgQb1fJqD59cTLiGKSpOSo49IF6S12VI,680
|
|
302
|
+
rasa/cli/project_templates/telco/data/general/goodbye.yml,sha256=MKX30fQrB1fajSEfx61xIJl3LV_0lJQtbYrrqDmUK3I,171
|
|
303
|
+
rasa/cli/project_templates/telco/data/general/hello.yml,sha256=2-yPA0J5Cx7rab7tztjeBuZnBD_y7GzADoWqhRFnR1U,120
|
|
304
|
+
rasa/cli/project_templates/telco/data/general/human_handoff.yml,sha256=oKTrd_ujiwpiiL4SDRJ1O8swVYre_D9QNE3vwkjxJtQ,558
|
|
305
|
+
rasa/cli/project_templates/telco/data/general/patterns.yml,sha256=7hI6DdDHWNF3OHhtOUiACnawPKN6GcC87HQJnmaTAOo,755
|
|
306
|
+
rasa/cli/project_templates/telco/data/network/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
|
|
307
|
+
rasa/cli/project_templates/telco/data/network/flow_reset_router.yml,sha256=IFp8WSVclHQKQlM7dJphKBtRcIGXO_l4CmvTvvuGG8A,258
|
|
308
|
+
rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml,sha256=5z_Lvt1glTEnvj71a9hG2kWGPWvCcb7_9ZoidIwczc8,3997
|
|
309
|
+
rasa/cli/project_templates/telco/docs/docs.md,sha256=RStqzq76CLsmaqMnklFTE5aL5NTG_4O6gn49I85POc4,414
|
|
310
|
+
rasa/cli/project_templates/telco/docs/network/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
|
|
311
|
+
rasa/cli/project_templates/telco/docs/network/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
|
|
312
|
+
rasa/cli/project_templates/telco/docs/network/run_speed_test.txt,sha256=VTVPiH0G1Tf-f42yetkl5_LyJB5D9e6-Ean0EZzm3dI,627
|
|
313
|
+
rasa/cli/project_templates/telco/domain/billing/domain_undertand_bill.yml,sha256=-KYKDbqew12esbmHzAgGXr5epitsgNhNCfxy9HSnCeA,2331
|
|
314
|
+
rasa/cli/project_templates/telco/domain/general/bot_challenge.yml,sha256=eqA8cZoSZCiJx15WgzmXwywn4vwKjsssWnxVC7xJk1E,146
|
|
315
|
+
rasa/cli/project_templates/telco/domain/general/feedback.yml,sha256=EPdP41J0lB79S9WftTOMECSAcsZcGlKU9EAsPy2rNsk,1076
|
|
316
|
+
rasa/cli/project_templates/telco/domain/general/goodbye.yml,sha256=71xewqih1_jZfh1f_izcACRva-hZE3k1NHTMvtd_ApY,333
|
|
317
|
+
rasa/cli/project_templates/telco/domain/general/hello.yml,sha256=CiZbfcrbEHqcXc-xPehJnDVeh4z0D7tikdSYYnx_3nI,107
|
|
318
|
+
rasa/cli/project_templates/telco/domain/general/human_handoff.yml,sha256=YoKdYHzGPzCKiIvuQpr06M-cHH_p7mzis-cCteuUn2Q,771
|
|
319
|
+
rasa/cli/project_templates/telco/domain/general/patterns.yml,sha256=YmJ2uBoSfh-KvuPrxGBNOiibgYgYmoJj2AwGb3zf9eA,1075
|
|
320
|
+
rasa/cli/project_templates/telco/domain/network/domain_reboot_router.yml,sha256=lh-lfRUrO6C6jw2iqJk2-qC217JB2q5DPLS7PjLFhsw,441
|
|
321
|
+
rasa/cli/project_templates/telco/domain/network/domain_reset_router.yml,sha256=x184d8fLHakZDswzi8_sRxuXheIwm4rJCYNe2j3qLMk,413
|
|
322
|
+
rasa/cli/project_templates/telco/domain/network/domain_run_speed_test.yml,sha256=SxzdIooULal3BmsCAfDSdwKRbtV3PyXtSEOUTWRWS3c,493
|
|
323
|
+
rasa/cli/project_templates/telco/domain/network/domain_solve_internet_issue.yml,sha256=ZpVoXQKJfS4Ra-qy89ktRURcwMnPQ51PDPyc1vyQl60,2762
|
|
324
|
+
rasa/cli/project_templates/telco/domain/shared.yml,sha256=TYe6yeIITCVzxvp-LBE9n38TErP4h37SB4jShpjEVuM,3399
|
|
325
|
+
rasa/cli/project_templates/telco/endpoints.yml,sha256=PHKT7hxu8bBdz_wBl1qakMKz4SheW2nlnIT9PeYSYLM,2151
|
|
326
|
+
rasa/cli/project_templates/telco/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Cs-wGhaDui6WLrxPiJJmsrqm8hbvkfB3u_06JRFOiRY,1977
|
|
54
327
|
rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
328
|
rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
|
|
56
|
-
rasa/cli/project_templates/tutorial/config.yml,sha256=
|
|
329
|
+
rasa/cli/project_templates/tutorial/config.yml,sha256=jSoFhtr8hA-CFb8g0PaJHwpU0YKsmHSen-E1FZ7dyeE,267
|
|
57
330
|
rasa/cli/project_templates/tutorial/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
58
331
|
rasa/cli/project_templates/tutorial/data/flows.yml,sha256=mTzRicdj-Pbb95Hi3mhno4KLEka4iXxxceVtvypWNOE,243
|
|
59
332
|
rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHNwKFRPlC1wHBC9im0KrLgl7Qc,464
|
|
60
333
|
rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
|
|
61
334
|
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=ZZfchpZLo5MObU5JVXPqBi8KrKe8gzsZskSDAjpfS9E,1788
|
|
62
335
|
rasa/cli/run.py,sha256=QnmVCXORZambJzee1z3wMa3Ki8cPwSsImgQ2hbvbpuU,4632
|
|
63
|
-
rasa/cli/scaffold.py,sha256=
|
|
336
|
+
rasa/cli/scaffold.py,sha256=jWEuNUy2RmxL7zAgytaV7JUK2SIe0xh8weXxjGe39PY,9578
|
|
64
337
|
rasa/cli/shell.py,sha256=B3HEDiqRlqKfW0ZEHd9A-uqU9vo2-2VTWtKfQoPn74k,4667
|
|
65
338
|
rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
339
|
rasa/cli/studio/download.py,sha256=5uLdnW60JQ1NkUcJfK_be2pKjVOtYzCCjNAQpfGkYnM,1163
|
|
@@ -79,7 +352,7 @@ rasa/cli/x.py,sha256=T10e6bVUx5BadZOt3JJ4T5EByiR5jJ2hv5ExXOnt9F8,6839
|
|
|
79
352
|
rasa/constants.py,sha256=ddT6MLksS96Jeav0waBMu3Z5yocBPgC695-IYE9EbXM,1389
|
|
80
353
|
rasa/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
354
|
rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
rasa/core/actions/action.py,sha256=
|
|
355
|
+
rasa/core/actions/action.py,sha256=lXijh3mdqX2xhCLPzo03b3r7mW76qMhL90hWeGpdKlA,42725
|
|
83
356
|
rasa/core/actions/action_clean_stack.py,sha256=xUP-2ipPsPAnAiwP17c-ezmHPSrV4JSUZr-eSgPQwIs,2279
|
|
84
357
|
rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
|
|
85
358
|
rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
|
|
@@ -122,34 +395,34 @@ rasa/core/channels/inspector/assets/favicon.ico,sha256=w0X2YObf80IlAY80eLK2qE0Gv
|
|
|
122
395
|
rasa/core/channels/inspector/assets/rasa-chat.js,sha256=JtGjdh_1d7HLTZXnFNoBh0XrJRe6yuDNygQsAJVK04Y,772925
|
|
123
396
|
rasa/core/channels/inspector/custom.d.ts,sha256=b3klfKJ7AlM0SpCm0U-qSwLsJtj7abtp8IwgRZ2sK5c,51
|
|
124
397
|
rasa/core/channels/inspector/dist/assets/Tableau10-1b767f5e.js,sha256=eJvfgcZZGjK8JpGsLNf2Gh88HYOzRHKnr6BrgKqdDLo,188
|
|
125
|
-
rasa/core/channels/inspector/dist/assets/arc-
|
|
398
|
+
rasa/core/channels/inspector/dist/assets/arc-18042c22.js,sha256=XENJokKCaYGcvnuyTz4NEcp45VRU5A6cubX9anWTIK0,3463
|
|
126
399
|
rasa/core/channels/inspector/dist/assets/array-9f3ba611.js,sha256=SwE3teHXhGC3dibkXwDhCeL-8DgcIc8lM6VKsK05dAY,86
|
|
127
|
-
rasa/core/channels/inspector/dist/assets/blockDiagram-38ab4fdb-
|
|
128
|
-
rasa/core/channels/inspector/dist/assets/c4Diagram-3d4e48cf-
|
|
129
|
-
rasa/core/channels/inspector/dist/assets/channel-
|
|
130
|
-
rasa/core/channels/inspector/dist/assets/classDiagram-70f12bd4-
|
|
131
|
-
rasa/core/channels/inspector/dist/assets/classDiagram-v2-f2320105-
|
|
132
|
-
rasa/core/channels/inspector/dist/assets/clone-
|
|
133
|
-
rasa/core/channels/inspector/dist/assets/createText-2e5e7dd3-
|
|
134
|
-
rasa/core/channels/inspector/dist/assets/edges-e0da2a9e-
|
|
135
|
-
rasa/core/channels/inspector/dist/assets/erDiagram-9861fffd-
|
|
136
|
-
rasa/core/channels/inspector/dist/assets/flowDb-956e92f1-
|
|
137
|
-
rasa/core/channels/inspector/dist/assets/flowDiagram-66a62f08-
|
|
138
|
-
rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-
|
|
139
|
-
rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-4a651766-
|
|
140
|
-
rasa/core/channels/inspector/dist/assets/ganttDiagram-c361ad54-
|
|
141
|
-
rasa/core/channels/inspector/dist/assets/gitGraphDiagram-72cf32ee-
|
|
142
|
-
rasa/core/channels/inspector/dist/assets/graph-
|
|
400
|
+
rasa/core/channels/inspector/dist/assets/blockDiagram-38ab4fdb-fdd6bcfa.js,sha256=cK__5wUCEBwud2ANR3GVlAVJJJMW4GOI4us8V43RnLc,37803
|
|
401
|
+
rasa/core/channels/inspector/dist/assets/c4Diagram-3d4e48cf-f5ae6786.js,sha256=bF4Pw1W6p1uf3cXDH-nHEcbxmCXKLniqMFzx3elKSC0,68413
|
|
402
|
+
rasa/core/channels/inspector/dist/assets/channel-b9b536fc.js,sha256=PeVY44oVx-k7z_588kbFG6DRKJR5-IfoTNSH2ElbyXw,112
|
|
403
|
+
rasa/core/channels/inspector/dist/assets/classDiagram-70f12bd4-81efba3e.js,sha256=yajGYYA7I8PRCnqjwVeMPAhCZm_jNMAxUrKpnrBzSM8,9241
|
|
404
|
+
rasa/core/channels/inspector/dist/assets/classDiagram-v2-f2320105-3b6b6a92.js,sha256=vHz_UTPSkXCOU19QUap-hfRy2C498QxiIfF1r58urts,5007
|
|
405
|
+
rasa/core/channels/inspector/dist/assets/clone-78d2ddcf.js,sha256=qSETSllS5bAoMiSWrZ8uVQNO4DBzvcdDHPjrn9jZDMw,92
|
|
406
|
+
rasa/core/channels/inspector/dist/assets/createText-2e5e7dd3-31422447.js,sha256=bDKuhqwzMdiP_TxTvV0stAJRYP-KloqgTfE71rhODp4,60204
|
|
407
|
+
rasa/core/channels/inspector/dist/assets/edges-e0da2a9e-518a90db.js,sha256=WnIlIKrzWtGR3HNzoGEYtQuYOXHN5H5MYmKublJv5MA,34468
|
|
408
|
+
rasa/core/channels/inspector/dist/assets/erDiagram-9861fffd-a6d3c25a.js,sha256=wiKKfIEBwNFuThWaRPZELleOcYSzvHMISugXzpiMU78,30812
|
|
409
|
+
rasa/core/channels/inspector/dist/assets/flowDb-956e92f1-e048c2be.js,sha256=AzAOl3-7kip-FUlzpHcqfLBdFpV8mi-DsD4Hpx-ElTU,46768
|
|
410
|
+
rasa/core/channels/inspector/dist/assets/flowDiagram-66a62f08-c7474c91.js,sha256=on72QphPOhFHszxplwazcOkcUtTejHVy_m-CafzFKnk,21637
|
|
411
|
+
rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-8b09c060.js,sha256=x3Swx98Cxg1dBHZt4zgrmhJUIy1ufh2j5j9V4yIkyA8,737
|
|
412
|
+
rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-4a651766-cb4d8723.js,sha256=a8YH0ALSzxQSfWtzbEJJpvYGPawzllYQpS1kfcGK2X4,1451067
|
|
413
|
+
rasa/core/channels/inspector/dist/assets/ganttDiagram-c361ad54-346636a2.js,sha256=_8RM7UCtpw0yYPIwIW8eRJJpekh0JNjqo8cVzKtDC3E,60002
|
|
414
|
+
rasa/core/channels/inspector/dist/assets/gitGraphDiagram-72cf32ee-7c508874.js,sha256=apkYQm12Z7ZPi0cfWZtIMlGFadcI3stEekryhp7waXE,38738
|
|
415
|
+
rasa/core/channels/inspector/dist/assets/graph-14702d8a.js,sha256=eoV88-qhPn99BUsIgOED6rLIjh2FR9XxkHJXZW_AxFg,17877
|
|
143
416
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-128cfa44.ttf,sha256=Eoz6RFjRyATpNZMGZOlv9ZsWE5UT1kkrbuAxkWhiJG4,37048
|
|
144
417
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-21dbcb97.woff,sha256=IdvLl-5NXn80-Y6HpfrvOybL87mggsMqNn40gPIFfi8,17868
|
|
145
418
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-222b5e26.svg,sha256=IiteJlxkS9xpjbDYOpvFJczqQ9_3w207UajJT0Dot9U,53494
|
|
146
419
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-9ad89b2a.woff2,sha256=mtibKkueGawDuHB---uOqNvQZr0WT7JRcNMwFkFEM_c,13652
|
|
147
|
-
rasa/core/channels/inspector/dist/assets/index-3862675e-
|
|
420
|
+
rasa/core/channels/inspector/dist/assets/index-3862675e-f18b534b.js,sha256=GuCGLsKOzq1CunCc94QGYnNiZVqr-lIuQQDRYE0XSmM,11985
|
|
148
421
|
rasa/core/channels/inspector/dist/assets/index-3ee28881.css,sha256=PuKIgX4yh7tnbIq6Q4j9Vd8FgIWdPSI5GNFWJvy5Lwg,755
|
|
149
|
-
rasa/core/channels/inspector/dist/assets/index-
|
|
150
|
-
rasa/core/channels/inspector/dist/assets/infoDiagram-f8f76790-
|
|
422
|
+
rasa/core/channels/inspector/dist/assets/index-4d4bdf3a.js,sha256=rVC4KH4YxhQSOt6cDUsxsK8eXh5SbjZkAHraGEY7oHk,2467887
|
|
423
|
+
rasa/core/channels/inspector/dist/assets/infoDiagram-f8f76790-64154b83.js,sha256=DEoomQe_zdJw-Yfdc7WZp_idox5mFTq6IaPHlZddRyU,8590
|
|
151
424
|
rasa/core/channels/inspector/dist/assets/init-77b53fdd.js,sha256=N5-ogMFK1I9DsMI_9WswsrgI6EYP2fnK2L98snjFuBQ,147
|
|
152
|
-
rasa/core/channels/inspector/dist/assets/journeyDiagram-49397b02-
|
|
425
|
+
rasa/core/channels/inspector/dist/assets/journeyDiagram-49397b02-833a5f95.js,sha256=ZOk8XjjarbdnYKwyWF4iTwELGPQNP3nx2nlGBhTdqTY,21690
|
|
153
426
|
rasa/core/channels/inspector/dist/assets/katex-498eb57e.js,sha256=2SDaMVmSS3O4AVPdYMd-w_U7iD6-Q2qMs95ejt6ioGU,265384
|
|
154
427
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-60c05ee4.woff,sha256=YMBe5H52gxVUHkh9Ebku7FSn9TNvhM7Mi1glyHu3AFM,27848
|
|
155
428
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-8335d9b8.svg,sha256=gzXZuPYpxLQq9-vr05HjjwjTFssTQM_rXhm_S7MWGJE,80884
|
|
@@ -159,34 +432,34 @@ rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-16705655.woff2,s
|
|
|
159
432
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-5aeb07f9.woff,sha256=WusH-ZgGY8JQHJYgNx4Rrnqm4yDZTddT0O9W2DCMdLM,28412
|
|
160
433
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9c459044.ttf,sha256=nEWQRG2_g-2uBb5Moo73ie5QoB7yy48bUcWTfQKcrHY,60100
|
|
161
434
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9e2898a4.svg,sha256=niiYpDBKSyCaWoqDxzpwHOFozt1SLhac0y-RWplr0Oo,80331
|
|
162
|
-
rasa/core/channels/inspector/dist/assets/layout-
|
|
163
|
-
rasa/core/channels/inspector/dist/assets/line-
|
|
164
|
-
rasa/core/channels/inspector/dist/assets/linear-
|
|
165
|
-
rasa/core/channels/inspector/dist/assets/mindmap-definition-fc14e90a-
|
|
435
|
+
rasa/core/channels/inspector/dist/assets/layout-5a3b2123.js,sha256=uGUtByM166tPie3lRRStf1R4pikkFHgTxrHZT_eXFBs,29119
|
|
436
|
+
rasa/core/channels/inspector/dist/assets/line-2272a8c7.js,sha256=wQ0WMFPhjYzmAxbulju-k-EgdU8v3uK9HfOCLoXWlh0,945
|
|
437
|
+
rasa/core/channels/inspector/dist/assets/linear-35bcf273.js,sha256=YdAwlydlXzWcs3eDK0qlms3JHEOkSTSyFoCZF6bJFAQ,10174
|
|
438
|
+
rasa/core/channels/inspector/dist/assets/mindmap-definition-fc14e90a-92dcb0e9.js,sha256=4Y60pkg6KO7o1iWbK8FWLECP5X89E2m8-YdBmuIXL6A,519607
|
|
166
439
|
rasa/core/channels/inspector/dist/assets/ordinal-ba9b4969.js,sha256=ibjC65zmAGwJyDhiJ6dEDb7WoRtNtlGkJQEYN6FngOk,1189
|
|
167
440
|
rasa/core/channels/inspector/dist/assets/path-53f90ab3.js,sha256=In0rN0CWcPz7tHv2Esg5lWjqEj4FalcuzhiQ3lm6jcs,2282
|
|
168
|
-
rasa/core/channels/inspector/dist/assets/pieDiagram-8a3498a8-
|
|
169
|
-
rasa/core/channels/inspector/dist/assets/quadrantDiagram-120e2f19-
|
|
170
|
-
rasa/core/channels/inspector/dist/assets/requirementDiagram-deff3bca-
|
|
171
|
-
rasa/core/channels/inspector/dist/assets/sankeyDiagram-04a897e0-
|
|
172
|
-
rasa/core/channels/inspector/dist/assets/sequenceDiagram-704730f1-
|
|
173
|
-
rasa/core/channels/inspector/dist/assets/stateDiagram-587899a1-
|
|
174
|
-
rasa/core/channels/inspector/dist/assets/stateDiagram-v2-d93cdb3a-
|
|
175
|
-
rasa/core/channels/inspector/dist/assets/styles-6aaf32cf-
|
|
176
|
-
rasa/core/channels/inspector/dist/assets/styles-9a916d00-
|
|
177
|
-
rasa/core/channels/inspector/dist/assets/styles-c10674c1-
|
|
178
|
-
rasa/core/channels/inspector/dist/assets/svgDrawCommon-08f97a94-
|
|
179
|
-
rasa/core/channels/inspector/dist/assets/timeline-definition-85554ec2-
|
|
180
|
-
rasa/core/channels/inspector/dist/assets/xychartDiagram-e933f94c-
|
|
181
|
-
rasa/core/channels/inspector/dist/index.html,sha256=
|
|
182
|
-
rasa/core/channels/inspector/index.html,sha256=
|
|
441
|
+
rasa/core/channels/inspector/dist/assets/pieDiagram-8a3498a8-94dbc900.js,sha256=HwF0vlVBJYIMeNSRiLpfAT51JBQQ3bYtW3CWjrla2Qg,15016
|
|
442
|
+
rasa/core/channels/inspector/dist/assets/quadrantDiagram-120e2f19-8b7a9c33.js,sha256=82kiw0Ylu0sB60bHuOinlUceWWopy9h76HcDJQIVtR4,29413
|
|
443
|
+
rasa/core/channels/inspector/dist/assets/requirementDiagram-deff3bca-6f7eab81.js,sha256=CJDT-FPRGbQL4AvskgA1TibHBqXFTNSMUY7lZ2byySg,24623
|
|
444
|
+
rasa/core/channels/inspector/dist/assets/sankeyDiagram-04a897e0-f43e581d.js,sha256=TtzgOnUJ8tuMNmjwp3ALaNNbYJiL3MPzu_soZeE7huI,21219
|
|
445
|
+
rasa/core/channels/inspector/dist/assets/sequenceDiagram-704730f1-0bcbefc3.js,sha256=Hu-4Xt7Glcy-W0wtDkqx52-jghEv-vxF9U5HtOU-k7M,84129
|
|
446
|
+
rasa/core/channels/inspector/dist/assets/stateDiagram-587899a1-b8a74083.js,sha256=dMStf7fvd1N3MLl3zxcQZnrb5ubWhah6vRhGXXwXlSU,10125
|
|
447
|
+
rasa/core/channels/inspector/dist/assets/stateDiagram-v2-d93cdb3a-2070218f.js,sha256=XJQstSYCzUpjQSkM2qBuYUILPTCzBiIjSm7O-XJOaGc,4863
|
|
448
|
+
rasa/core/channels/inspector/dist/assets/styles-6aaf32cf-f1d54e34.js,sha256=6yiDO5qiX7qYqQi23AqdMBW_lPtirFeZfOQ9LETakp4,26432
|
|
449
|
+
rasa/core/channels/inspector/dist/assets/styles-9a916d00-980de489.js,sha256=pF0hHcPpeeFjQNjCyxpaQfPVwA9fUEkHnlgDUEMMNxQ,37855
|
|
450
|
+
rasa/core/channels/inspector/dist/assets/styles-c10674c1-3c03abde.js,sha256=5U850e8Lila7mR_Xl_BdGn0WGdeNUnpXrEC3wd0vzy8,10055
|
|
451
|
+
rasa/core/channels/inspector/dist/assets/svgDrawCommon-08f97a94-46ba068f.js,sha256=T9m-bR2jLYwERUOkUeyNwF6G3KDfodylOnvK0yUek30,1334
|
|
452
|
+
rasa/core/channels/inspector/dist/assets/timeline-definition-85554ec2-901f5e3d.js,sha256=UPgoShD09UVkOuYWcwgMi_c4lR1I2eaMF1zMJyZLdR4,22627
|
|
453
|
+
rasa/core/channels/inspector/dist/assets/xychartDiagram-e933f94c-acbc628a.js,sha256=N_Z8HnS3CAz7KDxV9PNwMZkpJoGlvXhM0wYcdkMSS2s,37266
|
|
454
|
+
rasa/core/channels/inspector/dist/index.html,sha256=06ny4YmkordIihO0Uk7d7HINdgyFUNpa8sW0nUPYHh4,2761
|
|
455
|
+
rasa/core/channels/inspector/index.html,sha256=98zTIw3U5XkLiibL44Rc3jXS1E6VakgocW_Bk8O8IM0,1701
|
|
183
456
|
rasa/core/channels/inspector/jest.config.ts,sha256=pDs-0q6gs0Jnm9mWKq5M1vC5wiX_Cnh4l6s--dBsskM,406
|
|
184
457
|
rasa/core/channels/inspector/package.json,sha256=Ic3U6T5YiJhP9zwzdcGAVOYwKWw7dbquC25E8G8GBBo,1827
|
|
185
458
|
rasa/core/channels/inspector/setupTests.ts,sha256=JaGsnR6noIcuD5kLjb9SiOkXwJARLV_gF0dULtlWPqk,75
|
|
186
|
-
rasa/core/channels/inspector/src/App.tsx,sha256=
|
|
459
|
+
rasa/core/channels/inspector/src/App.tsx,sha256=S4Gh4bHE6S2ETi9SgpvoDJFMnBqws8BuznFGB4FqPc8,8979
|
|
187
460
|
rasa/core/channels/inspector/src/components/Chat.tsx,sha256=0cAil5LZ93ZDlPsnrSaR7LthMurny0EaXFBmlJVq50Q,3305
|
|
188
461
|
rasa/core/channels/inspector/src/components/DiagramFlow.tsx,sha256=gMGFVP1_9MsgJ6m7XRXlbBVJKLV4Q5bNXsHz0zo54O0,2719
|
|
189
|
-
rasa/core/channels/inspector/src/components/DialogueInformation.tsx,sha256=
|
|
462
|
+
rasa/core/channels/inspector/src/components/DialogueInformation.tsx,sha256=ptxr-rgKzb-Ngx-ZPfP79_nczFxGJ2zn3NBKFAD-w_Q,5360
|
|
190
463
|
rasa/core/channels/inspector/src/components/DialogueStack.tsx,sha256=_SatHtSuypw7-mfPDHsyWM4LQfVUhpIFViQ6H40aieo,3022
|
|
191
464
|
rasa/core/channels/inspector/src/components/ExpandIcon.tsx,sha256=w0bkKbAHKXBs2pR3qDxYnZLCU0oAMa2JCsWBdcS_A7U,825
|
|
192
465
|
rasa/core/channels/inspector/src/components/FullscreenButton.tsx,sha256=ljxZw7aQE5ZjEk34dgc8RdGhYPLVvUbomuWZPkpi8bY,1001
|
|
@@ -255,7 +528,7 @@ rasa/core/channels/rest.py,sha256=LWBYBdVzOz5Vv5tZCkB1QA7LxXJFTeC87CQLAi_ZGeI,73
|
|
|
255
528
|
rasa/core/channels/rocketchat.py,sha256=hajaH6549CjEYFM5jSapw1DQKBPKTXbn7cVSuZzknmI,5999
|
|
256
529
|
rasa/core/channels/slack.py,sha256=jVsTTUu9wUjukPoIsAhbee9o0QFUMCNlQHbR8LTcMBc,24406
|
|
257
530
|
rasa/core/channels/socketio.py,sha256=N3aldDMzXotO85lX5pkmVtVq7g6gh9YpUpQpbAH3ogs,17560
|
|
258
|
-
rasa/core/channels/studio_chat.py,sha256=
|
|
531
|
+
rasa/core/channels/studio_chat.py,sha256=WieWixHQm3p_laVGqobxI_1vN3M_jhNyi2ZkacutwxI,23502
|
|
259
532
|
rasa/core/channels/telegram.py,sha256=TKVknsk3U9tYeY1a8bzlhqkltWmZfGSOvrcmwa9qozc,12499
|
|
260
533
|
rasa/core/channels/twilio.py,sha256=2BTQpyx0b0yPpc0A2BHYfxLPgodrLGLs8nq6i3lVGAM,5906
|
|
261
534
|
rasa/core/channels/vier_cvg.py,sha256=5O4yx0TDQIMppvlCxTOzmPB60CA-vqQXqWQ7upfrTO0,13496
|
|
@@ -322,7 +595,7 @@ rasa/core/nlg/translate.py,sha256=ZXRvysqXGdtHBJ7x3YkW6zfmnb9DuEGHCMTL41v-M8M,21
|
|
|
322
595
|
rasa/core/persistor.py,sha256=7LCZHAwCM-xrUI38aaJ5dkxJvLdJXWI1TEUKsBo4_EE,21295
|
|
323
596
|
rasa/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
597
|
rasa/core/policies/ensemble.py,sha256=XoHxU0jcb_io_LBOpjJffylzqtGEB7CH9ivhRyO8pDc,12960
|
|
325
|
-
rasa/core/policies/enterprise_search_policy.py,sha256=
|
|
598
|
+
rasa/core/policies/enterprise_search_policy.py,sha256=834XdLbK8Ie0TDIx8UsKnY2y4OCEa1PM1Fk1xgcU-5Y,46816
|
|
326
599
|
rasa/core/policies/enterprise_search_policy_config.py,sha256=rTIGBrfGfe_lvsYQW1cU20tza07p_-oxFfjXhw7-phc,8644
|
|
327
600
|
rasa/core/policies/enterprise_search_prompt_template.jinja2,sha256=dCS_seyBGxMQoMsOjjvPp0dd31OSzZCJSZeev1FJK5Q,1187
|
|
328
601
|
rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256=va9rpP97dN3PKoJZOVfyuISt3cPBlb10Pqyz25RwO_Q,3294
|
|
@@ -330,7 +603,7 @@ rasa/core/policies/enterprise_search_prompt_with_relevancy_check_and_citation_te
|
|
|
330
603
|
rasa/core/policies/flow_policy.py,sha256=Rvx5MIGDHi9sVxGazf-dXs6F-hFHSi3UoVjjSP8ATik,7470
|
|
331
604
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
605
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
333
|
-
rasa/core/policies/flows/flow_executor.py,sha256=
|
|
606
|
+
rasa/core/policies/flows/flow_executor.py,sha256=aX0cTQVapM_yPxecEWeqbT2uTMfZSZa46qCUCVjsWIc,28879
|
|
334
607
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
335
608
|
rasa/core/policies/intentless_policy.py,sha256=1A7FSkI4PQdN3t1p3GQhSImmO-m6UVCUzzEsjxz4nKc,38040
|
|
336
609
|
rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
|
|
@@ -403,7 +676,7 @@ rasa/dialogue_understanding/generator/command_parser.py,sha256=XVqNRZXaGyuTXqwyJ
|
|
|
403
676
|
rasa/dialogue_understanding/generator/command_parser_validator.py,sha256=qUIaKBRhH6Q-BGOELJLRvgv3gwUf75el-kw7p0v7eWI,2293
|
|
404
677
|
rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
|
|
405
678
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
406
|
-
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=
|
|
679
|
+
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=TF0QEM7q8KpyDYIJDu0Ym6K-ObjCOw4EEUbGXdpgPvY,17732
|
|
407
680
|
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=dori1F756kxOv-VkYetGPnacTsoTYHIUt1mTqt050Qs,23585
|
|
408
681
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=z7jhIJ3W_5GFH-p15kVoWbigMIoY8fIJjc_j_uX7yxw,2581
|
|
409
682
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -513,7 +786,7 @@ rasa/engine/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
513
786
|
rasa/engine/runner/dask.py,sha256=ocmpRpDpRPMaisZcBFDeUPbWGl6oWiU9UXyWimE9074,9476
|
|
514
787
|
rasa/engine/runner/interface.py,sha256=zkaKe5vjiYrR7Efepr7LVZRJEGNDM959rkdR62vEgTM,1679
|
|
515
788
|
rasa/engine/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
516
|
-
rasa/engine/storage/local_model_storage.py,sha256=
|
|
789
|
+
rasa/engine/storage/local_model_storage.py,sha256=Y2VKg04I63WgIL9XeLhJs7SkQMRqUziKyTj9QnhTWZ8,11382
|
|
517
790
|
rasa/engine/storage/resource.py,sha256=sUCBNSIrjEr68wCj7D48hzmIih7ezmT88esMhyykA88,3932
|
|
518
791
|
rasa/engine/storage/storage.py,sha256=mNLptsu9cOXWu8k55CnjZMByv6eqh2rEOqXC9__k8aE,6930
|
|
519
792
|
rasa/engine/training/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -564,12 +837,12 @@ rasa/markers/validate.py,sha256=dZvMTcDK_sji9OP8JY4kUcjeIScLF93C3CKTWK8DplI,708
|
|
|
564
837
|
rasa/model.py,sha256=cAbQXvfZXBKHAj79Z0-mCy29hSSWp2KaroScgDeTfJw,3489
|
|
565
838
|
rasa/model_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
566
839
|
rasa/model_manager/config.py,sha256=8upZP4CokMBy0imiiPvINJuLW4JOQ326dPiJ041jJUI,1231
|
|
567
|
-
rasa/model_manager/model_api.py,sha256=
|
|
568
|
-
rasa/model_manager/runner_service.py,sha256=
|
|
840
|
+
rasa/model_manager/model_api.py,sha256=mfEWhbGaY0-ppajEB8NQJe0ColyEN1DiQKdE18mvwCg,23893
|
|
841
|
+
rasa/model_manager/runner_service.py,sha256=FyxYdd4m-8t4s0Iy1abSOcdZ29K0O_HZnbXPZ6D_4bw,9535
|
|
569
842
|
rasa/model_manager/socket_bridge.py,sha256=S_7aijsXuqHSlSscJfNw2Kt_iWXGfhwn6WhKA3FBLr0,5689
|
|
570
843
|
rasa/model_manager/studio_jwt_auth.py,sha256=uls2QiHUlUrR3fOzZssW4UaAMJMfnPMZeV1aDmZIT0E,2645
|
|
571
|
-
rasa/model_manager/trainer_service.py,sha256
|
|
572
|
-
rasa/model_manager/utils.py,sha256=
|
|
844
|
+
rasa/model_manager/trainer_service.py,sha256=-PgNgLDkzyPynUN73C8qGQaMfHJV1JNmm5gepyVnXak,10779
|
|
845
|
+
rasa/model_manager/utils.py,sha256=0tYmzBcta_9h4cpbHtrH1hUqd-qzjl0xmveStTBPmGo,1695
|
|
573
846
|
rasa/model_manager/warm_rasa_process.py,sha256=2vg8gBEUvPrr6C5W-fxtWWSajksrOaT83CTk6S4KCkg,5843
|
|
574
847
|
rasa/model_service.py,sha256=XXCaiLj2xq58n05W3R1jmTIv-V8f_7PG30kVpRxf71Y,3727
|
|
575
848
|
rasa/model_testing.py,sha256=eZw7l8Zz3HkH_ZPBurY93HzzudHdoQn8HBnDdZSysAY,14929
|
|
@@ -647,13 +920,13 @@ rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
647
920
|
rasa/shared/core/command_payload_reader.py,sha256=aWmEe6NyGdGZ8qaCPxGZu1frLROv04SFbwPpZNrtj7Q,3741
|
|
648
921
|
rasa/shared/core/constants.py,sha256=_YGXcxuIsgug7P-__KQJbrUjkK-gT_RfWjBESy9QZTo,6410
|
|
649
922
|
rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1hG5c,1384
|
|
650
|
-
rasa/shared/core/domain.py,sha256=
|
|
923
|
+
rasa/shared/core/domain.py,sha256=_0rYtm9m_NJGadFOoq2SsJvSGZj4F_owXxdQTXXIyI0,88498
|
|
651
924
|
rasa/shared/core/events.py,sha256=FAWCA0JXim89u4AcWLKCt4F9A0pkYDE5NhCIyiKwWTM,89973
|
|
652
925
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
653
926
|
rasa/shared/core/flows/constants.py,sha256=uno5qtsWl8lxELsDe04_5tJH1tBgj6uRRr_g83s10xA,404
|
|
654
927
|
rasa/shared/core/flows/flow.py,sha256=M-_AUkT7dk2DU8jhA_fWtALumY6jWny6pV-aF13B4YA,29462
|
|
655
928
|
rasa/shared/core/flows/flow_path.py,sha256=xstwahZBU5cfMY46mREA4NoOGlKLBRAqeP_mJ3UZqOI,2283
|
|
656
|
-
rasa/shared/core/flows/flow_step.py,sha256=
|
|
929
|
+
rasa/shared/core/flows/flow_step.py,sha256=SuNz6AywDT2gLjbMm4wMJuk3HrlB_uS_46llTFwZgzg,5200
|
|
657
930
|
rasa/shared/core/flows/flow_step_links.py,sha256=UNlE8xuhi-8R3CL2HPLEp0sAaKP_Obhv5yHSRNsiP8Q,11054
|
|
658
931
|
rasa/shared/core/flows/flow_step_sequence.py,sha256=yFtG_1ihI7hUK8I1izawMWVPPct4uh1iW2U0BVeCzUk,2537
|
|
659
932
|
rasa/shared/core/flows/flows_list.py,sha256=9KKvkLeNSe1oTZUpXAX-EvqYOKcXe5OQdZ-anut5bQc,9415
|
|
@@ -661,7 +934,7 @@ rasa/shared/core/flows/flows_yaml_schema.json,sha256=vXdIv5t_xQhzzhF_9J-IPv8s7Sp
|
|
|
661
934
|
rasa/shared/core/flows/nlu_trigger.py,sha256=ujLXFo5WjIwtwRVEdxZkaE2fbd4KEmayeFPAd1mF26I,4352
|
|
662
935
|
rasa/shared/core/flows/steps/__init__.py,sha256=jvJp02o9_Wx-rZeQ3SYiLVMpO6ulS1yKuiiKg0ld_nE,655
|
|
663
936
|
rasa/shared/core/flows/steps/action.py,sha256=fRtNXLCK-r74tX3-rHyn_eKv7cRYRoNfEW2lCK0VdrQ,1920
|
|
664
|
-
rasa/shared/core/flows/steps/call.py,sha256=
|
|
937
|
+
rasa/shared/core/flows/steps/call.py,sha256=qW45V9-weS1ZAPZ-kXhncNKA0z6VKg90ry-So4b5kXM,2627
|
|
665
938
|
rasa/shared/core/flows/steps/collect.py,sha256=XQSGnPeC_vS-qDvJInBc5uZ9-9p-AQZZXRAh7LMCfnE,5775
|
|
666
939
|
rasa/shared/core/flows/steps/constants.py,sha256=DCxrEUGbJciBknHm-_t4tmcnH19IZKP-WYxqix9gm7M,132
|
|
667
940
|
rasa/shared/core/flows/steps/continuation.py,sha256=5Rzayr80FsgS4bAajuRObVvVcLqPEh9nxGbT2te85xY,1498
|
|
@@ -673,12 +946,12 @@ rasa/shared/core/flows/steps/set_slots.py,sha256=NnPyHxY5gBiJ83qTbxRmgKh8BIMdi9U
|
|
|
673
946
|
rasa/shared/core/flows/steps/start.py,sha256=AJpKIm0S3GZYLEs3ybXW0Zrq03Pu9lvirNahiUy2I6k,1010
|
|
674
947
|
rasa/shared/core/flows/utils.py,sha256=wqPWuEgYcbGMTs6wuckX400Sq1_Jz8yKYd2t91p3e8U,2270
|
|
675
948
|
rasa/shared/core/flows/validation.py,sha256=7X0O0gxJrgF91iZpFxLK28yz0JCUhozkra1qF3eMtPs,28438
|
|
676
|
-
rasa/shared/core/flows/yaml_flows_io.py,sha256=
|
|
949
|
+
rasa/shared/core/flows/yaml_flows_io.py,sha256=Rms-ghe0DUX2Kvd7kZRIETSGaHCoGvtgw08LCmch00E,18436
|
|
677
950
|
rasa/shared/core/generator.py,sha256=UAuBPu5UjUhL9djVK-PvrWZcNhRACOEgnRsTleV7eeY,35686
|
|
678
951
|
rasa/shared/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
679
952
|
rasa/shared/core/policies/utils.py,sha256=rWE_-48Ovc__V7wOKCJ-2lTerVRtN3iRHV4ZvuU2b2g,3070
|
|
680
953
|
rasa/shared/core/slot_mappings.py,sha256=afWxJsnAdHPzIxpHBBG1NbK4JBBWSsua3_xq87PKEZA,26663
|
|
681
|
-
rasa/shared/core/slots.py,sha256=
|
|
954
|
+
rasa/shared/core/slots.py,sha256=KIPgT8qwsWrVAHd1Vzs9PQPjVRBVVeBr8Vdfm8UoltQ,30146
|
|
682
955
|
rasa/shared/core/trackers.py,sha256=LwePm-7-QySHHhCWzXkTnJgcLaqvyG0DwLhJ6EWG0NM,45583
|
|
683
956
|
rasa/shared/core/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
684
957
|
rasa/shared/core/training_data/loading.py,sha256=RCx1uTI9iDejFI_sWg3qPzhjln7-hu78f3EDAT6K0No,2894
|
|
@@ -697,11 +970,11 @@ rasa/shared/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
697
970
|
rasa/shared/engine/caching.py,sha256=SfiDl-xtkBbOU3qiSYi9rTA136kS4v5fixIS7vJuAP4,742
|
|
698
971
|
rasa/shared/exceptions.py,sha256=YAvVWVEX4D95Q_SwlwZUDs5IG9mJnkTVr6jwx6dk__g,5254
|
|
699
972
|
rasa/shared/importers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
700
|
-
rasa/shared/importers/importer.py,sha256=
|
|
973
|
+
rasa/shared/importers/importer.py,sha256=o3UYBMZYFsgBJvZF3CjjDpB3wFC3_-lT2tT0iICPLKU,29788
|
|
701
974
|
rasa/shared/importers/multi_project.py,sha256=73fzUGDFpzHt9Nhy3EmPZg5mHj1EApmFiLoxitOX-EQ,8137
|
|
702
975
|
rasa/shared/importers/rasa.py,sha256=04ohlwnqllfFDJPcmE32SkMNg1TMKwKnsfNlzeGJWUc,4086
|
|
703
976
|
rasa/shared/importers/remote_importer.py,sha256=fKLQskaCVPpD5cCMQ9sR71cZZlSIP-SSv3J3o2kra2w,7696
|
|
704
|
-
rasa/shared/importers/utils.py,sha256=
|
|
977
|
+
rasa/shared/importers/utils.py,sha256=xmQzhMs-eEB9kKjrtfp5E-x6oYE4ZjekQv8sOs2UwpE,3629
|
|
705
978
|
rasa/shared/nlu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
706
979
|
rasa/shared/nlu/constants.py,sha256=EVMuFXWX_SspnB7FFi8gf-ZHDjdESxalNJI9h7sjG9g,1919
|
|
707
980
|
rasa/shared/nlu/interpreter.py,sha256=eCNJp61nQYTGVf4aJi8SCWb46jxZY6-C1M1LFxMyQTM,188
|
|
@@ -800,9 +1073,9 @@ rasa/studio/pull/pull.py,sha256=Qr-Ms4pXNS04hvdciZCfbeC1hag6v2puwhHwhcFpA8Q,7750
|
|
|
800
1073
|
rasa/studio/push.py,sha256=_EopU6RQnbQub33x0TVXOTWCYUfOQMDc6KdDNmltLMs,4279
|
|
801
1074
|
rasa/studio/results_logger.py,sha256=lwKROoQjzzJVnFoceLQ-z-5Hg35TfHo-8R4MDrMLYHY,5126
|
|
802
1075
|
rasa/studio/train.py,sha256=-UTPABXNWlnp3iIMKeslgprEtRQWcr8mF-Q7bacKxEw,4240
|
|
803
|
-
rasa/studio/upload.py,sha256
|
|
1076
|
+
rasa/studio/upload.py,sha256=-PJ9OX9hdmjC4TGTm219zQsCQXWOJvg7i4BDkmTctxA,21762
|
|
804
1077
|
rasa/studio/utils.py,sha256=WgPbmMcdb3yuZU36zxFqUkJwqi5ma7TZT4Y-mXYe54k,1429
|
|
805
|
-
rasa/telemetry.py,sha256=
|
|
1078
|
+
rasa/telemetry.py,sha256=fuLXnFkap88A61OMfJ2wVLrwF2harYQqSyKMicCC9R8,72084
|
|
806
1079
|
rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
807
1080
|
rasa/tracing/config.py,sha256=Ev4U0Z_P-0JMxEtyjWFgyaoSluNlAm5tTm5wBr-7F0I,13083
|
|
808
1081
|
rasa/tracing/constants.py,sha256=l7RUgan0BebsZxZifLDfj9_lWIqdStJ-3Ny-44wTLrM,3690
|
|
@@ -818,12 +1091,13 @@ rasa/utils/cli.py,sha256=L-DT4nPdVBWfc2m1COHrziLitVWJxazSreb6JLbTho4,865
|
|
|
818
1091
|
rasa/utils/common.py,sha256=olhHFy4FmolRgiU2dt4aHAZK2r2exb7T6tw5PsHQDrQ,21549
|
|
819
1092
|
rasa/utils/converter.py,sha256=H4LHpoAK7MXMmvNZG_uSn0gbccCJvHtsA2-6Zya4u6M,1656
|
|
820
1093
|
rasa/utils/endpoints.py,sha256=jX9xSI_3KJ-NpzymyfaO-Zj-ISaWbA4ql2Kx3NulBvE,10905
|
|
821
|
-
rasa/utils/io.py,sha256=
|
|
822
|
-
rasa/utils/json_utils.py,sha256=
|
|
1094
|
+
rasa/utils/io.py,sha256=E5zl3j2k7_-o-tzXKRkW5zcXcslnj7R_cke2AYKZ14g,7800
|
|
1095
|
+
rasa/utils/json_utils.py,sha256=7qqojac0JKwoF0t4XbKWa43sxCkTk_QIQ9pyLhP-Zv8,1886
|
|
823
1096
|
rasa/utils/licensing.py,sha256=SP_jm0S1hpwPGh9bQaJviBL0Eu4xuwToObWTZRLaouQ,20768
|
|
824
|
-
rasa/utils/log_utils.py,sha256=
|
|
1097
|
+
rasa/utils/log_utils.py,sha256=v67VVOqiuWAtYCPaSMGdWaCz7FV6IMbsT-y2ZquPwaw,5611
|
|
825
1098
|
rasa/utils/mapper.py,sha256=CZiD3fu7-W-OJgoB1R8JaOg-Hq13TK20D-zGVNgbF18,7726
|
|
826
1099
|
rasa/utils/ml_utils.py,sha256=y4Czr9GdRBj-a2npXU8ED2qC9bzw5olRyqQEmu5BB8k,4185
|
|
1100
|
+
rasa/utils/openapi.py,sha256=59bYTclJHieWp1evIikwWvFioDg6albxHaSGYVufPec,5646
|
|
827
1101
|
rasa/utils/plotting.py,sha256=QT30kYXQxqAL8ZECjwOOvawuWALJ_rcO3rBZY5PWF-s,12272
|
|
828
1102
|
rasa/utils/sanic_error_handler.py,sha256=nDL1hyBe8DRdXyXPJFCfWOn3GzTm--UypF7OT2KCra8,1152
|
|
829
1103
|
rasa/utils/singleton.py,sha256=w1-sZeBPwe84bod-CuAf8IX8sMJ36pu2UYHHm0eF3wI,565
|
|
@@ -847,10 +1121,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
|
|
|
847
1121
|
rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,21259
|
|
848
1122
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
849
1123
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
850
|
-
rasa/validator.py,sha256=
|
|
851
|
-
rasa/version.py,sha256=
|
|
852
|
-
rasa_pro-3.14.0.
|
|
853
|
-
rasa_pro-3.14.0.
|
|
854
|
-
rasa_pro-3.14.0.
|
|
855
|
-
rasa_pro-3.14.0.
|
|
856
|
-
rasa_pro-3.14.0.
|
|
1124
|
+
rasa/validator.py,sha256=_5IjhhzG-_LM5_Bpa09siEQATgFRYEsPp9FbOwXzVmM,83275
|
|
1125
|
+
rasa/version.py,sha256=znUhPzmeqmSWxZEiIduICsrnlsfOVjzK8X-li8DeCWQ,129
|
|
1126
|
+
rasa_pro-3.14.0.dev20250901.dist-info/METADATA,sha256=uepH3WcpCsY0a2Ewf9zVghcxLZmHgzx8dXYxu8yEi9U,10165
|
|
1127
|
+
rasa_pro-3.14.0.dev20250901.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
1128
|
+
rasa_pro-3.14.0.dev20250901.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
1129
|
+
rasa_pro-3.14.0.dev20250901.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
1130
|
+
rasa_pro-3.14.0.dev20250901.dist-info/RECORD,,
|