rasa-pro 3.14.0.dev20250901__py3-none-any.whl → 3.14.0.dev20250922__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/config.py +1 -0
- rasa/builder/copilot/constants.py +3 -0
- rasa/builder/copilot/copilot.py +128 -54
- rasa/builder/copilot/models.py +39 -3
- rasa/builder/copilot/prompts/copilot_system_prompt.jinja2 +183 -188
- rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2 +61 -0
- rasa/builder/copilot/telemetry.py +46 -20
- rasa/builder/document_retrieval/models.py +3 -3
- rasa/builder/download.py +1 -8
- rasa/builder/jobs.py +33 -21
- rasa/builder/main.py +38 -62
- rasa/builder/models.py +7 -7
- rasa/builder/project_generator.py +143 -147
- rasa/builder/service.py +42 -27
- rasa/builder/template_cache.py +69 -0
- rasa/builder/training_service.py +74 -4
- rasa/cli/project_templates/basic/README.md +23 -0
- rasa/cli/project_templates/basic/actions/actions.md +10 -0
- rasa/cli/project_templates/basic/config.yml +6 -4
- rasa/cli/project_templates/basic/data/data.md +5 -6
- rasa/cli/project_templates/basic/domain/domain.md +7 -5
- rasa/cli/project_templates/basic/domain/general/show_faqs.yml +1 -1
- rasa/cli/project_templates/basic/endpoints.yml +5 -1
- rasa/cli/project_templates/default/config.yml +4 -0
- rasa/cli/project_templates/default/endpoints.yml +4 -0
- rasa/cli/project_templates/finance/README.md +26 -0
- rasa/cli/project_templates/finance/actions/__init__.py +0 -46
- rasa/cli/project_templates/finance/actions/accounts/check_balance.py +18 -0
- rasa/cli/project_templates/finance/actions/actions.md +15 -0
- rasa/cli/project_templates/finance/actions/{transfers/action_process_immediate_payment.py → cards/check_that_card_exists.py} +6 -3
- rasa/cli/project_templates/finance/actions/cards/list_cards.py +22 -0
- rasa/cli/project_templates/finance/actions/contacts/__init__.py +0 -0
- rasa/cli/project_templates/finance/actions/contacts/add_contact.py +30 -0
- rasa/cli/project_templates/finance/actions/contacts/list_contacts.py +22 -0
- rasa/cli/project_templates/finance/actions/contacts/remove_contact.py +35 -0
- rasa/cli/project_templates/finance/actions/db.py +117 -0
- rasa/cli/project_templates/finance/actions/general/__init__.py +0 -0
- rasa/cli/project_templates/finance/actions/general/action_human_handoff.py +49 -0
- rasa/cli/project_templates/finance/actions/transfers/check_transfer_funds.py +27 -0
- rasa/cli/project_templates/finance/actions/transfers/check_transfer_limit.py +36 -0
- rasa/cli/project_templates/finance/actions/transfers/execute_recurrent_payment.py +20 -0
- rasa/cli/project_templates/finance/actions/transfers/execute_transfer.py +45 -0
- rasa/cli/project_templates/finance/actions/transfers/list_transactions.py +32 -0
- rasa/cli/project_templates/finance/config.yml +8 -0
- rasa/cli/project_templates/finance/credentials.yml +7 -6
- rasa/cli/project_templates/finance/data/accounts/check_balance.yml +3 -4
- rasa/cli/project_templates/finance/data/accounts/download_statements.yml +26 -0
- rasa/cli/project_templates/finance/data/bills/bill_pay_reminder.yml +25 -0
- rasa/cli/project_templates/finance/data/cards/activate_card.yml +35 -0
- rasa/cli/project_templates/finance/data/cards/block_card.yml +37 -58
- rasa/cli/project_templates/finance/data/cards/list_cards.yml +14 -0
- rasa/cli/project_templates/finance/data/cards/replace_card.yml +16 -0
- rasa/cli/project_templates/finance/data/cards/replace_eligible_card.yml +29 -0
- rasa/cli/project_templates/finance/data/contacts/add_contact.yml +33 -0
- rasa/cli/project_templates/finance/data/contacts/list_contacts.yml +14 -0
- rasa/cli/project_templates/finance/data/contacts/remove_contact.yml +31 -0
- rasa/cli/project_templates/finance/data/data.md +14 -0
- rasa/cli/project_templates/finance/data/general/bot_challenge.yml +6 -0
- rasa/cli/project_templates/finance/data/general/goodbye.yml +1 -1
- rasa/cli/project_templates/finance/data/general/hello.yml +1 -2
- rasa/cli/project_templates/finance/data/general/help.yml +2 -2
- rasa/cli/project_templates/finance/data/general/human_handoff.yml +2 -2
- rasa/cli/project_templates/finance/data/system/patterns/pattern_session_start.yml +1 -1
- rasa/cli/project_templates/finance/data/transfers/check_transfer_limit.yml +18 -0
- rasa/cli/project_templates/finance/data/transfers/list_transactions.yml +46 -0
- rasa/cli/project_templates/finance/data/transfers/move_money_between_accounts.yml +51 -0
- rasa/cli/project_templates/finance/data/transfers/transfer_money.yml +29 -62
- rasa/cli/project_templates/finance/data/transfers/transfer_money_to_a_third_party.yml +175 -0
- rasa/cli/project_templates/finance/db/cards.json +18 -0
- rasa/cli/project_templates/finance/db/contacts.json +10 -0
- rasa/cli/project_templates/finance/db/my_account.json +6 -0
- rasa/cli/project_templates/finance/db/transactions.json +22 -0
- rasa/cli/project_templates/finance/docs/docs.md +8 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/budgeting_analytics.txt +22 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/multi_currency_accounts.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/premium_benefits.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/contactless_limits.txt +16 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/freeze_unfreeze_card.txt +16 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/lost_stolen_card.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/money_transfers/instant_payments.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/money_transfers/international_transfers.txt +19 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/security_fraud/fraud_protection.txt +22 -0
- rasa/cli/project_templates/finance/docs/fenlo_banking_faq/security_fraud/secure_payments.txt +22 -0
- rasa/cli/project_templates/finance/domain/accounts/check_balance.yml +9 -5
- rasa/cli/project_templates/finance/domain/accounts/download_statements.yml +40 -0
- rasa/cli/project_templates/finance/domain/bills/bill_pay_reminder.yml +49 -0
- rasa/cli/project_templates/finance/domain/cards/activate_card.yml +24 -0
- rasa/cli/project_templates/finance/domain/cards/block_card.yml +33 -90
- rasa/cli/project_templates/finance/domain/cards/list_cards.yml +16 -0
- rasa/cli/project_templates/finance/domain/cards/replace_card.yml +43 -0
- rasa/cli/project_templates/finance/domain/cards/shared.yml +15 -0
- rasa/cli/project_templates/finance/domain/contacts/add_contact.yml +37 -0
- rasa/cli/project_templates/finance/domain/contacts/list_contacts.yml +16 -0
- rasa/cli/project_templates/finance/domain/contacts/remove_contact.yml +32 -0
- rasa/cli/project_templates/finance/domain/domain.md +18 -0
- rasa/cli/project_templates/finance/domain/general/_shared.yml +39 -0
- rasa/cli/project_templates/finance/domain/general/bot_challenge.yml +4 -0
- rasa/cli/project_templates/finance/domain/general/cannot_handle.yml +5 -2
- rasa/cli/project_templates/finance/domain/general/feedback.yml +0 -3
- rasa/cli/project_templates/finance/domain/general/goodbye.yml +6 -6
- rasa/cli/project_templates/finance/domain/general/human_handoff.yml +10 -9
- rasa/cli/project_templates/finance/domain/general/welcome.yml +33 -2
- rasa/cli/project_templates/finance/domain/transfers/check_transfer_limit.yml +32 -0
- rasa/cli/project_templates/finance/domain/transfers/list_transactions.yml +44 -0
- rasa/cli/project_templates/finance/domain/transfers/shared.yml +17 -0
- rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml +203 -61
- rasa/cli/project_templates/finance/endpoints.yml +8 -4
- rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2 +31 -12
- rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/check_balance.yml +9 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/download_statements.yml +43 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/cards/block_card.yml +55 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/general/bot_challenge.yml +8 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/general/feedback.yml +46 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/general/goodbye.yml +9 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/general/hello.yml +8 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/general/human_handoff.yml +35 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/general/patterns.yml +22 -0
- rasa/cli/project_templates/finance/tests/e2e_test_cases/transfers/transfer_money.yml +56 -0
- rasa/cli/project_templates/telco/README.md +25 -0
- rasa/cli/project_templates/telco/actions/actions.md +12 -0
- rasa/cli/project_templates/telco/config.yml +6 -4
- rasa/cli/project_templates/telco/data/data.md +11 -0
- rasa/cli/project_templates/telco/data/general/human_handoff.yml +1 -1
- rasa/cli/project_templates/telco/docs/docs.md +3 -0
- rasa/cli/project_templates/telco/domain/domain.md +13 -0
- rasa/cli/project_templates/telco/domain/general/human_handoff.yml +3 -6
- rasa/cli/project_templates/telco/endpoints.yml +5 -1
- rasa/cli/project_templates/telco/prompts/rephraser_demo_personality_prompt.jinja2 +1 -1
- rasa/cli/project_templates/telco/tests/e2e_test_cases/billing/understand_bill.yml +67 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/bot_challenge.yml +8 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/feedback.yml +46 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/goodbye.yml +9 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/hello.yml +8 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/human_handoff.yml +35 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/patterns.yml +23 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/network/solve_internet_issue.yml +57 -0
- rasa/core/actions/action_run_slot_rejections.py +1 -1
- rasa/core/actions/direct_custom_actions_executor.py +9 -2
- rasa/core/brokers/broker.py +1 -1
- rasa/core/brokers/kafka.py +52 -8
- rasa/core/channels/development_inspector.py +1 -21
- rasa/core/channels/hangouts.py +2 -2
- rasa/core/channels/inspector/dist/assets/{arc-18042c22.js → arc-35222594.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{blockDiagram-38ab4fdb-fdd6bcfa.js → blockDiagram-38ab4fdb-a0efbfd3.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{c4Diagram-3d4e48cf-f5ae6786.js → c4Diagram-3d4e48cf-0584c0f2.js} +1 -1
- rasa/core/channels/inspector/dist/assets/channel-8e08bed9.js +1 -0
- rasa/core/channels/inspector/dist/assets/{classDiagram-70f12bd4-81efba3e.js → classDiagram-70f12bd4-39f40dbe.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{classDiagram-v2-f2320105-3b6b6a92.js → classDiagram-v2-f2320105-1ad755f3.js} +1 -1
- rasa/core/channels/inspector/dist/assets/clone-78c82dea.js +1 -0
- rasa/core/channels/inspector/dist/assets/{createText-2e5e7dd3-31422447.js → createText-2e5e7dd3-b0f4f0fe.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{edges-e0da2a9e-518a90db.js → edges-e0da2a9e-9039bff9.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{erDiagram-9861fffd-a6d3c25a.js → erDiagram-9861fffd-65c9b127.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{flowDb-956e92f1-e048c2be.js → flowDb-956e92f1-4f08b38e.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{flowDiagram-66a62f08-c7474c91.js → flowDiagram-66a62f08-e95c362a.js} +1 -1
- rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-2b08f601.js +1 -0
- rasa/core/channels/inspector/dist/assets/{flowchart-elk-definition-4a651766-cb4d8723.js → flowchart-elk-definition-4a651766-703c3015.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{ganttDiagram-c361ad54-346636a2.js → ganttDiagram-c361ad54-699328ea.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{gitGraphDiagram-72cf32ee-7c508874.js → gitGraphDiagram-72cf32ee-04cf4b05.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{graph-14702d8a.js → graph-ee94449e.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{index-3862675e-f18b534b.js → index-3862675e-940162b4.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{index-4d4bdf3a.js → index-c941dcb3.js} +132 -131
- rasa/core/channels/inspector/dist/assets/{infoDiagram-f8f76790-64154b83.js → infoDiagram-f8f76790-c79c2866.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{journeyDiagram-49397b02-833a5f95.js → journeyDiagram-49397b02-84489d30.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{layout-5a3b2123.js → layout-a9aa9858.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{line-2272a8c7.js → line-eb73cf26.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{linear-35bcf273.js → linear-b3399f9a.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{mindmap-definition-fc14e90a-92dcb0e9.js → mindmap-definition-fc14e90a-b095bf1a.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{pieDiagram-8a3498a8-94dbc900.js → pieDiagram-8a3498a8-07644b66.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{quadrantDiagram-120e2f19-8b7a9c33.js → quadrantDiagram-120e2f19-573a3f9c.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{requirementDiagram-deff3bca-6f7eab81.js → requirementDiagram-deff3bca-d457e1e1.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{sankeyDiagram-04a897e0-f43e581d.js → sankeyDiagram-04a897e0-9d26e1a2.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{sequenceDiagram-704730f1-0bcbefc3.js → sequenceDiagram-704730f1-3a9cde10.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{stateDiagram-587899a1-b8a74083.js → stateDiagram-587899a1-4f3e8cec.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{stateDiagram-v2-d93cdb3a-2070218f.js → stateDiagram-v2-d93cdb3a-e617e5bf.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{styles-6aaf32cf-f1d54e34.js → styles-6aaf32cf-eab30d2f.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{styles-9a916d00-980de489.js → styles-9a916d00-09994be2.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{styles-c10674c1-3c03abde.js → styles-c10674c1-b7110364.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{svgDrawCommon-08f97a94-46ba068f.js → svgDrawCommon-08f97a94-3ebc92ad.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{timeline-definition-85554ec2-901f5e3d.js → timeline-definition-85554ec2-7d13d2f2.js} +1 -1
- rasa/core/channels/inspector/dist/assets/{xychartDiagram-e933f94c-acbc628a.js → xychartDiagram-e933f94c-488385e1.js} +1 -1
- rasa/core/channels/inspector/dist/index.html +1 -1
- rasa/core/channels/inspector/src/App.tsx +5 -31
- rasa/core/channels/inspector/src/components/Chat.tsx +2 -3
- rasa/core/channels/inspector/src/components/DialogueInformation.tsx +9 -1
- rasa/core/channels/inspector/src/components/LatencyDisplay.tsx +63 -35
- rasa/core/channels/inspector/src/helpers/audio/audiostream.ts +14 -0
- rasa/core/channels/inspector/src/types.ts +32 -7
- rasa/core/channels/studio_chat.py +23 -41
- rasa/core/channels/voice_stream/asr/asr_event.py +1 -1
- rasa/core/channels/voice_stream/asr/azure.py +6 -3
- rasa/core/channels/voice_stream/asr/deepgram.py +1 -1
- rasa/core/channels/voice_stream/audiocodes.py +3 -0
- rasa/core/channels/voice_stream/browser_audio.py +55 -3
- rasa/core/channels/voice_stream/genesys.py +2 -1
- rasa/core/channels/voice_stream/jambonz.py +9 -1
- rasa/core/channels/voice_stream/twilio_media_streams.py +16 -0
- rasa/core/channels/voice_stream/voice_channel.py +61 -0
- rasa/core/concurrent_lock_store.py +66 -16
- rasa/core/constants.py +7 -0
- rasa/core/iam_credentials_providers/__init__.py +0 -0
- rasa/core/iam_credentials_providers/aws_iam_credentials_providers.py +226 -0
- rasa/core/iam_credentials_providers/credentials_provider_protocol.py +90 -0
- rasa/core/lock_store.py +46 -10
- rasa/core/nlg/generator.py +1 -1
- rasa/core/policies/flows/flow_executor.py +1 -1
- rasa/core/processor.py +32 -0
- rasa/core/redis_connection_factory.py +469 -0
- rasa/core/tracker_stores/redis_tracker_store.py +32 -14
- rasa/core/tracker_stores/sql_tracker_store.py +57 -1
- rasa/engine/graph.py +5 -1
- rasa/engine/loader.py +12 -0
- rasa/engine/storage/local_model_storage.py +41 -4
- rasa/model_manager/socket_bridge.py +1 -2
- rasa/model_manager/warm_rasa_process.py +13 -3
- rasa/shared/core/constants.py +1 -0
- rasa/shared/core/events.py +2 -0
- rasa/shared/core/flows/flow.py +1 -1
- rasa/shared/nlu/training_data/schemas/responses.yml +3 -0
- rasa/utils/pypred.py +38 -0
- rasa/validator.py +12 -8
- rasa/version.py +1 -1
- {rasa_pro-3.14.0.dev20250901.dist-info → rasa_pro-3.14.0.dev20250922.dist-info}/METADATA +19 -16
- {rasa_pro-3.14.0.dev20250901.dist-info → rasa_pro-3.14.0.dev20250922.dist-info}/RECORD +231 -266
- rasa/cli/project_templates/finance/actions/accounts/action_ask_account.py +0 -47
- rasa/cli/project_templates/finance/actions/accounts/action_check_balance.py +0 -40
- rasa/cli/project_templates/finance/actions/action_session_start.py +0 -74
- rasa/cli/project_templates/finance/actions/cards/action_ask_card.py +0 -48
- rasa/cli/project_templates/finance/actions/cards/action_check_card_existence.py +0 -36
- rasa/cli/project_templates/finance/actions/cards/action_update_card_status.py +0 -54
- rasa/cli/project_templates/finance/actions/database.py +0 -277
- rasa/cli/project_templates/finance/actions/transfers/action_add_payee.py +0 -52
- rasa/cli/project_templates/finance/actions/transfers/action_ask_account_from.py +0 -51
- rasa/cli/project_templates/finance/actions/transfers/action_check_payee_existence.py +0 -40
- rasa/cli/project_templates/finance/actions/transfers/action_check_sufficient_funds.py +0 -40
- rasa/cli/project_templates/finance/actions/transfers/action_list_payees.py +0 -46
- rasa/cli/project_templates/finance/actions/transfers/action_remove_payee.py +0 -49
- rasa/cli/project_templates/finance/actions/transfers/action_schedule_payment.py +0 -19
- rasa/cli/project_templates/finance/actions/transfers/action_validate_payment_date.py +0 -36
- rasa/cli/project_templates/finance/csvs/accounts.csv +0 -8
- rasa/cli/project_templates/finance/csvs/advisors.csv +0 -7
- rasa/cli/project_templates/finance/csvs/appointments.csv +0 -211
- rasa/cli/project_templates/finance/csvs/branches.csv +0 -10
- rasa/cli/project_templates/finance/csvs/cards.csv +0 -11
- rasa/cli/project_templates/finance/csvs/payees.csv +0 -11
- rasa/cli/project_templates/finance/csvs/transactions.csv +0 -71
- rasa/cli/project_templates/finance/csvs/users.csv +0 -4
- rasa/cli/project_templates/finance/data/cards/select_card.yml +0 -12
- rasa/cli/project_templates/finance/data/general/bot_identity.yml +0 -6
- rasa/cli/project_templates/finance/data/system/patterns/pattern_chitchat.yml +0 -5
- rasa/cli/project_templates/finance/data/system/source/accounts.json +0 -51
- rasa/cli/project_templates/finance/data/system/source/advisors.json +0 -44
- rasa/cli/project_templates/finance/data/system/source/appointments.json +0 -1474
- rasa/cli/project_templates/finance/data/system/source/branches.json +0 -47
- rasa/cli/project_templates/finance/data/system/source/cards.json +0 -72
- rasa/cli/project_templates/finance/data/system/source/payees.json +0 -74
- rasa/cli/project_templates/finance/data/system/source/transactions.json +0 -492
- rasa/cli/project_templates/finance/data/system/source/users.json +0 -29
- rasa/cli/project_templates/finance/data/transfers/add_payee.yml +0 -29
- rasa/cli/project_templates/finance/data/transfers/list_payees.yml +0 -5
- rasa/cli/project_templates/finance/data/transfers/remove_payee.yml +0 -21
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/consequences_of_blocking_card.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/reasons_to_block_card.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/recovering_from_card_fraud.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/tips_for_card_security.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/block_card/what_to_do_if_card_is_lost.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/account_balance_security.txt +0 -7
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/common_balance_inquiries.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/methods_to_check_balance.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/understanding_balance_updates.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/check_balance/what_to_do_if_balance_is_incorrect.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/benefits_of_authorised_payees.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/common_issues_with_payees.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/general_payee_information.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/payee_management_tips.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/manage_payees/understanding_payee_types.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/common_transfer_errors.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/fees_for_transfers.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/general_transfer_information.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/security_tips_for_transfers.txt +0 -8
- rasa/cli/project_templates/finance/docs/bank_of_rasa_faq/transfer_money/transfer_processing_times.txt +0 -8
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part1.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part10.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part11.txt +0 -48
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part12.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part13.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part14.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part15.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part16.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part17.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part18.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part19.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part2.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part20.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part21.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part22.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part23.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part24.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part25.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part26.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part27.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part28.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part29.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part3.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part30.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part31.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part32.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part33.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part34.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part35.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part36.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part37.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part38.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part39.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part4.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part40.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part41.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part42.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part43.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part44.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part45.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part46.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part47.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part48.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part49.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part5.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part50.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part51.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part52.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part53.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part54.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part55.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part56.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part57.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part58.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part59.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part6.txt +0 -47
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part60.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part61.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part7.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part8.txt +0 -50
- rasa/cli/project_templates/finance/docs/huggingface_alpaca_dataset/questions_part9.txt +0 -47
- rasa/cli/project_templates/finance/domain/cards/select_card.yml +0 -12
- rasa/cli/project_templates/finance/domain/general/assistant_details.yml +0 -12
- rasa/cli/project_templates/finance/domain/general/bot_identity.yml +0 -5
- rasa/cli/project_templates/finance/domain/general/defaults.yml +0 -24
- rasa/cli/project_templates/finance/domain/general/help.yml +0 -5
- rasa/cli/project_templates/finance/domain/general/utils.yml +0 -13
- rasa/cli/project_templates/finance/domain/transfers/add_payee.yml +0 -47
- rasa/cli/project_templates/finance/domain/transfers/list_payees.yml +0 -4
- rasa/cli/project_templates/finance/domain/transfers/remove_payee.yml +0 -16
- rasa/core/channels/inspector/dist/assets/channel-b9b536fc.js +0 -1
- rasa/core/channels/inspector/dist/assets/clone-78d2ddcf.js +0 -1
- rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-8b09c060.js +0 -1
- /rasa/cli/project_templates/telco/domain/billing/{domain_undertand_bill.yml → understand_bill.yml} +0 -0
- /rasa/cli/project_templates/telco/domain/network/{domain_reboot_router.yml → reboot_router.yml} +0 -0
- /rasa/cli/project_templates/telco/domain/network/{domain_reset_router.yml → reset_router.yml} +0 -0
- /rasa/cli/project_templates/telco/domain/network/{domain_run_speed_test.yml → run_speed_test.yml} +0 -0
- /rasa/cli/project_templates/telco/domain/network/{domain_solve_internet_issue.yml → solve_internet_issue.yml} +0 -0
- {rasa_pro-3.14.0.dev20250901.dist-info → rasa_pro-3.14.0.dev20250922.dist-info}/NOTICE +0 -0
- {rasa_pro-3.14.0.dev20250901.dist-info → rasa_pro-3.14.0.dev20250922.dist-info}/WHEEL +0 -0
- {rasa_pro-3.14.0.dev20250901.dist-info → rasa_pro-3.14.0.dev20250922.dist-info}/entry_points.txt +0 -0
|
@@ -4,18 +4,19 @@ rasa/api.py,sha256=RY3SqtlOcdq4YZGgr6DOm-nUBpiA8l8uguUZOctL_7o,6320
|
|
|
4
4
|
rasa/builder/README.md,sha256=7WYioSzBHFY25h1QCFellv7bIOW9VLH7Gf7dwQEc1k0,3715
|
|
5
5
|
rasa/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
rasa/builder/auth.py,sha256=naswg4P1o_zB1GQDybqySbhnY0OPIp7cH2Ze98Uhwgc,5436
|
|
7
|
-
rasa/builder/config.py,sha256=
|
|
7
|
+
rasa/builder/config.py,sha256=1Rq6r1-H9ophFOR8Hry5JT7sLT5ZNcW6b3qU0Hley10,3587
|
|
8
8
|
rasa/builder/copilot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
rasa/builder/copilot/constants.py,sha256=
|
|
10
|
-
rasa/builder/copilot/copilot.py,sha256=
|
|
9
|
+
rasa/builder/copilot/constants.py,sha256=qbIw73OBsltsSfrSpdPLZjpGQlxSNUOx5glGoAgS2io,1223
|
|
10
|
+
rasa/builder/copilot/copilot.py,sha256=bDaEShaAyUnGtD-RW2XRii2hD-Qhd5-eguKkiPPj8zo,16852
|
|
11
11
|
rasa/builder/copilot/copilot_response_handler.py,sha256=teozaZFKR-XADdK2Nvkqu3wp48Bg1iqB7VT8rn5HcI4,20257
|
|
12
12
|
rasa/builder/copilot/copilot_templated_message_provider.py,sha256=eY8S7rVad6kX1-luyGpUT_2MNnIzfL4Fd1ZdLTTqM0g,1676
|
|
13
13
|
rasa/builder/copilot/exceptions.py,sha256=6alRMH8pyyXyjfKjtfSdjP1LunztC_c6Xu1OtlaUC2E,663
|
|
14
|
-
rasa/builder/copilot/models.py,sha256=
|
|
14
|
+
rasa/builder/copilot/models.py,sha256=ImFgDkJP0Hm3PdDdPJaea7OmhDwQTuCDgDlIb0S2dOg,16630
|
|
15
15
|
rasa/builder/copilot/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
rasa/builder/copilot/prompts/copilot_system_prompt.jinja2,sha256=
|
|
16
|
+
rasa/builder/copilot/prompts/copilot_system_prompt.jinja2,sha256=Sdn0sBbJb1TtGuaOe6XStChWDmbvfiOYfiv1ttRFfEU,30522
|
|
17
|
+
rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2,sha256=fGeR2w5FOGQJYpGyrn9Pr0QGGnB_TZ6sdCVTOryw_yE,1632
|
|
17
18
|
rasa/builder/copilot/signing.py,sha256=z_eAGFMM1Mk009ambXA-mjJpM8KQRPaNHECpH2A2f-U,10011
|
|
18
|
-
rasa/builder/copilot/telemetry.py,sha256=
|
|
19
|
+
rasa/builder/copilot/telemetry.py,sha256=aUsfnEqjhct-tNVjSp0YfwGudflIY63ITiel6SRZquY,8201
|
|
19
20
|
rasa/builder/copilot/templated_messages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
21
|
rasa/builder/copilot/templated_messages/copilot_internal_messages_templates.yml,sha256=dqKDO-25_srbDAVBoq0asdnPD95o8xcQ3eWIGyf0D2I,746
|
|
21
22
|
rasa/builder/copilot/templated_messages/copilot_templated_responses.yml,sha256=i6Nja6Gv_NtymUEFoXWNq5pMIXIyLjiMvtrhyYyl2OU,1935
|
|
@@ -23,8 +24,8 @@ rasa/builder/document_retrieval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
23
24
|
rasa/builder/document_retrieval/constants.py,sha256=bqG88KtCqxXgMFeiEFEDV5P1fe0J_hAg0FjMnXpatQk,356
|
|
24
25
|
rasa/builder/document_retrieval/inkeep-rag-response-schema.json,sha256=ePVbGo6u6sm_CPS8EeECX3UayIvcfUe6yTy2gtexKlk,1498
|
|
25
26
|
rasa/builder/document_retrieval/inkeep_document_retrieval.py,sha256=Xt10ryg2EmHEPRfnUcNmf-4Z3yR2WXRVGEsb66LmBBI,8982
|
|
26
|
-
rasa/builder/document_retrieval/models.py,sha256
|
|
27
|
-
rasa/builder/download.py,sha256=
|
|
27
|
+
rasa/builder/document_retrieval/models.py,sha256=-kftLcgpUeW3oB9ojOHJKShmEhYkd68Qk5RWGZS8vUw,2001
|
|
28
|
+
rasa/builder/download.py,sha256=RtOvT7rK8ukxdvirujJzL4jDD2he0IK1v5GpC15obg8,4045
|
|
28
29
|
rasa/builder/exceptions.py,sha256=tnfufzfyFRJBhwHtzHpgTmpSN_7Z_C98xCNORPsD2KY,2477
|
|
29
30
|
rasa/builder/guardrails/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
30
31
|
rasa/builder/guardrails/constants.py,sha256=Jcez4iNtgKwFsHEAW8w3quD9McSnnmXP4iatbJSXVp0,286
|
|
@@ -34,18 +35,19 @@ rasa/builder/guardrails/models.py,sha256=WlNoZWjDGo4Tigx7LLTkmR-zmMhVKpro0PjNdwM
|
|
|
34
35
|
rasa/builder/guardrails/store.py,sha256=-mJdsCnHgSI08uPnPwZRObIyRV9u98zcpQ5QkeHdVK0,7660
|
|
35
36
|
rasa/builder/guardrails/utils.py,sha256=2eudDOqPCTFiKWEGRfsCHUXNhjsht-tMsLJlh8hv0AE,11275
|
|
36
37
|
rasa/builder/job_manager.py,sha256=eQ5HRff-U4Cj3joHKqpjDcfCMWj4nz4D_oQmoozpwPM,2507
|
|
37
|
-
rasa/builder/jobs.py,sha256=
|
|
38
|
+
rasa/builder/jobs.py,sha256=a3qdVsP61F1WFepIAE5U1FgA5BtqM_Tx_Qv33abkfRM,9761
|
|
38
39
|
rasa/builder/llm_service.py,sha256=y3CPQS0qHGFhe6Z4lbs2HkEVztYYVZtnWiTNjghlBdE,8859
|
|
39
40
|
rasa/builder/logging_utils.py,sha256=E1YZs5BdHT9TrnoA2758sFMD1Xw7e5mnAtqWSAZs1gk,9296
|
|
40
|
-
rasa/builder/main.py,sha256=
|
|
41
|
-
rasa/builder/models.py,sha256=
|
|
42
|
-
rasa/builder/project_generator.py,sha256=
|
|
41
|
+
rasa/builder/main.py,sha256=hSDkcaV_gCYss9rfXjqM1QeBjEIhmRrACycoFDHKHEE,7597
|
|
42
|
+
rasa/builder/models.py,sha256=Las1o3skn8n20A8njiH6xMpcEL6uORK-uIpYm0fsF1Q,6014
|
|
43
|
+
rasa/builder/project_generator.py,sha256=MZeAx-9xrpP-ILrm6veWazcrCEmWarhBb54eyF2HEqQ,18227
|
|
43
44
|
rasa/builder/project_info.py,sha256=ZBwFCigZLSo1RBMhlZDYBoVl2G-9OnhRrYxdMWHn6S4,2093
|
|
44
45
|
rasa/builder/scrape_rasa_docs.py,sha256=iR_uThYA_kjDeIFY7AdpXcP-30P2vOHQ65gH4S1OjLw,2485
|
|
45
|
-
rasa/builder/service.py,sha256=
|
|
46
|
+
rasa/builder/service.py,sha256=4XtAO1OS1Re_fDmy9ztA4XdR7vJg1FFK-1CLrTY2jKQ,47721
|
|
46
47
|
rasa/builder/shared/tracker_context.py,sha256=2P-DsWjWEkZ32dqrx6s4zVxdo0_mokZNrU3LYisu6MY,7691
|
|
47
48
|
rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
|
|
48
|
-
rasa/builder/
|
|
49
|
+
rasa/builder/template_cache.py,sha256=0ms5P4zvAtio9AhwKbazUwaYZQZxa8DToC3ieLi-UZ8,2350
|
|
50
|
+
rasa/builder/training_service.py,sha256=kmcxgCxZzklxr4RKqan3aA_BU3pRE7WS_q-AO5sFyxM,5975
|
|
49
51
|
rasa/builder/validation_service.py,sha256=FAHSf2tQZ8yDlckWWjqMqhjb0rANbXR2DJTybh4fHnM,3099
|
|
50
52
|
rasa/cli/__init__.py,sha256=eO5vp9rFCANtbTVU-pxN3iMBKw4p9WRcgzytt9MzinY,115
|
|
51
53
|
rasa/cli/arguments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -71,11 +73,13 @@ rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
|
|
|
71
73
|
rasa/cli/llm_fine_tuning.py,sha256=A2RbXSF7jjta1Ql-X251kOMMfU3FJqwPMzh-Xuy83bg,15043
|
|
72
74
|
rasa/cli/markers.py,sha256=DIYfP5ZVRqiwbDiXfgONjwSFckThHdpGsGl6Kqn_CN8,2484
|
|
73
75
|
rasa/cli/project_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
+
rasa/cli/project_templates/basic/README.md,sha256=ooMyOWy3RF-IqsFUBEpid_PQPwBZSE8fiiEvMK95WNc,981
|
|
74
77
|
rasa/cli/project_templates/basic/actions/__init__,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
78
|
rasa/cli/project_templates/basic/actions/action_human_handoff.py,sha256=Vu4klzyBOgsU0jBlFa34D8OzXE7wubTXUcSE8SgvEbA,1469
|
|
76
|
-
rasa/cli/project_templates/basic/
|
|
79
|
+
rasa/cli/project_templates/basic/actions/actions.md,sha256=XO1a2MRjjsTpeJUueCrKnZrixD11qa6H8Hz4o25zYks,596
|
|
80
|
+
rasa/cli/project_templates/basic/config.yml,sha256=73zRqTsHc37Scy79e9j0eEBRMQ0jDqEeAeVe0tYiNkg,757
|
|
77
81
|
rasa/cli/project_templates/basic/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
78
|
-
rasa/cli/project_templates/basic/data/data.md,sha256=
|
|
82
|
+
rasa/cli/project_templates/basic/data/data.md,sha256=ndBZbH6Pi04BAMg9axfqTpGFVRNbQv8QezUXZQFV35U,529
|
|
79
83
|
rasa/cli/project_templates/basic/data/general/feedback.yml,sha256=NlFjGNQeJkW-hzL3zkVGMm7gnpKC6kkhwBueHNyYKio,699
|
|
80
84
|
rasa/cli/project_templates/basic/data/general/goodbye.yml,sha256=vu2Kj__TTT-zJEoRJRPLm1AObAuKR7M4LiW4nr_gRXI,176
|
|
81
85
|
rasa/cli/project_templates/basic/data/general/hello.yml,sha256=aJwc1CCd6sviuFZQTQQTXXfgvmwMZRI7lVFgtgf0WdY,121
|
|
@@ -89,16 +93,16 @@ rasa/cli/project_templates/basic/data/system/patterns/pattern_search.yml,sha256=
|
|
|
89
93
|
rasa/cli/project_templates/basic/data/system/patterns/pattern_session_start.yml,sha256=7nA3eKlD0Svf2HDqF5IH-35_c8Ny3P6SwfS7WG1fBO8,206
|
|
90
94
|
rasa/cli/project_templates/basic/docs/docs.md,sha256=RStqzq76CLsmaqMnklFTE5aL5NTG_4O6gn49I85POc4,414
|
|
91
95
|
rasa/cli/project_templates/basic/docs/template.txt,sha256=ekCWb6eF65QWuBwPRyviPoY6zYioSZalEBGNM92ZwI0,1945
|
|
92
|
-
rasa/cli/project_templates/basic/domain/domain.md,sha256=
|
|
96
|
+
rasa/cli/project_templates/basic/domain/domain.md,sha256=ITwN2_8ALOc_wSZ6tZQpfMr-mEaeTkLcGsDdt-K8fk4,800
|
|
93
97
|
rasa/cli/project_templates/basic/domain/general/feedback.yml,sha256=EPdP41J0lB79S9WftTOMECSAcsZcGlKU9EAsPy2rNsk,1076
|
|
94
98
|
rasa/cli/project_templates/basic/domain/general/goodbye.yml,sha256=A_xZLR1nbfUvS9ujKWDg35QFWuHg1aGHWy0Rj85td4M,349
|
|
95
99
|
rasa/cli/project_templates/basic/domain/general/hello.yml,sha256=g6kS_HE7VpZA4QhQFZnJ2qA0eZK4CAwauSDD4Fb1FCo,123
|
|
96
100
|
rasa/cli/project_templates/basic/domain/general/help.yml,sha256=F7AYeYNeB0Tbzf2tuwpVpioUCYk13vVWyKV_t9u9nHM,436
|
|
97
101
|
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=
|
|
102
|
+
rasa/cli/project_templates/basic/domain/general/show_faqs.yml,sha256=XPq6KPKONzS8EtFW43_u6JC2RqNVsHLdBlWRkfdqGJg,374
|
|
99
103
|
rasa/cli/project_templates/basic/domain/system/patterns/pattern_cannot_handle.yml,sha256=2pOm4vtkUQtnJiTOY9KHOZXNeUQa1FiP0PE2Zphkjyk,135
|
|
100
104
|
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=
|
|
105
|
+
rasa/cli/project_templates/basic/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
|
|
102
106
|
rasa/cli/project_templates/basic/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Djna_YB2PWSQxvzOduCnP7btgLihWZ4eLflR9WYwexo,1971
|
|
103
107
|
rasa/cli/project_templates/default/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
108
|
rasa/cli/project_templates/default/actions/action_template.py,sha256=BoiGE6tHbUl4WAEpf1sYTsQRV4_aZiTk4cLFEpk6QVY,755
|
|
@@ -106,7 +110,7 @@ rasa/cli/project_templates/default/actions/add_contact.py,sha256=bvXsHnHquhEJxSK
|
|
|
106
110
|
rasa/cli/project_templates/default/actions/db.py,sha256=jBlh6DM4xgR9K1u3lAKSD-S3kGXijnDoOYGgQDAXeAA,1610
|
|
107
111
|
rasa/cli/project_templates/default/actions/list_contacts.py,sha256=SoKBVN5xeexspdhlf0hI56UQMP-32Siq_8fDhLF84wY,721
|
|
108
112
|
rasa/cli/project_templates/default/actions/remove_contact.py,sha256=QlV4yn2cRX8d84drIXO9cuEcfdBKbJRwP8Oo6ZWl8jk,1240
|
|
109
|
-
rasa/cli/project_templates/default/config.yml,sha256=
|
|
113
|
+
rasa/cli/project_templates/default/config.yml,sha256=p0ip9vHyonAl7atKY-eK4xm6FVo-5GQpbxVwVGsdQXY,477
|
|
110
114
|
rasa/cli/project_templates/default/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
111
115
|
rasa/cli/project_templates/default/data/flows/add_contact.yml,sha256=70uORlZhWUkvdeVlI9xxkh5qRsN7BG7qFTunHSv6MCY,1004
|
|
112
116
|
rasa/cli/project_templates/default/data/flows/list_contacts.yml,sha256=hwm484n_o1-2gvi6O7tq6Pjlee4-vqX6DM77D1biRjc,360
|
|
@@ -124,166 +128,112 @@ rasa/cli/project_templates/default/e2e_tests/happy_paths/user_adds_contact_to_th
|
|
|
124
128
|
rasa/cli/project_templates/default/e2e_tests/happy_paths/user_lists_contacts.yml,sha256=Y2Yz2kkmNhaQ1cPdIdM_gRsBkT-Awn4Aw1roQqjfRoQ,139
|
|
125
129
|
rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact.yml,sha256=Q0W4FEb6NQjQYjfhcxcMGLozX6uqXdl4GUkr61z671Y,352
|
|
126
130
|
rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact_from_list.yml,sha256=5iMfRCbPpf08Jawog_fuXw-aR6nV0za0Cx60wiFwhhA,417
|
|
127
|
-
rasa/cli/project_templates/default/endpoints.yml,sha256=
|
|
131
|
+
rasa/cli/project_templates/default/endpoints.yml,sha256=cJbO4NYK43sxte1UWT8DYkBOo6wvpgLh-7HeCZKY-uQ,2100
|
|
128
132
|
rasa/cli/project_templates/defaults.py,sha256=Yuqway0slq8d4nX8QakiXHokCrVcZiT1UY7sqv09c28,5370
|
|
129
|
-
rasa/cli/project_templates/finance/
|
|
133
|
+
rasa/cli/project_templates/finance/README.md,sha256=DIgpDaXbzti-DDvmEDXSzoT6zHlsIXlMuun2AvYlW8g,1182
|
|
134
|
+
rasa/cli/project_templates/finance/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
135
|
rasa/cli/project_templates/finance/actions/accounts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
-
rasa/cli/project_templates/finance/actions/accounts/
|
|
132
|
-
rasa/cli/project_templates/finance/actions/
|
|
133
|
-
rasa/cli/project_templates/finance/actions/action_session_start.py,sha256=oiF6CEvbYCGYqMbfFUcJtfzbckcbDZ6EctYXVjwMRww,2531
|
|
136
|
+
rasa/cli/project_templates/finance/actions/accounts/check_balance.py,sha256=1XqCEMwrAQ9B2T0jw4YESBLsP6WzEOTmfwgdVSQI0qY,526
|
|
137
|
+
rasa/cli/project_templates/finance/actions/actions.md,sha256=2tRtJyKG0kwxYgmlFP2OivZz9bzkmbYBZic1hQO7AUg,944
|
|
134
138
|
rasa/cli/project_templates/finance/actions/cards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
|
-
rasa/cli/project_templates/finance/actions/cards/
|
|
136
|
-
rasa/cli/project_templates/finance/actions/cards/
|
|
137
|
-
rasa/cli/project_templates/finance/actions/
|
|
138
|
-
rasa/cli/project_templates/finance/actions/
|
|
139
|
+
rasa/cli/project_templates/finance/actions/cards/check_that_card_exists.py,sha256=gt-eFYDglEgbjz-HluStEQODfS1sIDOXzHCZhOoQfwY,680
|
|
140
|
+
rasa/cli/project_templates/finance/actions/cards/list_cards.py,sha256=mTo-HBwC5CJnAMwBo2bcyIpyqpK8XaTjuJ8Ptjt5a_g,681
|
|
141
|
+
rasa/cli/project_templates/finance/actions/contacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
|
+
rasa/cli/project_templates/finance/actions/contacts/add_contact.py,sha256=AEhW_pp5hOifMNg5IQzGizhaVhR7XInBs5jmgHzm9IU,1025
|
|
143
|
+
rasa/cli/project_templates/finance/actions/contacts/list_contacts.py,sha256=KPVqL_TFvrdgJIzWuuhxiVndEwpiBUlHrJkohUsP0jI,714
|
|
144
|
+
rasa/cli/project_templates/finance/actions/contacts/remove_contact.py,sha256=Fi5fH0-6Uo0zQo2nRjjoxeY0HBcPIEcQKDQ_DoV-L_o,1233
|
|
145
|
+
rasa/cli/project_templates/finance/actions/db.py,sha256=nlZG8Nad3rLJhcrVybPgQOQb-6Ya4C6_ZNNLP7_Y4wc,3133
|
|
146
|
+
rasa/cli/project_templates/finance/actions/general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
+
rasa/cli/project_templates/finance/actions/general/action_human_handoff.py,sha256=XtQlSCTy1RpptrwSIk9eXQ8cTwCi-oq3S5SwK-OuXok,1817
|
|
139
148
|
rasa/cli/project_templates/finance/actions/transfers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
-
rasa/cli/project_templates/finance/actions/transfers/
|
|
141
|
-
rasa/cli/project_templates/finance/actions/transfers/
|
|
142
|
-
rasa/cli/project_templates/finance/actions/transfers/
|
|
143
|
-
rasa/cli/project_templates/finance/actions/transfers/
|
|
144
|
-
rasa/cli/project_templates/finance/actions/transfers/
|
|
145
|
-
rasa/cli/project_templates/finance/
|
|
146
|
-
rasa/cli/project_templates/finance/
|
|
147
|
-
rasa/cli/project_templates/finance/
|
|
148
|
-
rasa/cli/project_templates/finance/
|
|
149
|
-
rasa/cli/project_templates/finance/
|
|
150
|
-
rasa/cli/project_templates/finance/
|
|
151
|
-
rasa/cli/project_templates/finance/
|
|
152
|
-
rasa/cli/project_templates/finance/
|
|
153
|
-
rasa/cli/project_templates/finance/
|
|
154
|
-
rasa/cli/project_templates/finance/
|
|
155
|
-
rasa/cli/project_templates/finance/
|
|
156
|
-
rasa/cli/project_templates/finance/
|
|
157
|
-
rasa/cli/project_templates/finance/
|
|
158
|
-
rasa/cli/project_templates/finance/
|
|
159
|
-
rasa/cli/project_templates/finance/data/
|
|
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
|
|
149
|
+
rasa/cli/project_templates/finance/actions/transfers/check_transfer_funds.py,sha256=TmwE5DYtxYwS-RnPBcS9_8QtunQOw_0kcOr6_MeMBrw,991
|
|
150
|
+
rasa/cli/project_templates/finance/actions/transfers/check_transfer_limit.py,sha256=glfWn2xt-TgEnq1e5YbviAlNj8f_8vwWx_Mb9WLHegY,1000
|
|
151
|
+
rasa/cli/project_templates/finance/actions/transfers/execute_recurrent_payment.py,sha256=9VT3Nr2PfPl-Jh59Yd-7ilUH5XlhMBvZGj3sKgpUGzI,584
|
|
152
|
+
rasa/cli/project_templates/finance/actions/transfers/execute_transfer.py,sha256=jVX2Rm8dlt-d7y68ZdOWDGMBdBpSd6lrDk7n98oA2fM,1538
|
|
153
|
+
rasa/cli/project_templates/finance/actions/transfers/list_transactions.py,sha256=cjKt45yg0pq_0JrTofoiSTlb6gQJqEhr9oSmb5CY_Zg,989
|
|
154
|
+
rasa/cli/project_templates/finance/config.yml,sha256=40WJUfhxe3Tlrsa3P0iJeXs0fZPGRPQ50dSrKCiWGuA,771
|
|
155
|
+
rasa/cli/project_templates/finance/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
156
|
+
rasa/cli/project_templates/finance/data/accounts/check_balance.yml,sha256=-hU8mQ7zaqsK9rZgkcouyfyfyE3W60k3RnWRdfMxgzY,324
|
|
157
|
+
rasa/cli/project_templates/finance/data/accounts/download_statements.yml,sha256=TWN-EN6kDR26sYZ-HscDyC4KYemlHvgc8zkhBtXPneo,1120
|
|
158
|
+
rasa/cli/project_templates/finance/data/bills/bill_pay_reminder.yml,sha256=nsE2ZZx6C0vKXxB6pB_T-tVKrFSZ5KklHGL0y5U1OUQ,981
|
|
159
|
+
rasa/cli/project_templates/finance/data/cards/activate_card.yml,sha256=KypbI6Ror7chMiXoQzF-0WW2hmIkLJwG-MO0W-xqtUc,1093
|
|
160
|
+
rasa/cli/project_templates/finance/data/cards/block_card.yml,sha256=aE-IWiPtJb5n0rg59zNAy3zoYBc5gtoGQXYp5wp4qf0,1507
|
|
161
|
+
rasa/cli/project_templates/finance/data/cards/list_cards.yml,sha256=yUuUuS2QHAIzRDqMyH0nwTyfvDiQq1Jx8qM3Z-twwRA,392
|
|
162
|
+
rasa/cli/project_templates/finance/data/cards/replace_card.yml,sha256=q1h2Ha4xjc1538CL9eBAsM8r7tiKsjBs2XtlYACQcsQ,616
|
|
163
|
+
rasa/cli/project_templates/finance/data/cards/replace_eligible_card.yml,sha256=Z3tBwTP1kfvKKuDUDhMySHnxxAGGn8dURezI5JaFoI8,1272
|
|
164
|
+
rasa/cli/project_templates/finance/data/contacts/add_contact.yml,sha256=flOyUiJZETYTQcokedk18Pcp22LT8eg127_PKFnG38o,1186
|
|
165
|
+
rasa/cli/project_templates/finance/data/contacts/list_contacts.yml,sha256=5eiO1khRETTu0To3GvC0gWLqFLJalKiMG-F22knW_Sw,484
|
|
166
|
+
rasa/cli/project_templates/finance/data/contacts/remove_contact.yml,sha256=R4l4oCoxJ11j30shMvmRNt87JPe1RKTFZdReLtwXGfo,1127
|
|
167
|
+
rasa/cli/project_templates/finance/data/data.md,sha256=OPE3qzIylD8AFoMQ0SDPTG7KAo378evazf9am0g4OeY,908
|
|
168
|
+
rasa/cli/project_templates/finance/data/general/bot_challenge.yml,sha256=ft-LzMb1c4Yg2Wi8Z0uIiZddWmzkCZi-iwm7KcVCOUY,233
|
|
163
169
|
rasa/cli/project_templates/finance/data/general/feedback.yml,sha256=810vxE8dJgabJEBWxsP6Q4xIKVzdjklTt7ZezYZmolg,672
|
|
164
|
-
rasa/cli/project_templates/finance/data/general/goodbye.yml,sha256=
|
|
165
|
-
rasa/cli/project_templates/finance/data/general/hello.yml,sha256=
|
|
166
|
-
rasa/cli/project_templates/finance/data/general/help.yml,sha256=
|
|
167
|
-
rasa/cli/project_templates/finance/data/general/human_handoff.yml,sha256=
|
|
170
|
+
rasa/cli/project_templates/finance/data/general/goodbye.yml,sha256=MKX30fQrB1fajSEfx61xIJl3LV_0lJQtbYrrqDmUK3I,171
|
|
171
|
+
rasa/cli/project_templates/finance/data/general/hello.yml,sha256=aJwc1CCd6sviuFZQTQQTXXfgvmwMZRI7lVFgtgf0WdY,121
|
|
172
|
+
rasa/cli/project_templates/finance/data/general/help.yml,sha256=bFUz7CpqBGx0ePyaxx9SqsV-S82RexwBUxvoaAU82iA,346
|
|
173
|
+
rasa/cli/project_templates/finance/data/general/human_handoff.yml,sha256=p8F2L5o3QOgYjE_zUNKDK_znSZXGCQGFAoOTEay552s,549
|
|
168
174
|
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
175
|
rasa/cli/project_templates/finance/data/system/patterns/pattern_completed.yml,sha256=t_1HTtSdC5mD0ofL6bxFmicFgJyIwg1-vhweVMlXGUk,171
|
|
171
176
|
rasa/cli/project_templates/finance/data/system/patterns/pattern_correction.yml,sha256=fSZk5_gobpkKSR_XifbJ12iXs3WCTAbAGAD7HfH9KtE,184
|
|
172
177
|
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=
|
|
174
|
-
rasa/cli/project_templates/finance/data/
|
|
175
|
-
rasa/cli/project_templates/finance/data/
|
|
176
|
-
rasa/cli/project_templates/finance/data/
|
|
177
|
-
rasa/cli/project_templates/finance/data/
|
|
178
|
-
rasa/cli/project_templates/finance/data/
|
|
179
|
-
rasa/cli/project_templates/finance/
|
|
180
|
-
rasa/cli/project_templates/finance/
|
|
181
|
-
rasa/cli/project_templates/finance/
|
|
182
|
-
rasa/cli/project_templates/finance/
|
|
183
|
-
rasa/cli/project_templates/finance/
|
|
184
|
-
rasa/cli/project_templates/finance/
|
|
185
|
-
rasa/cli/project_templates/finance/
|
|
186
|
-
rasa/cli/project_templates/finance/docs/
|
|
187
|
-
rasa/cli/project_templates/finance/docs/
|
|
188
|
-
rasa/cli/project_templates/finance/docs/
|
|
189
|
-
rasa/cli/project_templates/finance/docs/
|
|
190
|
-
rasa/cli/project_templates/finance/docs/
|
|
191
|
-
rasa/cli/project_templates/finance/docs/
|
|
192
|
-
rasa/cli/project_templates/finance/docs/
|
|
193
|
-
rasa/cli/project_templates/finance/docs/
|
|
194
|
-
rasa/cli/project_templates/finance/
|
|
195
|
-
rasa/cli/project_templates/finance/
|
|
196
|
-
rasa/cli/project_templates/finance/
|
|
197
|
-
rasa/cli/project_templates/finance/
|
|
198
|
-
rasa/cli/project_templates/finance/
|
|
199
|
-
rasa/cli/project_templates/finance/
|
|
200
|
-
rasa/cli/project_templates/finance/
|
|
201
|
-
rasa/cli/project_templates/finance/
|
|
202
|
-
rasa/cli/project_templates/finance/
|
|
203
|
-
rasa/cli/project_templates/finance/
|
|
204
|
-
rasa/cli/project_templates/finance/
|
|
205
|
-
rasa/cli/project_templates/finance/
|
|
206
|
-
rasa/cli/project_templates/finance/
|
|
207
|
-
rasa/cli/project_templates/finance/
|
|
208
|
-
rasa/cli/project_templates/finance/
|
|
209
|
-
rasa/cli/project_templates/finance/
|
|
210
|
-
rasa/cli/project_templates/finance/
|
|
211
|
-
rasa/cli/project_templates/finance/
|
|
212
|
-
rasa/cli/project_templates/finance/
|
|
213
|
-
rasa/cli/project_templates/finance/
|
|
214
|
-
rasa/cli/project_templates/finance/
|
|
215
|
-
rasa/cli/project_templates/finance/
|
|
216
|
-
rasa/cli/project_templates/finance/
|
|
217
|
-
rasa/cli/project_templates/finance/
|
|
218
|
-
rasa/cli/project_templates/finance/
|
|
219
|
-
rasa/cli/project_templates/finance/
|
|
220
|
-
rasa/cli/project_templates/finance/
|
|
221
|
-
rasa/cli/project_templates/finance/
|
|
222
|
-
rasa/cli/project_templates/finance/
|
|
223
|
-
rasa/cli/project_templates/finance/
|
|
224
|
-
rasa/cli/project_templates/finance/
|
|
225
|
-
rasa/cli/project_templates/finance/
|
|
226
|
-
rasa/cli/project_templates/finance/
|
|
227
|
-
rasa/cli/project_templates/finance/
|
|
228
|
-
rasa/cli/project_templates/finance/
|
|
229
|
-
rasa/cli/project_templates/
|
|
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
|
|
178
|
+
rasa/cli/project_templates/finance/data/system/patterns/pattern_session_start.yml,sha256=qtgUzCgoKupdfSVz2jbOvDRzi8ssrJ8lTsJmooA2NyM,198
|
|
179
|
+
rasa/cli/project_templates/finance/data/transfers/check_transfer_limit.yml,sha256=_CYxemAaLFIYoDSvN4VztKUpF0BUVftRjqVJlARrB8w,620
|
|
180
|
+
rasa/cli/project_templates/finance/data/transfers/list_transactions.yml,sha256=tTGBrIILWPEDmtT2-eCCQ6yhiKxDUYedZuvqWsy42Lc,1524
|
|
181
|
+
rasa/cli/project_templates/finance/data/transfers/move_money_between_accounts.yml,sha256=px7sUfEK_7Z9YsTXxmMCNPtoV6C-PqWWAN_JHPsRCPU,1842
|
|
182
|
+
rasa/cli/project_templates/finance/data/transfers/transfer_money.yml,sha256=oU01NGLRSnxIibpMZtJ3mBe9wMlgvE09mOgsoEAnAQY,1701
|
|
183
|
+
rasa/cli/project_templates/finance/data/transfers/transfer_money_to_a_third_party.yml,sha256=HoPAvhsDjH5AdsgDh_9oSWFiKSuoyClcJdItOsMbWvs,6007
|
|
184
|
+
rasa/cli/project_templates/finance/db/cards.json,sha256=PvXH4dZbREsNYaFZZg5c_PM6bZyUJUk6tqYG8tI3v1g,343
|
|
185
|
+
rasa/cli/project_templates/finance/db/contacts.json,sha256=5IxR4hab60DyOLHnCG03dmrQN4B03Sg7Bng5d52xYV4,110
|
|
186
|
+
rasa/cli/project_templates/finance/db/my_account.json,sha256=SFcHXFqS_-rJs_aZ_2vHrbY1CUXtrIF65NFXUmLPC38,96
|
|
187
|
+
rasa/cli/project_templates/finance/db/transactions.json,sha256=c0j8JkzzCHtnprc7Zg9mIpFv8MMXAlRwyOGd9gTDk5s,2783
|
|
188
|
+
rasa/cli/project_templates/finance/docs/docs.md,sha256=FfYewqvmGk5JCGslckOotvxBLdp64dr_cGdvbQGGBuY,562
|
|
189
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/budgeting_analytics.txt,sha256=sqeLfhzC1l50gTbeCi_pW0p_-MfUXKsOcziYJ98HG6c,1835
|
|
190
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/multi_currency_accounts.txt,sha256=xyKJrQUsrVF2NShAospCr0eISrpBDMI4uS8EYbN5Y4o,1511
|
|
191
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/account_features/premium_benefits.txt,sha256=fG4_boTIPB928Bkl9ObzZ1jFKD95bEDF_emu3YiPErI,1623
|
|
192
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/contactless_limits.txt,sha256=bJHNpyTh8hOQ_kse180gP3ko45dRCtVGhT8saU8UoW4,1321
|
|
193
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/freeze_unfreeze_card.txt,sha256=9tALWR7JKkIfu4QxWfAzM42GHQAQdHcAZ01f2v17tf8,1281
|
|
194
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/card_management/lost_stolen_card.txt,sha256=o3ph9O0F80O6DMAoCxQhny1mk2GnUuEn0pRUHF52Ws4,1464
|
|
195
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/money_transfers/instant_payments.txt,sha256=HnZivR8uD4ZMo8Q63AjsMZNKYQP_MiL_NaJQ6vQ3YbE,1604
|
|
196
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/money_transfers/international_transfers.txt,sha256=-tE5d8BcQA1CWcchG97Y8ItCvInKCRVa42VXJl3-w2k,1589
|
|
197
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/security_fraud/fraud_protection.txt,sha256=vEXtyM0tc_eFKtZAW15aQtvdn3I8MwOT-pxNNJjhMZA,1901
|
|
198
|
+
rasa/cli/project_templates/finance/docs/fenlo_banking_faq/security_fraud/secure_payments.txt,sha256=UaDNhUrldFvsHpvcdfnYRG7-L-O4oNv1YQOH2wVI8Ys,1863
|
|
199
|
+
rasa/cli/project_templates/finance/domain/accounts/check_balance.yml,sha256=uoc-kQqrTUS0kDf0ww9zmfyBsNNP-mq_JpCf7pPQ77U,307
|
|
200
|
+
rasa/cli/project_templates/finance/domain/accounts/download_statements.yml,sha256=sbienPLzAs3UrLGGTfbhqVceCBmaDzPDwqJv0ImUR6o,1394
|
|
201
|
+
rasa/cli/project_templates/finance/domain/bills/bill_pay_reminder.yml,sha256=_JUp_BgL3ayAiCgMOXNJ-psSL4mlSgb3s7QqBOlNxa0,1842
|
|
202
|
+
rasa/cli/project_templates/finance/domain/cards/activate_card.yml,sha256=RL7U0JDp1cYlWMMUYY-B7eSxA8IQ0qIuGWWYQD9Om2w,801
|
|
203
|
+
rasa/cli/project_templates/finance/domain/cards/block_card.yml,sha256=NIiqtSxpn4POz_Qb_MVLcXA1QfhMVEVHtTZZUhk25Yk,1535
|
|
204
|
+
rasa/cli/project_templates/finance/domain/cards/list_cards.yml,sha256=PGHkbQG90OrELNJyriGS6-xwvbPej8MXX3gnDzycawQ,287
|
|
205
|
+
rasa/cli/project_templates/finance/domain/cards/replace_card.yml,sha256=Y4icXpNoCiOp5Pvl1Pns1XonpUJMHkTeEQT-ISadjKQ,1646
|
|
206
|
+
rasa/cli/project_templates/finance/domain/cards/shared.yml,sha256=fYS-35FXuUVRx6svT-Nx1jFNFOEjo4oqHfCQO0gdcjc,361
|
|
207
|
+
rasa/cli/project_templates/finance/domain/contacts/add_contact.yml,sha256=Iee53v7IlQBVK-ASvXbbrANXMPapmT45SyfPyJHl98w,1138
|
|
208
|
+
rasa/cli/project_templates/finance/domain/contacts/list_contacts.yml,sha256=8AUM9gdAAM97VqN-6MVqHbGypZpOYMp1kxmrty7XpUQ,300
|
|
209
|
+
rasa/cli/project_templates/finance/domain/contacts/remove_contact.yml,sha256=uxWAFTunWPjKGz6w9pDbeMS9mOEZlUWdGVOjF4a3SjE,919
|
|
210
|
+
rasa/cli/project_templates/finance/domain/domain.md,sha256=fzKUPypLyiOjWDf-fC6lOiaGvao9QC2HBjtXlDhWFpg,1250
|
|
211
|
+
rasa/cli/project_templates/finance/domain/general/_shared.yml,sha256=MWp3RMfVdKb1TgWDsyz6N4e3H3AR76UGd-MQbqbtYnk,644
|
|
212
|
+
rasa/cli/project_templates/finance/domain/general/bot_challenge.yml,sha256=9cYFOCR58w8hXgiYHr1uQqeXo0MVaBseeXsv_-FDgVo,139
|
|
213
|
+
rasa/cli/project_templates/finance/domain/general/cannot_handle.yml,sha256=ua3oYu0sKNCkKy9GEFPJXNau6_9LykDeq6OXl_0wv6Y,483
|
|
214
|
+
rasa/cli/project_templates/finance/domain/general/feedback.yml,sha256=79NluNhlfLJpsr4n2BERpv9f85zF3BAv1Xv4NHykB8Q,1060
|
|
215
|
+
rasa/cli/project_templates/finance/domain/general/goodbye.yml,sha256=6G3SEF6UcRdIhZhV_hEUgqKEB4dfXSkomW5aCxMR-pk,396
|
|
216
|
+
rasa/cli/project_templates/finance/domain/general/human_handoff.yml,sha256=KhNKEgqqGwfaN1Fzvjk-ZGaqS3nG3OJkNOlYQ3Mhurs,950
|
|
217
|
+
rasa/cli/project_templates/finance/domain/general/welcome.yml,sha256=WkSb4lIeCTDM_5_wTaPR3wRRSeq6AX04Exh8BZwc4YM,1230
|
|
218
|
+
rasa/cli/project_templates/finance/domain/transfers/check_transfer_limit.yml,sha256=Px9ptewHbcj0Mm8Jh5I1TwCNE3ecNcx2CErdmmEGlNg,787
|
|
219
|
+
rasa/cli/project_templates/finance/domain/transfers/list_transactions.yml,sha256=PuCZny6dHlPgX3vVweCLhlbSq5lI9NTGrWe6EmnUtW0,1351
|
|
220
|
+
rasa/cli/project_templates/finance/domain/transfers/shared.yml,sha256=_nSMfwLyLLQRDaexNk5FdVVRAcRlAt32AQOxAVwHj_Y,320
|
|
221
|
+
rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml,sha256=dGLOVxvPrNZd6HtCS59CM6ntaYiGgGoiwts_p46bQzI,6765
|
|
222
|
+
rasa/cli/project_templates/finance/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
|
|
223
|
+
rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Bp2BzhWIFUozKpxpof6YG36enwEXpQIZ29tBdZz6-H0,1975
|
|
224
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/check_balance.yml,sha256=VwXa341lWYiqkaiMzH4ZROICDbVuDPdkYlN-rrHgNUo,265
|
|
225
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/download_statements.yml,sha256=0WZcTuUJn0wqEwMNwqL5CczeaqKLs09TT5MLvyhwIiU,1449
|
|
226
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/cards/block_card.yml,sha256=ToK2dS3WA8OSySORrI7adocFl4WmxMZ_bk404dDqbl0,1802
|
|
227
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
228
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/feedback.yml,sha256=9HwX0ksPH5lZRjCB2qkiDa2qvP3CN0r6CcR0s8sZZGk,1552
|
|
229
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
230
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
231
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
232
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/patterns.yml,sha256=j77lAbAhg2n0exLCQgstOB7JDfhNE0VrKY0PjJf62hQ,1105
|
|
233
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/transfers/transfer_money.yml,sha256=SZavDCqTgpbXQVtVQR1ayrDVwm7PFRFrsTzMvD10kls,1908
|
|
234
|
+
rasa/cli/project_templates/telco/README.md,sha256=KyIlPzYqXohBYN2_gErtN1DcE09B1fXsFU443DeWFWQ,1270
|
|
286
235
|
rasa/cli/project_templates/telco/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
|
+
rasa/cli/project_templates/telco/actions/actions.md,sha256=91irqUhAx4u3iVAL25pHWwxBCpAnjK0xPKVFVvLQEtw,809
|
|
287
237
|
rasa/cli/project_templates/telco/actions/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
238
|
rasa/cli/project_templates/telco/actions/billing/actions_billing.py,sha256=3UuskxfdQOFlmETMUv37dfI9M2I51RJSrutaUkjcCYQ,7525
|
|
289
239
|
rasa/cli/project_templates/telco/actions/general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -292,38 +242,48 @@ rasa/cli/project_templates/telco/actions/network/__init__.py,sha256=47DEQpj8HBSa
|
|
|
292
242
|
rasa/cli/project_templates/telco/actions/network/actions_get_data_from_db.py,sha256=8rM9H-KTTIznIlz-9ii_JnAI5XmxVkKR0qKu5FG0QIQ,1638
|
|
293
243
|
rasa/cli/project_templates/telco/actions/network/actions_run_diagnostics.py,sha256=JHFKtrGVpQA6zBVWvc9KrzGmBhXFu-kp_0JnOyI3ZWs,925
|
|
294
244
|
rasa/cli/project_templates/telco/actions/network/actions_session_start.py,sha256=_2NHKN3Pg1L6h_7DPIjJqDpREkacuYBkTG6p9sJbqvQ,495
|
|
295
|
-
rasa/cli/project_templates/telco/config.yml,sha256=
|
|
245
|
+
rasa/cli/project_templates/telco/config.yml,sha256=a5FPbnJITFJfe_p2xEPXyrl7HAr8QbX-MHHP_6SamtI,755
|
|
296
246
|
rasa/cli/project_templates/telco/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
297
247
|
rasa/cli/project_templates/telco/csvs/billing.csv,sha256=xYYF0S59HK0Vh2hU02JuyxCtynKUbIgJV-3Bjkm5OvA,550
|
|
298
248
|
rasa/cli/project_templates/telco/csvs/customers.csv,sha256=ZOsH7gUooq_l09QKoZsEQwoGWcaozdfJYigcwNE1ipM,109
|
|
299
249
|
rasa/cli/project_templates/telco/data/billing/flow_understand_bill.yml,sha256=hRy8YJut_FQhD14OUT1PyWTDuoP0bOSu1_DyKhGG-Dc,2267
|
|
250
|
+
rasa/cli/project_templates/telco/data/data.md,sha256=OOntBl1BRZHcpgvXHgqBU6lH6YxUOiMXkqMpM42-lXc,701
|
|
300
251
|
rasa/cli/project_templates/telco/data/general/bot_challenge.yml,sha256=ft-LzMb1c4Yg2Wi8Z0uIiZddWmzkCZi-iwm7KcVCOUY,233
|
|
301
252
|
rasa/cli/project_templates/telco/data/general/feedback.yml,sha256=GmFEjb87C3ZrgQb1fJqD59cTLiGKSpOSo49IF6S12VI,680
|
|
302
253
|
rasa/cli/project_templates/telco/data/general/goodbye.yml,sha256=MKX30fQrB1fajSEfx61xIJl3LV_0lJQtbYrrqDmUK3I,171
|
|
303
254
|
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=
|
|
255
|
+
rasa/cli/project_templates/telco/data/general/human_handoff.yml,sha256=p8F2L5o3QOgYjE_zUNKDK_znSZXGCQGFAoOTEay552s,549
|
|
305
256
|
rasa/cli/project_templates/telco/data/general/patterns.yml,sha256=7hI6DdDHWNF3OHhtOUiACnawPKN6GcC87HQJnmaTAOo,755
|
|
306
257
|
rasa/cli/project_templates/telco/data/network/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
|
|
307
258
|
rasa/cli/project_templates/telco/data/network/flow_reset_router.yml,sha256=IFp8WSVclHQKQlM7dJphKBtRcIGXO_l4CmvTvvuGG8A,258
|
|
308
259
|
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=
|
|
260
|
+
rasa/cli/project_templates/telco/docs/docs.md,sha256=oW7M2DXeC6OjhckW9CL6hAA5AqxT1x13fRoFWIRZJRU,521
|
|
310
261
|
rasa/cli/project_templates/telco/docs/network/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
|
|
311
262
|
rasa/cli/project_templates/telco/docs/network/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
|
|
312
263
|
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/
|
|
264
|
+
rasa/cli/project_templates/telco/domain/billing/understand_bill.yml,sha256=-KYKDbqew12esbmHzAgGXr5epitsgNhNCfxy9HSnCeA,2331
|
|
265
|
+
rasa/cli/project_templates/telco/domain/domain.md,sha256=BkscwP8XV4zTmQLJPLMV-jLmTwcazWZQkSJL47oAzWg,1019
|
|
314
266
|
rasa/cli/project_templates/telco/domain/general/bot_challenge.yml,sha256=eqA8cZoSZCiJx15WgzmXwywn4vwKjsssWnxVC7xJk1E,146
|
|
315
267
|
rasa/cli/project_templates/telco/domain/general/feedback.yml,sha256=EPdP41J0lB79S9WftTOMECSAcsZcGlKU9EAsPy2rNsk,1076
|
|
316
268
|
rasa/cli/project_templates/telco/domain/general/goodbye.yml,sha256=71xewqih1_jZfh1f_izcACRva-hZE3k1NHTMvtd_ApY,333
|
|
317
269
|
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=
|
|
270
|
+
rasa/cli/project_templates/telco/domain/general/human_handoff.yml,sha256=jNOtmjyUSHuEjSE_zDwopmdyNF_LZBiGKXKPteqaCFk,726
|
|
319
271
|
rasa/cli/project_templates/telco/domain/general/patterns.yml,sha256=YmJ2uBoSfh-KvuPrxGBNOiibgYgYmoJj2AwGb3zf9eA,1075
|
|
320
|
-
rasa/cli/project_templates/telco/domain/network/
|
|
321
|
-
rasa/cli/project_templates/telco/domain/network/
|
|
322
|
-
rasa/cli/project_templates/telco/domain/network/
|
|
323
|
-
rasa/cli/project_templates/telco/domain/network/
|
|
272
|
+
rasa/cli/project_templates/telco/domain/network/reboot_router.yml,sha256=lh-lfRUrO6C6jw2iqJk2-qC217JB2q5DPLS7PjLFhsw,441
|
|
273
|
+
rasa/cli/project_templates/telco/domain/network/reset_router.yml,sha256=x184d8fLHakZDswzi8_sRxuXheIwm4rJCYNe2j3qLMk,413
|
|
274
|
+
rasa/cli/project_templates/telco/domain/network/run_speed_test.yml,sha256=SxzdIooULal3BmsCAfDSdwKRbtV3PyXtSEOUTWRWS3c,493
|
|
275
|
+
rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml,sha256=ZpVoXQKJfS4Ra-qy89ktRURcwMnPQ51PDPyc1vyQl60,2762
|
|
324
276
|
rasa/cli/project_templates/telco/domain/shared.yml,sha256=TYe6yeIITCVzxvp-LBE9n38TErP4h37SB4jShpjEVuM,3399
|
|
325
|
-
rasa/cli/project_templates/telco/endpoints.yml,sha256=
|
|
326
|
-
rasa/cli/project_templates/telco/prompts/rephraser_demo_personality_prompt.jinja2,sha256=
|
|
277
|
+
rasa/cli/project_templates/telco/endpoints.yml,sha256=yL0ifaAMFHVc9OmWKFEYbnhIZv8edQOpN1lGDTBEa5Y,2263
|
|
278
|
+
rasa/cli/project_templates/telco/prompts/rephraser_demo_personality_prompt.jinja2,sha256=H56ei41Sqxi94QCJMI8OoY1_fftTgUiOSDMhP3sRy-8,1973
|
|
279
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/billing/understand_bill.yml,sha256=WKB1QQs2EMU2r_-LVrtwT053kg4i5Hqwr8s1wrvqBMI,2393
|
|
280
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
281
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/feedback.yml,sha256=z0YsRGeYRMJp3-Sz4g3eyGy4vXGrVPuzwOXRkxAaQZc,1553
|
|
282
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
283
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
284
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
285
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/patterns.yml,sha256=hS_0Ri3FHHpAS783xWydYVp_YpE57nO1hd4WtjqJ6Ig,1461
|
|
286
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/network/solve_internet_issue.yml,sha256=p2IAZJOuRgsiSmdyboTf1CAZT-T6AIBMlRYqYGc8tcw,2227
|
|
327
287
|
rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
288
|
rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
|
|
329
289
|
rasa/cli/project_templates/tutorial/config.yml,sha256=jSoFhtr8hA-CFb8g0PaJHwpU0YKsmHSen-E1FZ7dyeE,267
|
|
@@ -357,13 +317,13 @@ rasa/core/actions/action_clean_stack.py,sha256=xUP-2ipPsPAnAiwP17c-ezmHPSrV4JSUZ
|
|
|
357
317
|
rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
|
|
358
318
|
rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
|
|
359
319
|
rasa/core/actions/action_repeat_bot_messages.py,sha256=T7bJH0fsxFQgbkCZZ5dnPi8v18-2X9QZZLfAHmmn7WI,3466
|
|
360
|
-
rasa/core/actions/action_run_slot_rejections.py,sha256=
|
|
320
|
+
rasa/core/actions/action_run_slot_rejections.py,sha256=973BG3tST-TlizJ36P7SVjJfGW_sL25v-7Dg_oud7dQ,7224
|
|
361
321
|
rasa/core/actions/action_trigger_chitchat.py,sha256=krOPqCXBihxOskqmm05A4mFEm4lj4ohvzuddy7rELVQ,1084
|
|
362
322
|
rasa/core/actions/action_trigger_flow.py,sha256=IydYAGafTtoY6XSgCX124xJQhzudUg8JAICstqsV3VA,3487
|
|
363
323
|
rasa/core/actions/action_trigger_search.py,sha256=QfYqnaGRCqRYJ4msYsLAbnVYW5ija_tqhCcKIN8aEfw,1064
|
|
364
324
|
rasa/core/actions/constants.py,sha256=gfgdWmj-OJ5xTcTAS1OcXQ3dgcTiHO98NC-SGyKlTjs,161
|
|
365
325
|
rasa/core/actions/custom_action_executor.py,sha256=qafASBdM3-hByDqbkNxgXfx5yMSsJh_nB3B7x9ye0TY,6176
|
|
366
|
-
rasa/core/actions/direct_custom_actions_executor.py,sha256=
|
|
326
|
+
rasa/core/actions/direct_custom_actions_executor.py,sha256=zGHI3cXVRfyzaaGSH7VePXHQxsDAvF0iAZSEcOuM-_M,4026
|
|
367
327
|
rasa/core/actions/e2e_stub_custom_action_executor.py,sha256=D-kECC1QjVLv4owNxstW2xJPPsXTGfGepvquMeWB_ec,2282
|
|
368
328
|
rasa/core/actions/forms.py,sha256=MPGxp3vg-EgFcU5UQYqWM2tycSFIuoF6vWvNSSWPhSA,26967
|
|
369
329
|
rasa/core/actions/grpc_custom_action_executor.py,sha256=EDxdSIDA4H4Mu-QZk-pPGV2N41ZsbY8W9laV6l1WlDQ,9103
|
|
@@ -373,9 +333,9 @@ rasa/core/actions/two_stage_fallback.py,sha256=k8PkD25fvH3kThG9lpC6oLMK7o15kV4yE
|
|
|
373
333
|
rasa/core/agent.py,sha256=9DEhOut37kAMikrzg3meaGZ_Q8IwTvuBTuvzBau_uB4,21755
|
|
374
334
|
rasa/core/available_endpoints.py,sha256=bz28zpN5N58Vb1O3vazHPYu2K7Uy5e8v-bv1nEqruzM,5413
|
|
375
335
|
rasa/core/brokers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
376
|
-
rasa/core/brokers/broker.py,sha256=
|
|
336
|
+
rasa/core/brokers/broker.py,sha256=mCBHPJYiFENeLXdNZjh7N28BC7t2l4oA-EG1rNzFJyQ,4392
|
|
377
337
|
rasa/core/brokers/file.py,sha256=ggMc2LU6SrYXyPB89tJ1S44kfTe2EApSZgq5EZ5KaB8,1804
|
|
378
|
-
rasa/core/brokers/kafka.py,sha256=
|
|
338
|
+
rasa/core/brokers/kafka.py,sha256=47dTKsieGe3D78TkSOGoXRBioB74EDLafW8Pty_0_Ys,15555
|
|
379
339
|
rasa/core/brokers/pika.py,sha256=HARXdMD7gAn5SofnSo1p53TruO2ytTCNTNGV7u82u8A,14493
|
|
380
340
|
rasa/core/brokers/sql.py,sha256=SZ-ZFVaPnkCPNNKnISf3KQ-HnG4mQhZ4AoLJrkrIfUE,2748
|
|
381
341
|
rasa/core/channels/__init__.py,sha256=cK3Yk6BChYPd01LIt-XPftaN5obucxTQTEpNuzkdKSs,2624
|
|
@@ -384,9 +344,9 @@ rasa/core/channels/callback.py,sha256=Llt5TGimf_5P29s2KxEPOZUX6_df7u8uBCsNSFy7CQ
|
|
|
384
344
|
rasa/core/channels/channel.py,sha256=q8zq9n86kb9iccXoGv_Vj4vcwB75AlXnoK5vg_3evhE,18730
|
|
385
345
|
rasa/core/channels/console.py,sha256=13bjhsmnuKoShYVdtt2VHzzt9xylER-hDTONC1MiQG0,8075
|
|
386
346
|
rasa/core/channels/constants.py,sha256=HWLmyE1kuq9veQFVfAJuGLm3I3Y_IvzEHAJ7PoSxbLQ,153
|
|
387
|
-
rasa/core/channels/development_inspector.py,sha256=
|
|
347
|
+
rasa/core/channels/development_inspector.py,sha256=048u6PX9PRj4_FKos1Vd6b9vBsWw93kFk10oN475R90,9954
|
|
388
348
|
rasa/core/channels/facebook.py,sha256=7DTNz2hKLG7sm0U6UjqPgedZthZXrWFnLEW40c8OrCg,15742
|
|
389
|
-
rasa/core/channels/hangouts.py,sha256=
|
|
349
|
+
rasa/core/channels/hangouts.py,sha256=Q5oPNzXK7x-iM1QxpAFMN2xCKHoySgJpFF0dNS3pz9Q,11798
|
|
390
350
|
rasa/core/channels/inspector/.eslintrc.cjs,sha256=FAnPE1mm-eiGeQb9JLMVxDtxX4YOQG4wEFM6OFHB74Y,721
|
|
391
351
|
rasa/core/channels/inspector/.gitignore,sha256=lgGIPiVpFVUNSZl9oNQLelLOWUzpF7sikLW8xmsrrqI,248
|
|
392
352
|
rasa/core/channels/inspector/.prettierrc,sha256=uvS6VeeVaonUAKWc7xPHfqBskljFt0g0xtNevBHwpqA,69
|
|
@@ -395,34 +355,34 @@ rasa/core/channels/inspector/assets/favicon.ico,sha256=w0X2YObf80IlAY80eLK2qE0Gv
|
|
|
395
355
|
rasa/core/channels/inspector/assets/rasa-chat.js,sha256=JtGjdh_1d7HLTZXnFNoBh0XrJRe6yuDNygQsAJVK04Y,772925
|
|
396
356
|
rasa/core/channels/inspector/custom.d.ts,sha256=b3klfKJ7AlM0SpCm0U-qSwLsJtj7abtp8IwgRZ2sK5c,51
|
|
397
357
|
rasa/core/channels/inspector/dist/assets/Tableau10-1b767f5e.js,sha256=eJvfgcZZGjK8JpGsLNf2Gh88HYOzRHKnr6BrgKqdDLo,188
|
|
398
|
-
rasa/core/channels/inspector/dist/assets/arc-
|
|
358
|
+
rasa/core/channels/inspector/dist/assets/arc-35222594.js,sha256=PP8Py5CxSpBJkWwv-E9ulOceCgjCKJCslxK02xqW0WA,3463
|
|
399
359
|
rasa/core/channels/inspector/dist/assets/array-9f3ba611.js,sha256=SwE3teHXhGC3dibkXwDhCeL-8DgcIc8lM6VKsK05dAY,86
|
|
400
|
-
rasa/core/channels/inspector/dist/assets/blockDiagram-38ab4fdb-
|
|
401
|
-
rasa/core/channels/inspector/dist/assets/c4Diagram-3d4e48cf-
|
|
402
|
-
rasa/core/channels/inspector/dist/assets/channel-
|
|
403
|
-
rasa/core/channels/inspector/dist/assets/classDiagram-70f12bd4-
|
|
404
|
-
rasa/core/channels/inspector/dist/assets/classDiagram-v2-f2320105-
|
|
405
|
-
rasa/core/channels/inspector/dist/assets/clone-
|
|
406
|
-
rasa/core/channels/inspector/dist/assets/createText-2e5e7dd3-
|
|
407
|
-
rasa/core/channels/inspector/dist/assets/edges-e0da2a9e-
|
|
408
|
-
rasa/core/channels/inspector/dist/assets/erDiagram-9861fffd-
|
|
409
|
-
rasa/core/channels/inspector/dist/assets/flowDb-956e92f1-
|
|
410
|
-
rasa/core/channels/inspector/dist/assets/flowDiagram-66a62f08-
|
|
411
|
-
rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-
|
|
412
|
-
rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-4a651766-
|
|
413
|
-
rasa/core/channels/inspector/dist/assets/ganttDiagram-c361ad54-
|
|
414
|
-
rasa/core/channels/inspector/dist/assets/gitGraphDiagram-72cf32ee-
|
|
415
|
-
rasa/core/channels/inspector/dist/assets/graph-
|
|
360
|
+
rasa/core/channels/inspector/dist/assets/blockDiagram-38ab4fdb-a0efbfd3.js,sha256=lWfU4Y-WLT114iO6ib-vGVaHoC0zKPqrki4Laem01lE,37803
|
|
361
|
+
rasa/core/channels/inspector/dist/assets/c4Diagram-3d4e48cf-0584c0f2.js,sha256=zsUf1wjbQCinECGn9JRtfqj_djZ8DJoPNPq46PgIg_Q,68413
|
|
362
|
+
rasa/core/channels/inspector/dist/assets/channel-8e08bed9.js,sha256=gemDeDPNrVSdobBoQmbBLbTk15FnpP4VDgbEwE5uLhM,112
|
|
363
|
+
rasa/core/channels/inspector/dist/assets/classDiagram-70f12bd4-39f40dbe.js,sha256=IgR0tRgGa4sd5idKXiCxHASDVl20571acKr0c3NeW4Y,9241
|
|
364
|
+
rasa/core/channels/inspector/dist/assets/classDiagram-v2-f2320105-1ad755f3.js,sha256=JqNOVZbDmbCKCwlu_VznVIsyiLgn2fPI6_NoyaDFVZY,5007
|
|
365
|
+
rasa/core/channels/inspector/dist/assets/clone-78c82dea.js,sha256=dF2dHwT0KooAVZjgyq9zWySFq7p5LSun-3lSzGS8qOQ,92
|
|
366
|
+
rasa/core/channels/inspector/dist/assets/createText-2e5e7dd3-b0f4f0fe.js,sha256=unDvjrii197E_eAkhG6u3qhCiwpltGRvToBW2myUrXM,60204
|
|
367
|
+
rasa/core/channels/inspector/dist/assets/edges-e0da2a9e-9039bff9.js,sha256=8_070dNHKzcCYw_cuC6H2b_iI8a-00BlzuegaD8WfGs,34468
|
|
368
|
+
rasa/core/channels/inspector/dist/assets/erDiagram-9861fffd-65c9b127.js,sha256=ULUM0ju_8R_Cz_asm3rFBZZNqE0ae__WWELeQN-xc-c,30812
|
|
369
|
+
rasa/core/channels/inspector/dist/assets/flowDb-956e92f1-4f08b38e.js,sha256=S5-rUpYeXexuBClwhmcCHOeEEUJT5B7ZA7Hf4OiWYU8,46768
|
|
370
|
+
rasa/core/channels/inspector/dist/assets/flowDiagram-66a62f08-e95c362a.js,sha256=a07NfcveQgmiy5BGZNcBjQgZzMyRW6BkcmigLJzRF4g,21637
|
|
371
|
+
rasa/core/channels/inspector/dist/assets/flowDiagram-v2-96b9c2cf-2b08f601.js,sha256=x9yhFiw-Ys4clFrSBD5XfEe9uDd_tRUUOrVKQqm7m5k,737
|
|
372
|
+
rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-4a651766-703c3015.js,sha256=17t6w_LvsDacl8fqeF5bMvwmVd8Q5L8_bdkn25QXjm0,1451067
|
|
373
|
+
rasa/core/channels/inspector/dist/assets/ganttDiagram-c361ad54-699328ea.js,sha256=z-QJfTKvZ7SmtmhIqpdRL8d-XJ5oBmfCu-jBc-Pr0cg,60002
|
|
374
|
+
rasa/core/channels/inspector/dist/assets/gitGraphDiagram-72cf32ee-04cf4b05.js,sha256=UmLHt2CynjnHDYjkZ8hKsN7N8BWZiJEhUYIoShPCstM,38738
|
|
375
|
+
rasa/core/channels/inspector/dist/assets/graph-ee94449e.js,sha256=f2yBirBJEIhUtuQ-iKkrwXWWGkp0O9K4o0ggXy4pxFU,17877
|
|
416
376
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-128cfa44.ttf,sha256=Eoz6RFjRyATpNZMGZOlv9ZsWE5UT1kkrbuAxkWhiJG4,37048
|
|
417
377
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-21dbcb97.woff,sha256=IdvLl-5NXn80-Y6HpfrvOybL87mggsMqNn40gPIFfi8,17868
|
|
418
378
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-222b5e26.svg,sha256=IiteJlxkS9xpjbDYOpvFJczqQ9_3w207UajJT0Dot9U,53494
|
|
419
379
|
rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-9ad89b2a.woff2,sha256=mtibKkueGawDuHB---uOqNvQZr0WT7JRcNMwFkFEM_c,13652
|
|
420
|
-
rasa/core/channels/inspector/dist/assets/index-3862675e-
|
|
380
|
+
rasa/core/channels/inspector/dist/assets/index-3862675e-940162b4.js,sha256=UY53kSmHMnNcHCd_kXgPH0ezDueMng6sOaqV5esF7Vk,11985
|
|
421
381
|
rasa/core/channels/inspector/dist/assets/index-3ee28881.css,sha256=PuKIgX4yh7tnbIq6Q4j9Vd8FgIWdPSI5GNFWJvy5Lwg,755
|
|
422
|
-
rasa/core/channels/inspector/dist/assets/index-
|
|
423
|
-
rasa/core/channels/inspector/dist/assets/infoDiagram-f8f76790-
|
|
382
|
+
rasa/core/channels/inspector/dist/assets/index-c941dcb3.js,sha256=Nir1Sjq5A1Q0qCukEOEIXJbyx7-2KI9q6I5r0FcV3cU,2468405
|
|
383
|
+
rasa/core/channels/inspector/dist/assets/infoDiagram-f8f76790-c79c2866.js,sha256=7zHTbgKJztd3WxHMZOVG26-1IgwRCUwxb5jJze-4i0o,8590
|
|
424
384
|
rasa/core/channels/inspector/dist/assets/init-77b53fdd.js,sha256=N5-ogMFK1I9DsMI_9WswsrgI6EYP2fnK2L98snjFuBQ,147
|
|
425
|
-
rasa/core/channels/inspector/dist/assets/journeyDiagram-49397b02-
|
|
385
|
+
rasa/core/channels/inspector/dist/assets/journeyDiagram-49397b02-84489d30.js,sha256=f4ALtqKuoc_RvHqILK-CQ0QG6BGSrmR2vAXEDpNSANI,21690
|
|
426
386
|
rasa/core/channels/inspector/dist/assets/katex-498eb57e.js,sha256=2SDaMVmSS3O4AVPdYMd-w_U7iD6-Q2qMs95ejt6ioGU,265384
|
|
427
387
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-60c05ee4.woff,sha256=YMBe5H52gxVUHkh9Ebku7FSn9TNvhM7Mi1glyHu3AFM,27848
|
|
428
388
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-8335d9b8.svg,sha256=gzXZuPYpxLQq9-vr05HjjwjTFssTQM_rXhm_S7MWGJE,80884
|
|
@@ -432,38 +392,38 @@ rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-16705655.woff2,s
|
|
|
432
392
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-5aeb07f9.woff,sha256=WusH-ZgGY8JQHJYgNx4Rrnqm4yDZTddT0O9W2DCMdLM,28412
|
|
433
393
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9c459044.ttf,sha256=nEWQRG2_g-2uBb5Moo73ie5QoB7yy48bUcWTfQKcrHY,60100
|
|
434
394
|
rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9e2898a4.svg,sha256=niiYpDBKSyCaWoqDxzpwHOFozt1SLhac0y-RWplr0Oo,80331
|
|
435
|
-
rasa/core/channels/inspector/dist/assets/layout-
|
|
436
|
-
rasa/core/channels/inspector/dist/assets/line-
|
|
437
|
-
rasa/core/channels/inspector/dist/assets/linear-
|
|
438
|
-
rasa/core/channels/inspector/dist/assets/mindmap-definition-fc14e90a-
|
|
395
|
+
rasa/core/channels/inspector/dist/assets/layout-a9aa9858.js,sha256=NVtsezrqaJMy29v2X9jWJ0nceeCUHbI2Ft5YVfxL8Vs,29119
|
|
396
|
+
rasa/core/channels/inspector/dist/assets/line-eb73cf26.js,sha256=kocn0fLMt4s37CKW-mBuyg5zpdR9lZlNkzWCoedn1QY,945
|
|
397
|
+
rasa/core/channels/inspector/dist/assets/linear-b3399f9a.js,sha256=5HZiPrane7r1SSAlVKQcrASeNQMiI1mKK1liGCMvU1Q,10174
|
|
398
|
+
rasa/core/channels/inspector/dist/assets/mindmap-definition-fc14e90a-b095bf1a.js,sha256=EPAQHeoqiOwUTJK6tbM3a8zPtnm6WhGYLERCY8z7JMg,519607
|
|
439
399
|
rasa/core/channels/inspector/dist/assets/ordinal-ba9b4969.js,sha256=ibjC65zmAGwJyDhiJ6dEDb7WoRtNtlGkJQEYN6FngOk,1189
|
|
440
400
|
rasa/core/channels/inspector/dist/assets/path-53f90ab3.js,sha256=In0rN0CWcPz7tHv2Esg5lWjqEj4FalcuzhiQ3lm6jcs,2282
|
|
441
|
-
rasa/core/channels/inspector/dist/assets/pieDiagram-8a3498a8-
|
|
442
|
-
rasa/core/channels/inspector/dist/assets/quadrantDiagram-120e2f19-
|
|
443
|
-
rasa/core/channels/inspector/dist/assets/requirementDiagram-deff3bca-
|
|
444
|
-
rasa/core/channels/inspector/dist/assets/sankeyDiagram-04a897e0-
|
|
445
|
-
rasa/core/channels/inspector/dist/assets/sequenceDiagram-704730f1-
|
|
446
|
-
rasa/core/channels/inspector/dist/assets/stateDiagram-587899a1-
|
|
447
|
-
rasa/core/channels/inspector/dist/assets/stateDiagram-v2-d93cdb3a-
|
|
448
|
-
rasa/core/channels/inspector/dist/assets/styles-6aaf32cf-
|
|
449
|
-
rasa/core/channels/inspector/dist/assets/styles-9a916d00-
|
|
450
|
-
rasa/core/channels/inspector/dist/assets/styles-c10674c1-
|
|
451
|
-
rasa/core/channels/inspector/dist/assets/svgDrawCommon-08f97a94-
|
|
452
|
-
rasa/core/channels/inspector/dist/assets/timeline-definition-85554ec2-
|
|
453
|
-
rasa/core/channels/inspector/dist/assets/xychartDiagram-e933f94c-
|
|
454
|
-
rasa/core/channels/inspector/dist/index.html,sha256=
|
|
401
|
+
rasa/core/channels/inspector/dist/assets/pieDiagram-8a3498a8-07644b66.js,sha256=DPAOpuu-JTfB3lsq8R2KTIA-29T_IPA5OjVASP5wgDQ,15016
|
|
402
|
+
rasa/core/channels/inspector/dist/assets/quadrantDiagram-120e2f19-573a3f9c.js,sha256=AQxEyFn67gsM4sBET_OhxO7yMyn5nLH2Nke2nIqECnc,29413
|
|
403
|
+
rasa/core/channels/inspector/dist/assets/requirementDiagram-deff3bca-d457e1e1.js,sha256=KDXctl6A5zy3gq2C90vJzCRa21fk05f8nwahesk7IpI,24623
|
|
404
|
+
rasa/core/channels/inspector/dist/assets/sankeyDiagram-04a897e0-9d26e1a2.js,sha256=0V2ewWP62qZhPHMGMCrQF3dYvl5HmAC1ODIBwrOh8Lw,21219
|
|
405
|
+
rasa/core/channels/inspector/dist/assets/sequenceDiagram-704730f1-3a9cde10.js,sha256=U6_FvHViA5xh0NONKRPnc5QXUGuAL5smv3harcAWF2M,84129
|
|
406
|
+
rasa/core/channels/inspector/dist/assets/stateDiagram-587899a1-4f3e8cec.js,sha256=xbNa_0KKbrLtWT-GVa3T7WkaHhIJtaRtLL9fpMwwyfo,10125
|
|
407
|
+
rasa/core/channels/inspector/dist/assets/stateDiagram-v2-d93cdb3a-e617e5bf.js,sha256=410wBMU90jQ-60iGUsyWItGkPt07U61yV52F3EtJjIA,4863
|
|
408
|
+
rasa/core/channels/inspector/dist/assets/styles-6aaf32cf-eab30d2f.js,sha256=ALbnJWInEYdDf2KNXnKQyq3SUZrvLc9-zi2SVa9AU_I,26432
|
|
409
|
+
rasa/core/channels/inspector/dist/assets/styles-9a916d00-09994be2.js,sha256=uU6Pktb80ITmSHIUx6b3OmX89Zdkg5g8C7pek69xEOk,37855
|
|
410
|
+
rasa/core/channels/inspector/dist/assets/styles-c10674c1-b7110364.js,sha256=2RvOVBMx3XugPR0BlsQOXvkO3mmBNdw3iWS8ot5-nQA,10055
|
|
411
|
+
rasa/core/channels/inspector/dist/assets/svgDrawCommon-08f97a94-3ebc92ad.js,sha256=3XaIzTvNzanu02SoawdfNJAS4b0AtG-GFx_r0XdgWl4,1334
|
|
412
|
+
rasa/core/channels/inspector/dist/assets/timeline-definition-85554ec2-7d13d2f2.js,sha256=NZQ3tpu2UhcgUuuZP-IXVf5JBWovnfu38RxGLIJAFHk,22627
|
|
413
|
+
rasa/core/channels/inspector/dist/assets/xychartDiagram-e933f94c-488385e1.js,sha256=GAGBAPr9fwiEpfIu57XKEdYa8duAgRvmIOgcpImZ-Y8,37266
|
|
414
|
+
rasa/core/channels/inspector/dist/index.html,sha256=iWLdafyKSRpQIN-0VaTQ__g6C65wtyKw4-EuiTwTBII,2761
|
|
455
415
|
rasa/core/channels/inspector/index.html,sha256=98zTIw3U5XkLiibL44Rc3jXS1E6VakgocW_Bk8O8IM0,1701
|
|
456
416
|
rasa/core/channels/inspector/jest.config.ts,sha256=pDs-0q6gs0Jnm9mWKq5M1vC5wiX_Cnh4l6s--dBsskM,406
|
|
457
417
|
rasa/core/channels/inspector/package.json,sha256=Ic3U6T5YiJhP9zwzdcGAVOYwKWw7dbquC25E8G8GBBo,1827
|
|
458
418
|
rasa/core/channels/inspector/setupTests.ts,sha256=JaGsnR6noIcuD5kLjb9SiOkXwJARLV_gF0dULtlWPqk,75
|
|
459
|
-
rasa/core/channels/inspector/src/App.tsx,sha256=
|
|
460
|
-
rasa/core/channels/inspector/src/components/Chat.tsx,sha256=
|
|
419
|
+
rasa/core/channels/inspector/src/App.tsx,sha256=nFZMj3vs1bqaxlyyj0KtC_y-Y-YOesY0-TJQnD18IFk,8221
|
|
420
|
+
rasa/core/channels/inspector/src/components/Chat.tsx,sha256=83FDPzdb8XhC4HpKqcO1Ge8AKYLx4aCO_stWUndMgqk,3321
|
|
461
421
|
rasa/core/channels/inspector/src/components/DiagramFlow.tsx,sha256=gMGFVP1_9MsgJ6m7XRXlbBVJKLV4Q5bNXsHz0zo54O0,2719
|
|
462
|
-
rasa/core/channels/inspector/src/components/DialogueInformation.tsx,sha256=
|
|
422
|
+
rasa/core/channels/inspector/src/components/DialogueInformation.tsx,sha256=VOGVHW76C8DVM83tXggLM9LPXVmID04T9RFNMmHM07s,5676
|
|
463
423
|
rasa/core/channels/inspector/src/components/DialogueStack.tsx,sha256=_SatHtSuypw7-mfPDHsyWM4LQfVUhpIFViQ6H40aieo,3022
|
|
464
424
|
rasa/core/channels/inspector/src/components/ExpandIcon.tsx,sha256=w0bkKbAHKXBs2pR3qDxYnZLCU0oAMa2JCsWBdcS_A7U,825
|
|
465
425
|
rasa/core/channels/inspector/src/components/FullscreenButton.tsx,sha256=ljxZw7aQE5ZjEk34dgc8RdGhYPLVvUbomuWZPkpi8bY,1001
|
|
466
|
-
rasa/core/channels/inspector/src/components/LatencyDisplay.tsx,sha256=
|
|
426
|
+
rasa/core/channels/inspector/src/components/LatencyDisplay.tsx,sha256=7WF8rEbPhgtNuLX3bThUUHk3vWICKQ2A3VvvKhNZqBg,8895
|
|
467
427
|
rasa/core/channels/inspector/src/components/LoadingSpinner.tsx,sha256=8844tPXlE5KUMhv9fFb8z8Xshd5QJaAOHbkIE_jVK2I,1125
|
|
468
428
|
rasa/core/channels/inspector/src/components/NoActiveFlow.tsx,sha256=qKjD-Z93c9PP5XXxhNjTP04tNsyclEPkdvpynL9Qr4E,766
|
|
469
429
|
rasa/core/channels/inspector/src/components/RasaLogo.tsx,sha256=Ba9LownqKm0lSp9mdnmUJeeoywZ_grfdMRbXPaLv5zw,2386
|
|
@@ -471,7 +431,7 @@ rasa/core/channels/inspector/src/components/RecruitmentPanel.tsx,sha256=7ZaX7lVb
|
|
|
471
431
|
rasa/core/channels/inspector/src/components/SaraDiagrams.tsx,sha256=lFpeN9BXPwTG3NqDBZyt4Xi08Oc36FxEDT27cBWBxmw,414436
|
|
472
432
|
rasa/core/channels/inspector/src/components/Slots.tsx,sha256=qKIuBQUYO5v8PJ-notvnGYU34c9tLGLvGq6nAfuai24,2012
|
|
473
433
|
rasa/core/channels/inspector/src/components/Welcome.tsx,sha256=X_oQXsin2qb2hXrefmusd6hsGXaeekTxcvw-Csvrgi4,1498
|
|
474
|
-
rasa/core/channels/inspector/src/helpers/audio/audiostream.ts,sha256=
|
|
434
|
+
rasa/core/channels/inspector/src/helpers/audio/audiostream.ts,sha256=bH8YzAM7bD0eJvr2k0j4pBhQ12wNDpRnQ6Ts0UfkZCA,8132
|
|
475
435
|
rasa/core/channels/inspector/src/helpers/audio/microphone-processor.js,sha256=lH8j_kW8jeMsUxkozmP_C7hhm-ApFo9d0zlQcyWWaag,302
|
|
476
436
|
rasa/core/channels/inspector/src/helpers/audio/playback-processor.js,sha256=S8EysI97SH5jZW4WRqEua7RSv4uP9WSVHxIQmTcRzbQ,944
|
|
477
437
|
rasa/core/channels/inspector/src/helpers/conversation.ts,sha256=Aqw85fPfHRv4TOeI2EV8OItSAbXEI6S1uVlWz-uA0k0,448
|
|
@@ -512,7 +472,7 @@ rasa/core/channels/inspector/src/theme/base/styles.ts,sha256=86lcU7iLsPFdsR3Xil3
|
|
|
512
472
|
rasa/core/channels/inspector/src/theme/base/typography.ts,sha256=VG-TCiMzWvK1uMgSFgM-8JTQOwNrJqrOJ_34UeG6YAU,711
|
|
513
473
|
rasa/core/channels/inspector/src/theme/base/zIndices.ts,sha256=zLiZ_HmAcAtzmKmYJG4irTXORFKLOFj0gJqN6PKYbk0,299
|
|
514
474
|
rasa/core/channels/inspector/src/theme/index.ts,sha256=T1AEBnuxeXmjSjnXiUNk1O8Y9YQZRqu4F7TnfYR_67k,2480
|
|
515
|
-
rasa/core/channels/inspector/src/types.ts,sha256=
|
|
475
|
+
rasa/core/channels/inspector/src/types.ts,sha256=IDmDZSCy3oCLROKZv0cZPY00vgRLcK5ftvpgmiKQyb0,2353
|
|
516
476
|
rasa/core/channels/inspector/src/vite-env.d.ts,sha256=ZZlpNvuwQpFfe3SiAPzd5-QQ8ypmmxq5WXz6pLD63bU,38
|
|
517
477
|
rasa/core/channels/inspector/tests/__mocks__/fileMock.ts,sha256=6uOVwaFw9chLI5Nbi_wpXa-2KYxY1ZUhiKRlaExSsE8,33
|
|
518
478
|
rasa/core/channels/inspector/tests/__mocks__/matchMedia.ts,sha256=eOw0BKJMEvZigLntkJ_Z6wg6al8jDi5U1sI1PK4WOlg,440
|
|
@@ -528,7 +488,7 @@ rasa/core/channels/rest.py,sha256=LWBYBdVzOz5Vv5tZCkB1QA7LxXJFTeC87CQLAi_ZGeI,73
|
|
|
528
488
|
rasa/core/channels/rocketchat.py,sha256=hajaH6549CjEYFM5jSapw1DQKBPKTXbn7cVSuZzknmI,5999
|
|
529
489
|
rasa/core/channels/slack.py,sha256=jVsTTUu9wUjukPoIsAhbee9o0QFUMCNlQHbR8LTcMBc,24406
|
|
530
490
|
rasa/core/channels/socketio.py,sha256=N3aldDMzXotO85lX5pkmVtVq7g6gh9YpUpQpbAH3ogs,17560
|
|
531
|
-
rasa/core/channels/studio_chat.py,sha256=
|
|
491
|
+
rasa/core/channels/studio_chat.py,sha256=A8GRabTK-lHv98ZWoCNtaZPAAPWfr7HN7O-EbigoMtc,22814
|
|
532
492
|
rasa/core/channels/telegram.py,sha256=TKVknsk3U9tYeY1a8bzlhqkltWmZfGSOvrcmwa9qozc,12499
|
|
533
493
|
rasa/core/channels/twilio.py,sha256=2BTQpyx0b0yPpc0A2BHYfxLPgodrLGLs8nq6i3lVGAM,5906
|
|
534
494
|
rasa/core/channels/vier_cvg.py,sha256=5O4yx0TDQIMppvlCxTOzmPB60CA-vqQXqWQ7upfrTO0,13496
|
|
@@ -541,26 +501,26 @@ rasa/core/channels/voice_ready/utils.py,sha256=8sDUDWHOxgEuSwNDJUQ15SnRlfnuCjEOF
|
|
|
541
501
|
rasa/core/channels/voice_stream/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
542
502
|
rasa/core/channels/voice_stream/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
543
503
|
rasa/core/channels/voice_stream/asr/asr_engine.py,sha256=34rgUqDtH9YvpAUZYPsS0GuS1pbYaz9ziEI5HyFXUSs,3403
|
|
544
|
-
rasa/core/channels/voice_stream/asr/asr_event.py,sha256=
|
|
545
|
-
rasa/core/channels/voice_stream/asr/azure.py,sha256=
|
|
546
|
-
rasa/core/channels/voice_stream/asr/deepgram.py,sha256=
|
|
504
|
+
rasa/core/channels/voice_stream/asr/asr_event.py,sha256=fuoYIVbeJStvivnFAmG-7oKys4Aldj8HRERP7kq59p8,302
|
|
505
|
+
rasa/core/channels/voice_stream/asr/azure.py,sha256=W9WGT_Q9IQ_pi_fysN1BsI6UC0fXvUruTbYtjGe4Tp4,6264
|
|
506
|
+
rasa/core/channels/voice_stream/asr/deepgram.py,sha256=FHsItXCayCWJJBcFh4bzZ5bRDXcGb4-1Uchy8y7hpjY,5930
|
|
547
507
|
rasa/core/channels/voice_stream/audio_bytes.py,sha256=3V0QQplPD-kVfebaaeVcKgV7pwIJyjnTenujVD3y3sY,340
|
|
548
|
-
rasa/core/channels/voice_stream/audiocodes.py,sha256=
|
|
549
|
-
rasa/core/channels/voice_stream/browser_audio.py,sha256=
|
|
508
|
+
rasa/core/channels/voice_stream/audiocodes.py,sha256=nchGly-ZHbZKFf5yYcAOuRwa9SoNju0FTqGiDE5nUfY,12854
|
|
509
|
+
rasa/core/channels/voice_stream/browser_audio.py,sha256=ER3EHeBNzDg_eiwNG2QfnihgYm9qsWv98HftahsvoNk,7322
|
|
550
510
|
rasa/core/channels/voice_stream/call_state.py,sha256=DIXWVDoHh2Bymy7wgHnqYeyIOHlQTl9J0REjzpEI0E8,1395
|
|
551
|
-
rasa/core/channels/voice_stream/genesys.py,sha256=
|
|
552
|
-
rasa/core/channels/voice_stream/jambonz.py,sha256=
|
|
511
|
+
rasa/core/channels/voice_stream/genesys.py,sha256=bvt__LK5m3MNgcPKG3dX-sWQ8UJ6qqumXpkX8dl3Xc8,17777
|
|
512
|
+
rasa/core/channels/voice_stream/jambonz.py,sha256=QRv-Ltgd4izeQoTABqSWPzz8bJSqFWxzng4GCakZVic,8947
|
|
553
513
|
rasa/core/channels/voice_stream/tts/__init__.py,sha256=Z-EAlRRqNCXYTSvhdT_PQnxcAqN7n_buJ34iQjf7DSg,248
|
|
554
514
|
rasa/core/channels/voice_stream/tts/azure.py,sha256=RIS8wBpnX8yWM17UxUo5ko4QrxExAn16TvjX-Gn_gkc,4673
|
|
555
515
|
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=cH2eHicZ_NCWtDH-cn9Chq8SSm-1agJRy-ieDJCVlD4,5407
|
|
556
516
|
rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFSkuTIqLvho--Yt0litb4,850
|
|
557
517
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
|
|
558
|
-
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=
|
|
518
|
+
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=Xe2coQT0b1v7eC0FRsEalPYkE6cOJZAOP2ot4BOb10U,9606
|
|
559
519
|
rasa/core/channels/voice_stream/util.py,sha256=nbr0yUl0NIn4-94VUYjPEg_NB2kadcFCq-i9rRJMv4U,2323
|
|
560
|
-
rasa/core/channels/voice_stream/voice_channel.py,sha256=
|
|
520
|
+
rasa/core/channels/voice_stream/voice_channel.py,sha256=f9C_jm_VA7NOBg0KidpMeyAWilXQ0jVNwct11Y77qRc,26287
|
|
561
521
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
562
|
-
rasa/core/concurrent_lock_store.py,sha256=
|
|
563
|
-
rasa/core/constants.py,sha256=
|
|
522
|
+
rasa/core/concurrent_lock_store.py,sha256=XAIrKuhN7hHVWMyNF8znzmWW6WsL249AQjm3V_5HFx4,10663
|
|
523
|
+
rasa/core/constants.py,sha256=L5pDxLVpv8zQf7gnCAi_vEpN_HGJtI7Ai03gkDUEtDo,4375
|
|
564
524
|
rasa/core/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
565
525
|
rasa/core/evaluation/marker.py,sha256=qjCsjif5d8TYy74g__NL8YyEFL8MYOaI-PgfZ2jOyiY,9155
|
|
566
526
|
rasa/core/evaluation/marker_base.py,sha256=agObXfag9aC6py1nD30rsUU6LpPb0_K33qv0hc-_hKs,38124
|
|
@@ -573,6 +533,9 @@ rasa/core/featurizers/precomputation.py,sha256=aO1AaSX2J9olQnfDGM4TlwHGJqFimbaYj
|
|
|
573
533
|
rasa/core/featurizers/single_state_featurizer.py,sha256=K3O-dPmSjXwxgmOjXIvp7W4UniZHNWrBKOftfbRJ3rs,16088
|
|
574
534
|
rasa/core/featurizers/tracker_featurizers.py,sha256=_4kvkAH95-V1TKhhSuxFLSd_O43gW0U3IcqN79NDFCo,46756
|
|
575
535
|
rasa/core/http_interpreter.py,sha256=7TUY12EVO3Q8G2zs2b4W_Cn2K22GtIlODs1H_bF-IDM,2909
|
|
536
|
+
rasa/core/iam_credentials_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
537
|
+
rasa/core/iam_credentials_providers/aws_iam_credentials_providers.py,sha256=aMC4e8XJP7ewW4eNwWBcc9_fQMlmg32FFVFih7p5s3A,8914
|
|
538
|
+
rasa/core/iam_credentials_providers/credentials_provider_protocol.py,sha256=q1P1Lp2dB2V1nwDN3sFUgGdK4Sz5_31A4SvBDqjdfbs,2595
|
|
576
539
|
rasa/core/information_retrieval/__init__.py,sha256=Xo9VzUBriFGo4m2Ba-1f7D6sIz_WcXAOJr9WU2iYJRc,218
|
|
577
540
|
rasa/core/information_retrieval/faiss.py,sha256=xc1cbt4Bn2aR4cGWkzPZ2dScw-ORXTwHPB_iCvifNac,4579
|
|
578
541
|
rasa/core/information_retrieval/information_retrieval.py,sha256=Re17_o7jQfaQWR_3jJs42J_EaH0SXgMnAp5rlQSe7Ww,4251
|
|
@@ -582,12 +545,12 @@ rasa/core/information_retrieval/milvus.py,sha256=x-WDVANwj9gJ1ZqpkdTWAK0a2K-_bIy
|
|
|
582
545
|
rasa/core/information_retrieval/qdrant.py,sha256=KHtU6txMs5ZrAECVjgTa2d5mb37-gHxpy8uRHSIMMAg,3441
|
|
583
546
|
rasa/core/jobs.py,sha256=Hfldyj_uOHBknmIU1bp6jl_uIf9ljaiZt8BhmaEFpps,2083
|
|
584
547
|
rasa/core/lock.py,sha256=KNrpWv_KYLFjQfwaDembrjO2i4HhoVHbllw6_BPYMrE,4718
|
|
585
|
-
rasa/core/lock_store.py,sha256=
|
|
548
|
+
rasa/core/lock_store.py,sha256=nNj0lEQflenzxruWZU4nIHh-cL3KMpefVNNALFZzB50,17036
|
|
586
549
|
rasa/core/migrate.py,sha256=h1dOpXxmVmZlbLVGy1yOU_Obp2KzRiOiL0iuEacA0Cg,14618
|
|
587
550
|
rasa/core/nlg/__init__.py,sha256=jZuQAhOUcxO-KqqHGqICHSY3oDeXlUiGr2trQDYfG6o,240
|
|
588
551
|
rasa/core/nlg/callback.py,sha256=lxBBZdjXHS54fn_pH_YUW8ApbFOBO-kYSY5bL4gR1p0,5218
|
|
589
552
|
rasa/core/nlg/contextual_response_rephraser.py,sha256=o0ks-xhyUeeJOTzG-cVelhm2vU9P6kA8Sk_lyiEinc4,15342
|
|
590
|
-
rasa/core/nlg/generator.py,sha256=
|
|
553
|
+
rasa/core/nlg/generator.py,sha256=WS-ycxWbpmfZdB56C3BzNuGo4sSewXC5DDZbmHWKBeU,11627
|
|
591
554
|
rasa/core/nlg/interpolator.py,sha256=vI2ZyeKHkHESPScCbefrcRrY6mrClI0LNwvZ1GvS5Tk,5138
|
|
592
555
|
rasa/core/nlg/response.py,sha256=SecKyoBQjEnZr4t-Gg5fkUpkozwGT2lzswIKgD63Dac,7248
|
|
593
556
|
rasa/core/nlg/summarize.py,sha256=ZlWj7DyJSTF0SRBv73kMWS8wkPmsZgX8woZiJFkgP-c,3195
|
|
@@ -603,7 +566,7 @@ rasa/core/policies/enterprise_search_prompt_with_relevancy_check_and_citation_te
|
|
|
603
566
|
rasa/core/policies/flow_policy.py,sha256=Rvx5MIGDHi9sVxGazf-dXs6F-hFHSi3UoVjjSP8ATik,7470
|
|
604
567
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
605
568
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
606
|
-
rasa/core/policies/flows/flow_executor.py,sha256=
|
|
569
|
+
rasa/core/policies/flows/flow_executor.py,sha256=5Gipc_7zKSlF2h3L4315jKhfjwd8Xhg90Ep86zjfSNg,28890
|
|
607
570
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
608
571
|
rasa/core/policies/intentless_policy.py,sha256=1A7FSkI4PQdN3t1p3GQhSImmO-m6UVCUzzEsjxz4nKc,38040
|
|
609
572
|
rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
|
|
@@ -612,7 +575,8 @@ rasa/core/policies/policy.py,sha256=5SUnPajSTSf8PzB1-jFbQPtsvR-zLN-xkjeotWOxuJc,
|
|
|
612
575
|
rasa/core/policies/rule_policy.py,sha256=EItfUn07JIBLRIbriPKDprsvWq_-xzZTGrlTS2erByA,50730
|
|
613
576
|
rasa/core/policies/ted_policy.py,sha256=0RzIuyrtt4PxLcqQ-bfaExkZvU-TnsMbgmDcwh2SakY,87710
|
|
614
577
|
rasa/core/policies/unexpected_intent_policy.py,sha256=ZXvbswf2NDy00kHmBQcyXa1OVYFyc79HQKrFkQ4gCfM,39609
|
|
615
|
-
rasa/core/processor.py,sha256=
|
|
578
|
+
rasa/core/processor.py,sha256=VBkHpRGQgCQoue3G6_iAB5ponGT77wBfSdtLLksWMho,63490
|
|
579
|
+
rasa/core/redis_connection_factory.py,sha256=UDq040FS3NsQIUGhaYaa3jZASktwGmSB9TX3pDmtWZA,16696
|
|
616
580
|
rasa/core/run.py,sha256=zwRHM0iXguU1HR___SnOUIwTsCVvSj3FEeiijEiO4Hw,12546
|
|
617
581
|
rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
618
582
|
rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
|
|
@@ -625,8 +589,8 @@ rasa/core/tracker_stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
625
589
|
rasa/core/tracker_stores/auth_retry_tracker_store.py,sha256=eOwsLuQZhWu5Q4RZHJYffL3FhpKOglzJ0MNGffv2E60,7270
|
|
626
590
|
rasa/core/tracker_stores/dynamo_tracker_store.py,sha256=T4F1q3o9Fw2XVOOAmtz3tgM2FTKI4aaQfCZXmdjYjGE,9426
|
|
627
591
|
rasa/core/tracker_stores/mongo_tracker_store.py,sha256=v2ktPXxp7PWfoHPqOJKLkMzML_5E_Of0Ihna2Vcqfbg,7644
|
|
628
|
-
rasa/core/tracker_stores/redis_tracker_store.py,sha256=
|
|
629
|
-
rasa/core/tracker_stores/sql_tracker_store.py,sha256=
|
|
592
|
+
rasa/core/tracker_stores/redis_tracker_store.py,sha256=JY-O4WuxoQVYpB57M07xOUd8TWN9AJpAW2z9bdjI_zk,9633
|
|
593
|
+
rasa/core/tracker_stores/sql_tracker_store.py,sha256=vzLKyJmTkccwD9RmmGVvJFgsorGslEdyx2Xbpzdetds,22983
|
|
630
594
|
rasa/core/tracker_stores/tracker_store.py,sha256=bJMsxzuhw90vGY2uGbbCogikoy4HucPy6SvYfcyFQJw,29472
|
|
631
595
|
rasa/core/train.py,sha256=ESBhZ9vZySziZIG8fvshHO4AYApD0hywRFCmA9h1wFI,3521
|
|
632
596
|
rasa/core/training/__init__.py,sha256=23DaZynwsxIaGYvZBSwQRxanaMWa-ihfON7f-NetK_g,3213
|
|
@@ -773,9 +737,9 @@ rasa/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
773
737
|
rasa/engine/caching.py,sha256=K69amXY6cvKd0Sc5SLe02ujSb3WtQHYsWhcGAwwKyxA,16449
|
|
774
738
|
rasa/engine/constants.py,sha256=hfd8nTw2ViNjiM3LNpXjB6Gb7VW9_h5fwKaoaEeYgZY,637
|
|
775
739
|
rasa/engine/exceptions.py,sha256=1aV48nLrlAGzEeIDuXeB0qjxe5qaqzOhrK52OBs66xc,437
|
|
776
|
-
rasa/engine/graph.py,sha256=
|
|
740
|
+
rasa/engine/graph.py,sha256=cJRtj_b5pF80OYp5bQ4V8AhxFMM6rBWfhm9F7lShR0g,24540
|
|
777
741
|
rasa/engine/language.py,sha256=iDb5gh5ZNhVw4jl-ncDDXzuK3RMjxKktepUv_nMll_c,6535
|
|
778
|
-
rasa/engine/loader.py,sha256=
|
|
742
|
+
rasa/engine/loader.py,sha256=I0TjYokNJgSSkx-zRB8pCBnVVGVIdpnN2h5bYVlVD84,2233
|
|
779
743
|
rasa/engine/recipes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
780
744
|
rasa/engine/recipes/config_files/default_config.yml,sha256=E1sAW6Qq_T0QXBDK8NzkhkmSESX9g8Op85h5aCVbYlA,1194
|
|
781
745
|
rasa/engine/recipes/default_components.py,sha256=pFPA5ljoqQcy7s8mhQDEFFKY-2nqEiGfmr5Db06hVjU,3948
|
|
@@ -786,7 +750,7 @@ rasa/engine/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
786
750
|
rasa/engine/runner/dask.py,sha256=ocmpRpDpRPMaisZcBFDeUPbWGl6oWiU9UXyWimE9074,9476
|
|
787
751
|
rasa/engine/runner/interface.py,sha256=zkaKe5vjiYrR7Efepr7LVZRJEGNDM959rkdR62vEgTM,1679
|
|
788
752
|
rasa/engine/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
789
|
-
rasa/engine/storage/local_model_storage.py,sha256=
|
|
753
|
+
rasa/engine/storage/local_model_storage.py,sha256=kVkINXxwJVcRQmOCyD8K7N01ATZtOqKrFpA7kb6z7oI,12473
|
|
790
754
|
rasa/engine/storage/resource.py,sha256=sUCBNSIrjEr68wCj7D48hzmIih7ezmT88esMhyykA88,3932
|
|
791
755
|
rasa/engine/storage/storage.py,sha256=mNLptsu9cOXWu8k55CnjZMByv6eqh2rEOqXC9__k8aE,6930
|
|
792
756
|
rasa/engine/training/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -839,11 +803,11 @@ rasa/model_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
839
803
|
rasa/model_manager/config.py,sha256=8upZP4CokMBy0imiiPvINJuLW4JOQ326dPiJ041jJUI,1231
|
|
840
804
|
rasa/model_manager/model_api.py,sha256=mfEWhbGaY0-ppajEB8NQJe0ColyEN1DiQKdE18mvwCg,23893
|
|
841
805
|
rasa/model_manager/runner_service.py,sha256=FyxYdd4m-8t4s0Iy1abSOcdZ29K0O_HZnbXPZ6D_4bw,9535
|
|
842
|
-
rasa/model_manager/socket_bridge.py,sha256=
|
|
806
|
+
rasa/model_manager/socket_bridge.py,sha256=p0xJXqcIAekMztVv88umUYs5nkUTTan-4nUyVxTYUOQ,5665
|
|
843
807
|
rasa/model_manager/studio_jwt_auth.py,sha256=uls2QiHUlUrR3fOzZssW4UaAMJMfnPMZeV1aDmZIT0E,2645
|
|
844
808
|
rasa/model_manager/trainer_service.py,sha256=-PgNgLDkzyPynUN73C8qGQaMfHJV1JNmm5gepyVnXak,10779
|
|
845
809
|
rasa/model_manager/utils.py,sha256=0tYmzBcta_9h4cpbHtrH1hUqd-qzjl0xmveStTBPmGo,1695
|
|
846
|
-
rasa/model_manager/warm_rasa_process.py,sha256=
|
|
810
|
+
rasa/model_manager/warm_rasa_process.py,sha256=BeKOEhKAuEkBIDICgNkF2vycgSwE9sL3uN-CGvYb1SA,6089
|
|
847
811
|
rasa/model_service.py,sha256=XXCaiLj2xq58n05W3R1jmTIv-V8f_7PG30kVpRxf71Y,3727
|
|
848
812
|
rasa/model_testing.py,sha256=eZw7l8Zz3HkH_ZPBurY93HzzudHdoQn8HBnDdZSysAY,14929
|
|
849
813
|
rasa/model_training.py,sha256=10cw_CIN3q05gmTHqUdLgsfSlmyWPL0dSkrkflYbOmA,22071
|
|
@@ -918,13 +882,13 @@ rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
918
882
|
rasa/shared/constants.py,sha256=pYMlsFE9kao5BUOXd-8cHWLV9jMfUop7Mfm57mBPcxc,12856
|
|
919
883
|
rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
920
884
|
rasa/shared/core/command_payload_reader.py,sha256=aWmEe6NyGdGZ8qaCPxGZu1frLROv04SFbwPpZNrtj7Q,3741
|
|
921
|
-
rasa/shared/core/constants.py,sha256
|
|
885
|
+
rasa/shared/core/constants.py,sha256=-8E_AerU7pTmjv1WT3TM0ZaNBfw97lD6P0o4f8cySF0,6461
|
|
922
886
|
rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1hG5c,1384
|
|
923
887
|
rasa/shared/core/domain.py,sha256=_0rYtm9m_NJGadFOoq2SsJvSGZj4F_owXxdQTXXIyI0,88498
|
|
924
|
-
rasa/shared/core/events.py,sha256=
|
|
888
|
+
rasa/shared/core/events.py,sha256=oUzY0kblw6kk7yt3P2yhwq8-Z5fTuF06dVpBbhGct-4,90053
|
|
925
889
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
926
890
|
rasa/shared/core/flows/constants.py,sha256=uno5qtsWl8lxELsDe04_5tJH1tBgj6uRRr_g83s10xA,404
|
|
927
|
-
rasa/shared/core/flows/flow.py,sha256=
|
|
891
|
+
rasa/shared/core/flows/flow.py,sha256=v4EZT5li6eVoRkZJucLbST5cMz6cDYcHn0jXTyVgBls,29473
|
|
928
892
|
rasa/shared/core/flows/flow_path.py,sha256=xstwahZBU5cfMY46mREA4NoOGlKLBRAqeP_mJ3UZqOI,2283
|
|
929
893
|
rasa/shared/core/flows/flow_step.py,sha256=SuNz6AywDT2gLjbMm4wMJuk3HrlB_uS_46llTFwZgzg,5200
|
|
930
894
|
rasa/shared/core/flows/flow_step_links.py,sha256=UNlE8xuhi-8R3CL2HPLEp0sAaKP_Obhv5yHSRNsiP8Q,11054
|
|
@@ -994,7 +958,7 @@ rasa/shared/nlu/training_data/message.py,sha256=loW3kA1vWvDmxU8GNeXeDjzSh4J72kae
|
|
|
994
958
|
rasa/shared/nlu/training_data/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
995
959
|
rasa/shared/nlu/training_data/schemas/data_schema.py,sha256=Bs6EhcnQHZv0m4oZJzPzeUAw-PqLcmzkgVR5gJGFMSg,2565
|
|
996
960
|
rasa/shared/nlu/training_data/schemas/nlu.yml,sha256=g7TZg3JsSfgO8MlrpcszKd2RDy7-ubKJzjvZnFqUWVs,1179
|
|
997
|
-
rasa/shared/nlu/training_data/schemas/responses.yml,sha256=
|
|
961
|
+
rasa/shared/nlu/training_data/schemas/responses.yml,sha256=RUtHls30GNE21-ydOb2gLQ6YMzUQMKLCXNYZryXkV8s,2015
|
|
998
962
|
rasa/shared/nlu/training_data/synonyms_parser.py,sha256=H3VqR7eB4fcFj8XMuKfWF3X-2VZqLkVm5SwTRpjbsdE,1476
|
|
999
963
|
rasa/shared/nlu/training_data/training_data.py,sha256=j0LhSxqq-vOveZAF-DZtaQ-szCNRs0r7bAyM3SDbMvk,28510
|
|
1000
964
|
rasa/shared/nlu/training_data/util.py,sha256=SCd97o6dDhbodasRK3JuaiAA1Xcy0faEMTjcry72GoQ,7050
|
|
@@ -1099,6 +1063,7 @@ rasa/utils/mapper.py,sha256=CZiD3fu7-W-OJgoB1R8JaOg-Hq13TK20D-zGVNgbF18,7726
|
|
|
1099
1063
|
rasa/utils/ml_utils.py,sha256=y4Czr9GdRBj-a2npXU8ED2qC9bzw5olRyqQEmu5BB8k,4185
|
|
1100
1064
|
rasa/utils/openapi.py,sha256=59bYTclJHieWp1evIikwWvFioDg6albxHaSGYVufPec,5646
|
|
1101
1065
|
rasa/utils/plotting.py,sha256=QT30kYXQxqAL8ZECjwOOvawuWALJ_rcO3rBZY5PWF-s,12272
|
|
1066
|
+
rasa/utils/pypred.py,sha256=nJXn3BySjUZq9U3JWjYPgNvGL-GbBPAqdSglavb18PM,1079
|
|
1102
1067
|
rasa/utils/sanic_error_handler.py,sha256=nDL1hyBe8DRdXyXPJFCfWOn3GzTm--UypF7OT2KCra8,1152
|
|
1103
1068
|
rasa/utils/singleton.py,sha256=w1-sZeBPwe84bod-CuAf8IX8sMJ36pu2UYHHm0eF3wI,565
|
|
1104
1069
|
rasa/utils/tensorflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1121,10 +1086,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
|
|
|
1121
1086
|
rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,21259
|
|
1122
1087
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
1123
1088
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
1124
|
-
rasa/validator.py,sha256=
|
|
1125
|
-
rasa/version.py,sha256=
|
|
1126
|
-
rasa_pro-3.14.0.
|
|
1127
|
-
rasa_pro-3.14.0.
|
|
1128
|
-
rasa_pro-3.14.0.
|
|
1129
|
-
rasa_pro-3.14.0.
|
|
1130
|
-
rasa_pro-3.14.0.
|
|
1089
|
+
rasa/validator.py,sha256=8g_SeElAD603_2qIn-a_MyeTWN86L0wVgptf80DERig,83456
|
|
1090
|
+
rasa/version.py,sha256=DjVGsfwczcrWiHUWCeyGXoKDmU3xfvc9sTASY7gZhzI,129
|
|
1091
|
+
rasa_pro-3.14.0.dev20250922.dist-info/METADATA,sha256=e5OXwcDrAXDJAJTOgWkyIXocqhfUKlJQmfTV4O6ibyA,10343
|
|
1092
|
+
rasa_pro-3.14.0.dev20250922.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
1093
|
+
rasa_pro-3.14.0.dev20250922.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
1094
|
+
rasa_pro-3.14.0.dev20250922.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
1095
|
+
rasa_pro-3.14.0.dev20250922.dist-info/RECORD,,
|