rasa-pro 3.12.0.dev13__py3-none-any.whl → 3.12.0rc1__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/anonymization/anonymization_rule_executor.py +16 -10
- rasa/cli/data.py +16 -0
- rasa/cli/project_templates/calm/config.yml +2 -2
- rasa/cli/project_templates/calm/endpoints.yml +2 -2
- rasa/cli/utils.py +12 -0
- rasa/core/actions/action.py +84 -191
- rasa/core/actions/action_run_slot_rejections.py +16 -4
- rasa/core/channels/__init__.py +2 -0
- rasa/core/channels/studio_chat.py +19 -0
- rasa/core/channels/telegram.py +42 -24
- rasa/core/channels/voice_ready/utils.py +1 -1
- rasa/core/channels/voice_stream/asr/asr_engine.py +10 -4
- rasa/core/channels/voice_stream/asr/azure.py +14 -1
- rasa/core/channels/voice_stream/asr/deepgram.py +20 -4
- rasa/core/channels/voice_stream/audiocodes.py +264 -0
- rasa/core/channels/voice_stream/browser_audio.py +4 -1
- rasa/core/channels/voice_stream/call_state.py +3 -0
- rasa/core/channels/voice_stream/genesys.py +6 -2
- rasa/core/channels/voice_stream/tts/azure.py +9 -1
- rasa/core/channels/voice_stream/tts/cartesia.py +14 -8
- rasa/core/channels/voice_stream/voice_channel.py +23 -2
- rasa/core/constants.py +2 -0
- rasa/core/nlg/contextual_response_rephraser.py +18 -1
- rasa/core/nlg/generator.py +83 -15
- rasa/core/nlg/response.py +6 -3
- rasa/core/nlg/translate.py +55 -0
- rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2 +1 -1
- rasa/core/policies/flows/flow_executor.py +12 -5
- rasa/core/processor.py +72 -9
- rasa/dialogue_understanding/commands/can_not_handle_command.py +20 -2
- rasa/dialogue_understanding/commands/cancel_flow_command.py +24 -6
- rasa/dialogue_understanding/commands/change_flow_command.py +20 -2
- rasa/dialogue_understanding/commands/chit_chat_answer_command.py +20 -2
- rasa/dialogue_understanding/commands/clarify_command.py +29 -3
- rasa/dialogue_understanding/commands/command.py +1 -16
- rasa/dialogue_understanding/commands/command_syntax_manager.py +55 -0
- rasa/dialogue_understanding/commands/human_handoff_command.py +20 -2
- rasa/dialogue_understanding/commands/knowledge_answer_command.py +20 -2
- rasa/dialogue_understanding/commands/prompt_command.py +94 -0
- rasa/dialogue_understanding/commands/repeat_bot_messages_command.py +20 -2
- rasa/dialogue_understanding/commands/set_slot_command.py +24 -2
- rasa/dialogue_understanding/commands/skip_question_command.py +20 -2
- rasa/dialogue_understanding/commands/start_flow_command.py +20 -2
- rasa/dialogue_understanding/commands/utils.py +98 -4
- rasa/dialogue_understanding/generator/__init__.py +2 -0
- rasa/dialogue_understanding/generator/command_parser.py +15 -12
- rasa/dialogue_understanding/generator/constants.py +3 -0
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +12 -5
- rasa/dialogue_understanding/generator/llm_command_generator.py +5 -3
- rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +16 -2
- rasa/dialogue_understanding/generator/prompt_templates/__init__.py +0 -0
- rasa/dialogue_understanding/generator/{single_step → prompt_templates}/command_prompt_template.jinja2 +2 -0
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2 +77 -0
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_default.jinja2 +68 -0
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2 +84 -0
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +460 -0
- rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +12 -310
- rasa/dialogue_understanding/patterns/collect_information.py +1 -1
- rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +16 -0
- rasa/dialogue_understanding/patterns/validate_slot.py +65 -0
- rasa/dialogue_understanding/processor/command_processor.py +39 -0
- rasa/dialogue_understanding_test/du_test_case.py +28 -8
- rasa/dialogue_understanding_test/du_test_result.py +13 -9
- rasa/dialogue_understanding_test/io.py +14 -0
- rasa/e2e_test/utils/io.py +0 -37
- rasa/engine/graph.py +1 -0
- rasa/engine/language.py +140 -0
- rasa/engine/recipes/config_files/default_config.yml +4 -0
- rasa/engine/recipes/default_recipe.py +2 -0
- rasa/engine/recipes/graph_recipe.py +2 -0
- rasa/engine/storage/local_model_storage.py +1 -0
- rasa/engine/storage/storage.py +4 -1
- rasa/model_manager/runner_service.py +7 -4
- rasa/model_manager/socket_bridge.py +7 -6
- rasa/shared/constants.py +15 -13
- rasa/shared/core/constants.py +2 -0
- rasa/shared/core/flows/constants.py +11 -0
- rasa/shared/core/flows/flow.py +83 -19
- rasa/shared/core/flows/flows_yaml_schema.json +31 -3
- rasa/shared/core/flows/steps/collect.py +1 -36
- rasa/shared/core/flows/utils.py +28 -4
- rasa/shared/core/flows/validation.py +1 -1
- rasa/shared/core/slot_mappings.py +208 -5
- rasa/shared/core/slots.py +131 -1
- rasa/shared/core/trackers.py +74 -1
- rasa/shared/importers/importer.py +50 -2
- rasa/shared/nlu/training_data/schemas/responses.yml +19 -12
- rasa/shared/providers/_configs/azure_entra_id_config.py +541 -0
- rasa/shared/providers/_configs/azure_openai_client_config.py +138 -3
- rasa/shared/providers/_configs/client_config.py +3 -1
- rasa/shared/providers/_configs/default_litellm_client_config.py +3 -1
- rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py +3 -1
- rasa/shared/providers/_configs/litellm_router_client_config.py +3 -1
- rasa/shared/providers/_configs/model_group_config.py +4 -2
- rasa/shared/providers/_configs/oauth_config.py +33 -0
- rasa/shared/providers/_configs/openai_client_config.py +3 -1
- rasa/shared/providers/_configs/rasa_llm_client_config.py +3 -1
- rasa/shared/providers/_configs/self_hosted_llm_client_config.py +3 -1
- rasa/shared/providers/constants.py +6 -0
- rasa/shared/providers/embedding/azure_openai_embedding_client.py +28 -3
- rasa/shared/providers/embedding/litellm_router_embedding_client.py +3 -1
- rasa/shared/providers/llm/_base_litellm_client.py +42 -17
- rasa/shared/providers/llm/azure_openai_llm_client.py +81 -25
- rasa/shared/providers/llm/default_litellm_llm_client.py +3 -1
- rasa/shared/providers/llm/litellm_router_llm_client.py +29 -8
- rasa/shared/providers/llm/llm_client.py +23 -7
- rasa/shared/providers/llm/openai_llm_client.py +9 -3
- rasa/shared/providers/llm/rasa_llm_client.py +11 -2
- rasa/shared/providers/llm/self_hosted_llm_client.py +30 -11
- rasa/shared/providers/router/_base_litellm_router_client.py +3 -1
- rasa/shared/providers/router/router_client.py +3 -1
- rasa/shared/utils/constants.py +3 -0
- rasa/shared/utils/llm.py +30 -7
- rasa/shared/utils/pykwalify_extensions.py +24 -0
- rasa/shared/utils/schemas/domain.yml +26 -0
- rasa/telemetry.py +2 -1
- rasa/tracing/config.py +2 -0
- rasa/tracing/constants.py +12 -0
- rasa/tracing/instrumentation/instrumentation.py +36 -0
- rasa/tracing/instrumentation/metrics.py +41 -0
- rasa/tracing/metric_instrument_provider.py +40 -0
- rasa/validator.py +372 -7
- rasa/version.py +1 -1
- {rasa_pro-3.12.0.dev13.dist-info → rasa_pro-3.12.0rc1.dist-info}/METADATA +2 -1
- {rasa_pro-3.12.0.dev13.dist-info → rasa_pro-3.12.0rc1.dist-info}/RECORD +128 -113
- {rasa_pro-3.12.0.dev13.dist-info → rasa_pro-3.12.0rc1.dist-info}/NOTICE +0 -0
- {rasa_pro-3.12.0.dev13.dist-info → rasa_pro-3.12.0rc1.dist-info}/WHEEL +0 -0
- {rasa_pro-3.12.0.dev13.dist-info → rasa_pro-3.12.0rc1.dist-info}/entry_points.txt +0 -0
|
@@ -4,7 +4,7 @@ rasa/__main__.py,sha256=OmUXcaA9l7KR_eSYCwaCSetuczxjrcN2taNnZ2ZUTbA,6472
|
|
|
4
4
|
rasa/anonymization/__init__.py,sha256=Z-ZUW2ofZGfI6ysjYIS7U0JL4JSzDNOkHiiXK488Zik,86
|
|
5
5
|
rasa/anonymization/anonymisation_rule_yaml_reader.py,sha256=8u8ZWfbpJuyUagrfth3IGfQXVlVz31esqExfDdasxZM,3171
|
|
6
6
|
rasa/anonymization/anonymization_pipeline.py,sha256=sItYz87tNmxdzg7KWJxDx6WkwmSulbLDo4wEpmbAnpY,10016
|
|
7
|
-
rasa/anonymization/anonymization_rule_executor.py,sha256=
|
|
7
|
+
rasa/anonymization/anonymization_rule_executor.py,sha256=1O_QAqrChpZ-uBzgipv5MTw9XoE8-Xjfm3eQcYeZyDA,9476
|
|
8
8
|
rasa/anonymization/anonymization_rule_orchestrator.py,sha256=hoKAL36w9Eaa-b2Im2kNAYpXqndZYIwqssva9nEflRQ,4115
|
|
9
9
|
rasa/anonymization/schemas/config.yml,sha256=EP_af8HctyRT2f6Ywv9khpO58ZdP5_LkPItrXQgdNaU,1158
|
|
10
10
|
rasa/anonymization/utils.py,sha256=y9i2tnlyG5ofNrNYGSCWl17wBYvEmTgw2zgoQ--p-vA,3623
|
|
@@ -22,7 +22,7 @@ rasa/cli/arguments/test.py,sha256=A8kbTJkm8k0_tf_R4qIqw5M9WD-fBmLf0wmAFXpRWGA,68
|
|
|
22
22
|
rasa/cli/arguments/train.py,sha256=bnBIvSMxeY8qOswCdp6-MfXwCf5OIzDmNjDjW84yzYQ,8883
|
|
23
23
|
rasa/cli/arguments/visualize.py,sha256=e8yhvc6Jfy1JKSOIVFV5mY5QPowkf0o1kt6IGujVxcY,861
|
|
24
24
|
rasa/cli/arguments/x.py,sha256=_23reqNwiit2VoCqmv23kQZudA3iZVXaBV_zEXJjV6w,1028
|
|
25
|
-
rasa/cli/data.py,sha256=
|
|
25
|
+
rasa/cli/data.py,sha256=J_L9E0LnNJj6HjiJZkUok0VIhEzjk4Gf5DnXGaTA8nI,13305
|
|
26
26
|
rasa/cli/dialogue_understanding_test.py,sha256=IacPnkRfrO_oBHcIZG7t-FI2aGScZpkR9k70baQO300,13536
|
|
27
27
|
rasa/cli/e2e_test.py,sha256=guHIeX7qPwv8db4j9zsDG7MQbfUq92xO51u0iOR3eqw,8359
|
|
28
28
|
rasa/cli/evaluate.py,sha256=104vTMKNQPhuEUm5n1OMVxH4qywaZx14kE_5ULGNMbg,7946
|
|
@@ -39,7 +39,7 @@ rasa/cli/project_templates/calm/actions/add_contact.py,sha256=bvXsHnHquhEJxSKB0s
|
|
|
39
39
|
rasa/cli/project_templates/calm/actions/db.py,sha256=jBlh6DM4xgR9K1u3lAKSD-S3kGXijnDoOYGgQDAXeAA,1610
|
|
40
40
|
rasa/cli/project_templates/calm/actions/list_contacts.py,sha256=SoKBVN5xeexspdhlf0hI56UQMP-32Siq_8fDhLF84wY,721
|
|
41
41
|
rasa/cli/project_templates/calm/actions/remove_contact.py,sha256=QlV4yn2cRX8d84drIXO9cuEcfdBKbJRwP8Oo6ZWl8jk,1240
|
|
42
|
-
rasa/cli/project_templates/calm/config.yml,sha256=
|
|
42
|
+
rasa/cli/project_templates/calm/config.yml,sha256=72ucVcLCN1pYFrFoNP4RbpaIPKqQ_hkWvaNR61O-kWg,180
|
|
43
43
|
rasa/cli/project_templates/calm/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
44
44
|
rasa/cli/project_templates/calm/data/flows/add_contact.yml,sha256=70uORlZhWUkvdeVlI9xxkh5qRsN7BG7qFTunHSv6MCY,1004
|
|
45
45
|
rasa/cli/project_templates/calm/data/flows/list_contacts.yml,sha256=hwm484n_o1-2gvi6O7tq6Pjlee4-vqX6DM77D1biRjc,360
|
|
@@ -57,7 +57,7 @@ rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_adds_contact_to_their
|
|
|
57
57
|
rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_lists_contacts.yml,sha256=ElneItKq7jTGz_ZijSsth0zOKNtfJXKAVhq747EIv7I,140
|
|
58
58
|
rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact.yml,sha256=ECFzm1e39KV82G2zr2AhdzcUy86sYVcMibd-v1jUSGg,353
|
|
59
59
|
rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact_from_list.yml,sha256=oG4T4rHlSQGamRpoqWGUP3--ZNY9CnXEI3XrWqOqBLQ,418
|
|
60
|
-
rasa/cli/project_templates/calm/endpoints.yml,sha256=
|
|
60
|
+
rasa/cli/project_templates/calm/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
61
61
|
rasa/cli/project_templates/default/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
rasa/cli/project_templates/default/actions/actions.py,sha256=BoiGE6tHbUl4WAEpf1sYTsQRV4_aZiTk4cLFEpk6QVY,755
|
|
63
63
|
rasa/cli/project_templates/default/config.yml,sha256=AcOSLRTw2symvJ0Uiwj71M84iaEkd_Ax2To6KwivysI,1630
|
|
@@ -87,19 +87,19 @@ rasa/cli/studio/upload.py,sha256=1-cqlCI7GMoGD9nmstO2wlqj3nhksSBOFIUJhNsbRB8,170
|
|
|
87
87
|
rasa/cli/telemetry.py,sha256=mNMMbcgnNPZzeF1k-khN-7lAQFnkFx75VBwtnPfPI6k,3538
|
|
88
88
|
rasa/cli/test.py,sha256=JfzBh1_TAOnd346jVikSK94bTlUA-BLSAQ7XBRvL2TQ,8901
|
|
89
89
|
rasa/cli/train.py,sha256=LgllfHflZwN0ybLJoSdhhosh82uEdKi7pLwoYUPvgIg,9153
|
|
90
|
-
rasa/cli/utils.py,sha256=
|
|
90
|
+
rasa/cli/utils.py,sha256=HvYemU2df3r_vKfLeM-N3j2ytZGobHKHWAE_GxhK7RQ,16354
|
|
91
91
|
rasa/cli/visualize.py,sha256=YmRAATAfxHpgE8_PknGyM-oIujwICNzVftTzz6iLNNc,1256
|
|
92
92
|
rasa/cli/x.py,sha256=C7dLtYXAkD-uj7hNj7Pz5YbOupp2yRcMjQbsEVqXUJ8,6825
|
|
93
93
|
rasa/constants.py,sha256=m6If7alC5obaHU-JQWXEBo4mooVwIMzNRTjyTzzZSVg,1306
|
|
94
94
|
rasa/core/__init__.py,sha256=wTSmsFlgK0Ylvuyq20q9APwpT5xyVJYZfzhs4rrkciM,456
|
|
95
95
|
rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
-
rasa/core/actions/action.py,sha256=
|
|
96
|
+
rasa/core/actions/action.py,sha256=Kqup2dXUREQRA7vPk3-VjLZCVubbRR2I998cOSDRNkg,43336
|
|
97
97
|
rasa/core/actions/action_clean_stack.py,sha256=xUP-2ipPsPAnAiwP17c-ezmHPSrV4JSUZr-eSgPQwIs,2279
|
|
98
98
|
rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
|
|
99
99
|
rasa/core/actions/action_handle_digressions.py,sha256=u1woxFGmDbsoRyEB9yFDJonojRUeYosbm1_afzfecWo,4442
|
|
100
100
|
rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
|
|
101
101
|
rasa/core/actions/action_repeat_bot_messages.py,sha256=2DZFHPS7SKslz_Pm3Tyn0154xTws3E7lMYKl2ktQPTQ,3522
|
|
102
|
-
rasa/core/actions/action_run_slot_rejections.py,sha256=
|
|
102
|
+
rasa/core/actions/action_run_slot_rejections.py,sha256=xsb0AHEWLV9AtX7dsCyxaJBbF0t7REC353YWerHIhts,7274
|
|
103
103
|
rasa/core/actions/action_trigger_chitchat.py,sha256=krOPqCXBihxOskqmm05A4mFEm4lj4ohvzuddy7rELVQ,1084
|
|
104
104
|
rasa/core/actions/action_trigger_flow.py,sha256=IydYAGafTtoY6XSgCX124xJQhzudUg8JAICstqsV3VA,3487
|
|
105
105
|
rasa/core/actions/action_trigger_search.py,sha256=QfYqnaGRCqRYJ4msYsLAbnVYW5ija_tqhCcKIN8aEfw,1064
|
|
@@ -120,7 +120,7 @@ rasa/core/brokers/file.py,sha256=ggMc2LU6SrYXyPB89tJ1S44kfTe2EApSZgq5EZ5KaB8,180
|
|
|
120
120
|
rasa/core/brokers/kafka.py,sha256=dA1KlRwoahAzmSNKUxiZVXSRjTnKow1SxBYr8fsXYkk,12216
|
|
121
121
|
rasa/core/brokers/pika.py,sha256=5dPbqhCkBqD345m70UGvD-adFgCwzSC0VM6OaXfAHS4,14378
|
|
122
122
|
rasa/core/brokers/sql.py,sha256=3xPDa3QaQg83VDJ-kAvGLelLnaFcWLHxFc0DueXKsSE,2729
|
|
123
|
-
rasa/core/channels/__init__.py,sha256=
|
|
123
|
+
rasa/core/channels/__init__.py,sha256=PTm7AEXDMNff7KdEdFZffMxVUo8StdW1yw4Kdh5OTdI,2490
|
|
124
124
|
rasa/core/channels/botframework.py,sha256=qEuh19OJYPBcX4PN1hhPwMznKbi0_zj4hotV5En70Vk,11668
|
|
125
125
|
rasa/core/channels/callback.py,sha256=Llt5TGimf_5P29s2KxEPOZUX6_df7u8uBCsNSFy7CQA,2750
|
|
126
126
|
rasa/core/channels/channel.py,sha256=Ih2s0Jf_dQluzeFvOgrXVx9RK4YBkcbNOfIeYkAnexI,15107
|
|
@@ -263,8 +263,8 @@ rasa/core/channels/rest.py,sha256=ShKGmooXphhcDnHyV8TiQhDhj2r7hxTKNQ57FwFfyUA,72
|
|
|
263
263
|
rasa/core/channels/rocketchat.py,sha256=hajaH6549CjEYFM5jSapw1DQKBPKTXbn7cVSuZzknmI,5999
|
|
264
264
|
rasa/core/channels/slack.py,sha256=jVsTTUu9wUjukPoIsAhbee9o0QFUMCNlQHbR8LTcMBc,24406
|
|
265
265
|
rasa/core/channels/socketio.py,sha256=Q7Gts30Ulwj90pQQxaUk4NykzagXErXgbHYwOjTmDig,10842
|
|
266
|
-
rasa/core/channels/studio_chat.py,sha256=
|
|
267
|
-
rasa/core/channels/telegram.py,sha256
|
|
266
|
+
rasa/core/channels/studio_chat.py,sha256=eaH30ARpdqgIHeTQ1YNy31bx7NLOaFdTBGNEKOLhlPg,7532
|
|
267
|
+
rasa/core/channels/telegram.py,sha256=TKVknsk3U9tYeY1a8bzlhqkltWmZfGSOvrcmwa9qozc,12499
|
|
268
268
|
rasa/core/channels/twilio.py,sha256=2BTQpyx0b0yPpc0A2BHYfxLPgodrLGLs8nq6i3lVGAM,5906
|
|
269
269
|
rasa/core/channels/vier_cvg.py,sha256=GkrWKu7NRMFtLMyYp-kQ2taWAc_keAwhYrkVPW56iaU,13544
|
|
270
270
|
rasa/core/channels/voice_ready/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -272,28 +272,29 @@ rasa/core/channels/voice_ready/audiocodes.py,sha256=KoqPAFJkdZJm8rAXCENNSHf_xT_Q
|
|
|
272
272
|
rasa/core/channels/voice_ready/jambonz.py,sha256=r7O8k_X934lQe0fzY7R0z_hMeX5qMN663bTugQ1-8eQ,4154
|
|
273
273
|
rasa/core/channels/voice_ready/jambonz_protocol.py,sha256=idWArI4SRr4fjyZx3VIUoua_cbLwpvw4e5VeHyQjE8E,12975
|
|
274
274
|
rasa/core/channels/voice_ready/twilio_voice.py,sha256=5N5dQ2l_u8CC9J16USgufl6MB1bJziCky7VT58MPt68,14520
|
|
275
|
-
rasa/core/channels/voice_ready/utils.py,sha256=
|
|
275
|
+
rasa/core/channels/voice_ready/utils.py,sha256=Tmq0OOAN2sAvxPP64x298zX1TZYTdszK3iazfGZ5RsI,987
|
|
276
276
|
rasa/core/channels/voice_stream/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
277
|
rasa/core/channels/voice_stream/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
|
-
rasa/core/channels/voice_stream/asr/asr_engine.py,sha256=
|
|
278
|
+
rasa/core/channels/voice_stream/asr/asr_engine.py,sha256=DpWEhkCHJPM1WDsBI5R3czqwvFiyaRMlgCubBNXO4U4,3237
|
|
279
279
|
rasa/core/channels/voice_stream/asr/asr_event.py,sha256=QDn8OdeQ-7uBedT6Eqvs8wyR5T4UNHQ32TSMPaRHXwQ,246
|
|
280
|
-
rasa/core/channels/voice_stream/asr/azure.py,sha256=
|
|
281
|
-
rasa/core/channels/voice_stream/asr/deepgram.py,sha256=
|
|
280
|
+
rasa/core/channels/voice_stream/asr/azure.py,sha256=uqg2xAmGfP8N9pts_AT6KxobiuQIqRy1lkyU7vqC564,5845
|
|
281
|
+
rasa/core/channels/voice_stream/asr/deepgram.py,sha256=9cIqRuv9gWzOfEKxeDbhijGoT8EPUV7Oo493WXaHlBo,5682
|
|
282
282
|
rasa/core/channels/voice_stream/audio_bytes.py,sha256=3V0QQplPD-kVfebaaeVcKgV7pwIJyjnTenujVD3y3sY,340
|
|
283
|
-
rasa/core/channels/voice_stream/
|
|
284
|
-
rasa/core/channels/voice_stream/
|
|
285
|
-
rasa/core/channels/voice_stream/
|
|
283
|
+
rasa/core/channels/voice_stream/audiocodes.py,sha256=Qs2JwA_auI474ybnvA7sgCjXjiRvX5ZOuQ2coMt6XW4,9735
|
|
284
|
+
rasa/core/channels/voice_stream/browser_audio.py,sha256=fDwp-yaalik8R92EOJHsgHMuNAg9yoeGWVRGMCH2lJQ,3939
|
|
285
|
+
rasa/core/channels/voice_stream/call_state.py,sha256=KZ-6GeA7l2KcUwf2oR61tA3r5y0qJA90PmMm1SxGJ2c,1114
|
|
286
|
+
rasa/core/channels/voice_stream/genesys.py,sha256=K-0KIc2HOq7rPymD-EOBqa3WQGGX6ncnWyzJjNk5Zqw,12824
|
|
286
287
|
rasa/core/channels/voice_stream/tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
287
|
-
rasa/core/channels/voice_stream/tts/azure.py,sha256=
|
|
288
|
-
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=
|
|
288
|
+
rasa/core/channels/voice_stream/tts/azure.py,sha256=Fj9vLg-8d6aCoDcycDMG0oIPl5gw7Nhb8MXb-wBvLhE,4221
|
|
289
|
+
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=cH2eHicZ_NCWtDH-cn9Chq8SSm-1agJRy-ieDJCVlD4,5407
|
|
289
290
|
rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFSkuTIqLvho--Yt0litb4,850
|
|
290
291
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
|
|
291
292
|
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=MA2cWls1Q3hAdLA5ybgqZ7kkG-P5PVeUjg18q8ZdVfY,6403
|
|
292
293
|
rasa/core/channels/voice_stream/util.py,sha256=d0Tl0tGAnVj3SgGovsUMHx-QL44nrPI29OTYKYleH0U,1987
|
|
293
|
-
rasa/core/channels/voice_stream/voice_channel.py,sha256=
|
|
294
|
+
rasa/core/channels/voice_stream/voice_channel.py,sha256=8ZjmCP_2HBYGfIwTvP-L2gs-91nGKVyRmonii8t5MGg,17304
|
|
294
295
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
295
296
|
rasa/core/concurrent_lock_store.py,sha256=ycd-aeJJWXIokMRimCdQFHdwuMfl512hZSUHE8oSd2c,7722
|
|
296
|
-
rasa/core/constants.py,sha256=
|
|
297
|
+
rasa/core/constants.py,sha256=dEokmEf6XkOFA_xpuwjqwNtlZv-a5Tz5dLMRc7Vu4CU,4070
|
|
297
298
|
rasa/core/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
298
299
|
rasa/core/evaluation/marker.py,sha256=qjCsjif5d8TYy74g__NL8YyEFL8MYOaI-PgfZ2jOyiY,9155
|
|
299
300
|
rasa/core/evaluation/marker_base.py,sha256=agObXfag9aC6py1nD30rsUU6LpPb0_K33qv0hc-_hKs,38124
|
|
@@ -317,21 +318,22 @@ rasa/core/lock_store.py,sha256=weupfBiYMz-B_N-LAONCvp-po1uPRdie9imLYn7hFDU,12504
|
|
|
317
318
|
rasa/core/migrate.py,sha256=h1dOpXxmVmZlbLVGy1yOU_Obp2KzRiOiL0iuEacA0Cg,14618
|
|
318
319
|
rasa/core/nlg/__init__.py,sha256=jZuQAhOUcxO-KqqHGqICHSY3oDeXlUiGr2trQDYfG6o,240
|
|
319
320
|
rasa/core/nlg/callback.py,sha256=0zDQsOa3uV66G3smCVQ9cUdvj-it8tFneIzqShM7NeI,5208
|
|
320
|
-
rasa/core/nlg/contextual_response_rephraser.py,sha256=
|
|
321
|
-
rasa/core/nlg/generator.py,sha256=
|
|
321
|
+
rasa/core/nlg/contextual_response_rephraser.py,sha256=iRXA4Cpjp7NUzy9BUqgp1fqqwawZryjW5uSFWRt8lXU,13530
|
|
322
|
+
rasa/core/nlg/generator.py,sha256=GA3XwpGdWKKcaMdNGqRCiSwvix2RR4IocVxg_dv_1Yg,10895
|
|
322
323
|
rasa/core/nlg/interpolator.py,sha256=hEOhqfMXrAqTZiqjg2t6ZfTK6DJQ5IiX4tJIz2b8Fbw,5190
|
|
323
|
-
rasa/core/nlg/response.py,sha256=
|
|
324
|
+
rasa/core/nlg/response.py,sha256=kfBSFnQni0lDZlGpZEVRjuQvil7G1JMjS4xIdd3AKhs,6045
|
|
324
325
|
rasa/core/nlg/summarize.py,sha256=liXcbJMBm0NaaSH0LwlSs1l0dTby0OEprSzeKeyRyv0,2109
|
|
326
|
+
rasa/core/nlg/translate.py,sha256=PBMTbIgdkhx8rhzqv6h0u5r9jqdfiVIh7u0qb363sJA,1822
|
|
325
327
|
rasa/core/persistor.py,sha256=EP8kaGQQbRJKkxw2GCZkjJk-O2n4PgIHXa9F9a5MjVk,20337
|
|
326
328
|
rasa/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
329
|
rasa/core/policies/ensemble.py,sha256=XoHxU0jcb_io_LBOpjJffylzqtGEB7CH9ivhRyO8pDc,12960
|
|
328
330
|
rasa/core/policies/enterprise_search_policy.py,sha256=mSvJQclSp0o-R5LMd3cpjz-7h78G5hOE7vbjIdzqG08,36475
|
|
329
331
|
rasa/core/policies/enterprise_search_prompt_template.jinja2,sha256=dCS_seyBGxMQoMsOjjvPp0dd31OSzZCJSZeev1FJK5Q,1187
|
|
330
|
-
rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256=
|
|
332
|
+
rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256=va9rpP97dN3PKoJZOVfyuISt3cPBlb10Pqyz25RwO_Q,3294
|
|
331
333
|
rasa/core/policies/flow_policy.py,sha256=597G62hrLF_CAMCvu-TPRldFnjMP2XEIkhcIaPWcQAc,7489
|
|
332
334
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
333
335
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
334
|
-
rasa/core/policies/flows/flow_executor.py,sha256=
|
|
336
|
+
rasa/core/policies/flows/flow_executor.py,sha256=gZ7PJ6GQk19r9VUIRA2XacBgaDk_tWwz2Igq_yuuGzc,26810
|
|
335
337
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
336
338
|
rasa/core/policies/intentless_policy.py,sha256=p9e54sSjTOGAFxLbPdF0jspQNETmtBvg-RXQNPviIbE,37898
|
|
337
339
|
rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
|
|
@@ -340,7 +342,7 @@ rasa/core/policies/policy.py,sha256=5SUnPajSTSf8PzB1-jFbQPtsvR-zLN-xkjeotWOxuJc,
|
|
|
340
342
|
rasa/core/policies/rule_policy.py,sha256=EItfUn07JIBLRIbriPKDprsvWq_-xzZTGrlTS2erByA,50730
|
|
341
343
|
rasa/core/policies/ted_policy.py,sha256=0RzIuyrtt4PxLcqQ-bfaExkZvU-TnsMbgmDcwh2SakY,87710
|
|
342
344
|
rasa/core/policies/unexpected_intent_policy.py,sha256=ZXvbswf2NDy00kHmBQcyXa1OVYFyc79HQKrFkQ4gCfM,39609
|
|
343
|
-
rasa/core/processor.py,sha256=
|
|
345
|
+
rasa/core/processor.py,sha256=x8GaYuDkelCwFpmjjrpkN3xtzaewiAxlVgpZHG3tOU0,59265
|
|
344
346
|
rasa/core/run.py,sha256=5qq1Z-GiIrFejsthOnnkhQtNiqccuYHYf8ixP49PSHk,11484
|
|
345
347
|
rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
348
|
rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
|
|
@@ -366,46 +368,53 @@ rasa/dialogue_understanding/coexistence/intent_based_router.py,sha256=JlYBZdScnh
|
|
|
366
368
|
rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=UTLMZpynSRt8qnQSSV-dTgFQbBHaMEgrLIUWCMyH1BE,11354
|
|
367
369
|
rasa/dialogue_understanding/coexistence/router_template.jinja2,sha256=CHWFreN0sv1EbPh-hf5AlCt3zxy2_llX1Pdn9Q11Y18,357
|
|
368
370
|
rasa/dialogue_understanding/commands/__init__.py,sha256=F-pLETYRUjhIkjjDfXGUuPsK_ac1HcLmJkrUUP0RhME,2259
|
|
369
|
-
rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=
|
|
370
|
-
rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=
|
|
371
|
-
rasa/dialogue_understanding/commands/change_flow_command.py,sha256=
|
|
372
|
-
rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=
|
|
373
|
-
rasa/dialogue_understanding/commands/clarify_command.py,sha256=
|
|
374
|
-
rasa/dialogue_understanding/commands/command.py,sha256=
|
|
371
|
+
rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=k3N2qT9pdptJb6oAxtQV1YvKt_ujLbidLD0CeC8P43A,3506
|
|
372
|
+
rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=2UoNPgJ3WsX2btDcWq5FL7qBp0DvNQACGaMZV3qYk4Y,7636
|
|
373
|
+
rasa/dialogue_understanding/commands/change_flow_command.py,sha256=S0ZUvFPl7ppksyKyADJboY93wByj_SWI3onxDXLIpRs,2396
|
|
374
|
+
rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=UI2Jvo9OVkiOH74Y1n9qSDzOvj8WbK-Zp03zk6nc5ZM,2829
|
|
375
|
+
rasa/dialogue_understanding/commands/clarify_command.py,sha256=HbmswhwAznFKzP5ghqkGtvlR3EEPx1xTKO9zb0nUPys,4278
|
|
376
|
+
rasa/dialogue_understanding/commands/command.py,sha256=rhxHmllTMwvb4Uq-pDqmUdlKtu-87y8nqN5DRO-KDwE,2529
|
|
377
|
+
rasa/dialogue_understanding/commands/command_syntax_manager.py,sha256=vPX-ckjD58YHchrk2phcQ4ZXEZmO1penyIH0fpKPHas,1892
|
|
375
378
|
rasa/dialogue_understanding/commands/correct_slots_command.py,sha256=LlaBtWc3y-DyDPMF-zGG9x_J9uCe78LqiuogHIyoz5Q,10810
|
|
376
379
|
rasa/dialogue_understanding/commands/error_command.py,sha256=LTEsxkGGGZR6wEEGuTtQ4K4EK_u2UFhNK4eAKyPfyME,2436
|
|
377
380
|
rasa/dialogue_understanding/commands/free_form_answer_command.py,sha256=XlQrHXrcOemzu1LHZiDhBAluiSlnUQ2V7ET5Z-aG7gc,224
|
|
378
381
|
rasa/dialogue_understanding/commands/handle_code_change_command.py,sha256=Cp2e1iD0zacXmljJ8vDXHJu9Fp6BwB7cGx8NF748akw,2192
|
|
379
382
|
rasa/dialogue_understanding/commands/handle_digressions_command.py,sha256=uSotn4xHsOnfQPOnltU5ZxBabW9gfjm2RsnvkXEefbA,5127
|
|
380
|
-
rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=
|
|
381
|
-
rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=
|
|
383
|
+
rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=qEBaeHWcKHpsAE-WjNX-bC9mknH79v8Vb2IGNQjfwmg,2952
|
|
384
|
+
rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=2fVTYzL3irCWA_BQmGZC4LwpCwo9UdaTCex2jNZIk3Q,2839
|
|
382
385
|
rasa/dialogue_understanding/commands/noop_command.py,sha256=aIaLBjSV84qy9X4aGlJfMIYhF57maH5CiKNWL_-giD4,1485
|
|
383
|
-
rasa/dialogue_understanding/commands/
|
|
386
|
+
rasa/dialogue_understanding/commands/prompt_command.py,sha256=slKQkvtrM353I3gltiett5xrZ7IxQ0omdqJHi6IowGk,2569
|
|
387
|
+
rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=YnaG1Ugw55OwTttY8Wp7-AdpwHc53LD7wBo9AQbbK2E,2920
|
|
384
388
|
rasa/dialogue_understanding/commands/restart_command.py,sha256=vvmucwlVtfh6VMgdOn5hZfsP9U5HhfbDeBSG2IndX0Y,1639
|
|
385
389
|
rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68_kV1Hv4i317bbeBeVHHyhW_A7r5yzs,1770
|
|
386
390
|
rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
|
|
387
|
-
rasa/dialogue_understanding/commands/set_slot_command.py,sha256=
|
|
388
|
-
rasa/dialogue_understanding/commands/skip_question_command.py,sha256=
|
|
389
|
-
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=
|
|
391
|
+
rasa/dialogue_understanding/commands/set_slot_command.py,sha256=2AlLUBPKB2YbfGjOJx6R6B9O2o2EWgkNUxSUIA8sBo0,6725
|
|
392
|
+
rasa/dialogue_understanding/commands/skip_question_command.py,sha256=q13cRbTXL9ioaTWTQwIf6Ew2GPGKcnYY7hpmg1KcL0Q,3283
|
|
393
|
+
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=NQo8SbB6FWSsE0v95XKqDaYsK6obrWnwd7rGjbzaAzM,6381
|
|
390
394
|
rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
|
|
391
|
-
rasa/dialogue_understanding/commands/utils.py,sha256=
|
|
395
|
+
rasa/dialogue_understanding/commands/utils.py,sha256=ZymuPFPJCS48VKwvVcZmqnhCpG_DiIqnw8w69wDE17w,5171
|
|
392
396
|
rasa/dialogue_understanding/constants.py,sha256=_kB0edGV23uvhujlF193N2jk6YG0R6LC599YDX5B5vo,129
|
|
393
|
-
rasa/dialogue_understanding/generator/__init__.py,sha256=
|
|
397
|
+
rasa/dialogue_understanding/generator/__init__.py,sha256=pBm0o6pnJA_0W0UOrGuVsiG4hsTNH_n5GLrz8BYQHM8,830
|
|
394
398
|
rasa/dialogue_understanding/generator/command_generator.py,sha256=QvYHF3w_WgyItMySUtf0B2Qmb_7SEOLONmQXdLseIt8,13184
|
|
395
|
-
rasa/dialogue_understanding/generator/command_parser.py,sha256=
|
|
396
|
-
rasa/dialogue_understanding/generator/constants.py,sha256=
|
|
399
|
+
rasa/dialogue_understanding/generator/command_parser.py,sha256=uS-Z2YAk1s9LnE3jExL33_pwvkIqCpnX0vWaXN1bcjI,6598
|
|
400
|
+
rasa/dialogue_understanding/generator/constants.py,sha256=QQSIIfqvSVU4jFUKeZdp7qrkiaI7M7dz3HfgcNELSRs,824
|
|
397
401
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
398
402
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=wlGnMj17-X1-siQmdSvOd7K61sRzBf82MQEL2pqDQMI,17891
|
|
399
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
400
|
-
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=
|
|
403
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=3SjW38VMjZYjIR1p0j-PQVT1_2rrmZuEAJtU5InNK-w,22203
|
|
404
|
+
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=z7jhIJ3W_5GFH-p15kVoWbigMIoY8fIJjc_j_uX7yxw,2581
|
|
401
405
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
406
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
403
407
|
rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2,sha256=8l93_QBKBYnqLICVdiTu5ejZDE8F36BU8-qwba0px44,1927
|
|
404
|
-
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=
|
|
408
|
+
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=921KrV-9p0vEqqQzjRMK3dseG2qgl-tmhyC24FKZxTo,31946
|
|
405
409
|
rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=28QdoZ330DL5X-SdUQASjsmyf9KIY3GGHbrl2xEeZMU,10868
|
|
410
|
+
rasa/dialogue_understanding/generator/prompt_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
+
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_template.jinja2,sha256=nMayu-heJYH1QmcL1cFmXb8SeiJzfdDR_9Oy5IRUXsM,3937
|
|
412
|
+
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2,sha256=5e_BCU_FlRV7JYpNKbO2x9w_cQtXQcQG1e800Pe4-qU,3407
|
|
413
|
+
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_default.jinja2,sha256=walH6RpfjxT43lhe4er7zl7FFHLYsIyRev4zGTR5VOQ,3051
|
|
414
|
+
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2,sha256=Nk6dXFR-eBWh9gSH6XLh7bdlKIoWUcaoQuxCkiD9l-Q,3555
|
|
406
415
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
|
-
rasa/dialogue_understanding/generator/single_step/
|
|
408
|
-
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=
|
|
416
|
+
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=4aawT_0cMo_LkjffiLVPeYuCMAC7xmZxIkYHCsmVDL8,17462
|
|
417
|
+
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=tfRanDYEuZLJExGwDrAoncwr8udfoGVNAYWMFtTHFXI,3973
|
|
409
418
|
rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
|
|
410
419
|
rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
420
|
rasa/dialogue_understanding/patterns/cancel.py,sha256=8D66Q7lPD6xcHoiTR90eU2DW6EFtRWFoItIMY9WYHig,3869
|
|
@@ -413,11 +422,11 @@ rasa/dialogue_understanding/patterns/cannot_handle.py,sha256=xLzz2tBmLZ7N9rvSOyl
|
|
|
413
422
|
rasa/dialogue_understanding/patterns/chitchat.py,sha256=aY3zvliCbYF_z6vRyiogkjvSBZUw_K5Gis4EmwbaTio,1104
|
|
414
423
|
rasa/dialogue_understanding/patterns/clarify.py,sha256=9hKBH1aJ0m8j9kXeU5xb-hZoxjGlj9vaJfLmqFy3vQQ,3435
|
|
415
424
|
rasa/dialogue_understanding/patterns/code_change.py,sha256=B0MUxM6V5cM9wJgitzz9U1yId2erRQSITKljDJxTojw,1187
|
|
416
|
-
rasa/dialogue_understanding/patterns/collect_information.py,sha256=
|
|
425
|
+
rasa/dialogue_understanding/patterns/collect_information.py,sha256=8YWvhFTt8CJMLsoWCbUh7EgSzsZj_-fdC3Dzvc97cTw,3181
|
|
417
426
|
rasa/dialogue_understanding/patterns/completed.py,sha256=7qkyUj2d__2R3mpwWVmQpfwCCbJruBrjRZbmbDr3Zbo,1278
|
|
418
427
|
rasa/dialogue_understanding/patterns/continue_interrupted.py,sha256=OSTbe5l0B0ECNIYWpYB0pdzIeaqM3m3UZskNNjL5vrw,1682
|
|
419
428
|
rasa/dialogue_understanding/patterns/correction.py,sha256=fGr1Fpot5c0sm6BgPBy1nGwRTnntRVZcFGHlWT9YSng,11402
|
|
420
|
-
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=
|
|
429
|
+
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=_ofJmmkfIJgpjDKqO1Q_QU1iFT2uMDRrJg78AT2FnNU,12377
|
|
421
430
|
rasa/dialogue_understanding/patterns/handle_digressions.py,sha256=_6wNNLsGsGkjvzdnzS7vUoh0C5g0Dx9AHW-mC1XHQxU,3272
|
|
422
431
|
rasa/dialogue_understanding/patterns/human_handoff.py,sha256=1hkSdL6kui42rZc7zERZ9R7nLyvRHi_tHgNU7FyrhAQ,1132
|
|
423
432
|
rasa/dialogue_understanding/patterns/internal_error.py,sha256=APCKVv16M6mSQ4upu4UwG0yIaaKTyr7uB2yV8ZtpMzo,1609
|
|
@@ -427,8 +436,9 @@ rasa/dialogue_understanding/patterns/search.py,sha256=Es7SXjCojQSVg2NlYBYlYn8D3i
|
|
|
427
436
|
rasa/dialogue_understanding/patterns/session_start.py,sha256=wKeCgrskRTxpafOASvocoKyGTm7mbkCgxvo3E72ZHrU,1153
|
|
428
437
|
rasa/dialogue_understanding/patterns/skip_question.py,sha256=fJ1MC0WEEtS-BpnGJEfJR31bg5XYIu5DFLM9DRs9PeQ,1215
|
|
429
438
|
rasa/dialogue_understanding/patterns/user_silence.py,sha256=xP-QMnd-MsybH5z4g01hBv4OLOHcw6m3rc26LQfe2zo,1140
|
|
439
|
+
rasa/dialogue_understanding/patterns/validate_slot.py,sha256=hqd5AEGT3M3HLNhMwuI9W9kZNCvgU6GyI-2xc2b4kz8,2085
|
|
430
440
|
rasa/dialogue_understanding/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
|
-
rasa/dialogue_understanding/processor/command_processor.py,sha256=
|
|
441
|
+
rasa/dialogue_understanding/processor/command_processor.py,sha256=l2CPJCNzA5X1W_i08QpXBwF8ys5eqMItRsKK-9CyP-g,30510
|
|
432
442
|
rasa/dialogue_understanding/processor/command_processor_component.py,sha256=9NWJxMibKeaOBLDRT9lcylJr0ki5sQ0hJRtLlKHIlnI,1526
|
|
433
443
|
rasa/dialogue_understanding/stack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
434
444
|
rasa/dialogue_understanding/stack/dialogue_stack.py,sha256=cYV6aQeh0EuOJHODDqK3biqXozYTX8baPgLwHhPxFqs,5244
|
|
@@ -445,11 +455,11 @@ rasa/dialogue_understanding_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
445
455
|
rasa/dialogue_understanding_test/command_comparison.py,sha256=LvCZGgZVFpKjWqaZE5OqPClM5xDNdFZQ4FslvNerB7s,1812
|
|
446
456
|
rasa/dialogue_understanding_test/command_metric_calculation.py,sha256=ys1BobRxqEhsfKk5Op9OB_IXUIsGGSiK6ox8246W-9E,3889
|
|
447
457
|
rasa/dialogue_understanding_test/constants.py,sha256=G63FEzswDUOonTxoXQicEJwI6ICkSx3YP1ILkGH1ijw,790
|
|
448
|
-
rasa/dialogue_understanding_test/du_test_case.py,sha256=
|
|
449
|
-
rasa/dialogue_understanding_test/du_test_result.py,sha256=
|
|
458
|
+
rasa/dialogue_understanding_test/du_test_case.py,sha256=NZ76ZT_Cz0q8WwSPw7WEzWW3JyiUMVxtYw5PJnFgHJM,14573
|
|
459
|
+
rasa/dialogue_understanding_test/du_test_result.py,sha256=9cg_BVmZmm41bnA41Z9h80tKu9ehmG7pCYIa9mKoyPs,15065
|
|
450
460
|
rasa/dialogue_understanding_test/du_test_runner.py,sha256=ZG-TNfu-Ak9l_gg9NNadzKzARgICJ9wlsYooCBi1WKU,11943
|
|
451
461
|
rasa/dialogue_understanding_test/du_test_schema.yml,sha256=zgIhb6PE8LnoigVmv4NbU3cjSsr2SkGoO-5Xh4Et9KA,4767
|
|
452
|
-
rasa/dialogue_understanding_test/io.py,sha256=
|
|
462
|
+
rasa/dialogue_understanding_test/io.py,sha256=A797fXYvjFZM4ejA7ozZwp71eFLg-ebTM4I_rZwH4yk,15127
|
|
453
463
|
rasa/dialogue_understanding_test/test_case_simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
454
464
|
rasa/dialogue_understanding_test/test_case_simulation/exception.py,sha256=RJV8CfoGKmfpC3d28y7IBKfmcAZSm2Vs6p0GkiCHlcc,1034
|
|
455
465
|
rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py,sha256=ypRPY3ua5wRrIDfXF1hSBsJzAXpu8qlQP9fR9Neb3jY,12965
|
|
@@ -476,27 +486,28 @@ rasa/e2e_test/stub_custom_action.py,sha256=aGOdZEQVZJpfY5zaHUcG447_tdJCncgD3G85e
|
|
|
476
486
|
rasa/e2e_test/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
487
|
rasa/e2e_test/utils/e2e_yaml_utils.py,sha256=XvP14DGHMfsNXyI7uTV-GTAdqv-r5FNmpFmvEIn93OM,1601
|
|
478
488
|
rasa/e2e_test/utils/generative_assertions.py,sha256=vKBNKhV8C9A_DlQhBnZHfYM1P-_rxovPOyJ37aop3M4,7611
|
|
479
|
-
rasa/e2e_test/utils/io.py,sha256=
|
|
489
|
+
rasa/e2e_test/utils/io.py,sha256=XyZ8O3s-UVOM-PatdLD3_FKcGesm1BJNANIqkfhXidY,19900
|
|
480
490
|
rasa/e2e_test/utils/validation.py,sha256=lZQjRzJ1tnOp1MaUlh8MDMbxsJOmbP91uHyHk2H-XEE,5668
|
|
481
491
|
rasa/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
482
492
|
rasa/engine/caching.py,sha256=K69amXY6cvKd0Sc5SLe02ujSb3WtQHYsWhcGAwwKyxA,16449
|
|
483
493
|
rasa/engine/constants.py,sha256=rRSg4vUPWJCLlYnU4VQSabKXFcoAF_TFnRGRq8ieTds,623
|
|
484
494
|
rasa/engine/exceptions.py,sha256=1aV48nLrlAGzEeIDuXeB0qjxe5qaqzOhrK52OBs66xc,437
|
|
485
|
-
rasa/engine/graph.py,sha256=
|
|
495
|
+
rasa/engine/graph.py,sha256=CmsRHRolDx0VV5JqUuo1tcy6h0MuP3LZhD0xgyCh46I,24492
|
|
496
|
+
rasa/engine/language.py,sha256=93Q2J5bCYHrcnWOISs2AqO7gNZ4h5uyZQguK87XXElk,4675
|
|
486
497
|
rasa/engine/loader.py,sha256=fCE3L3uweuGrluyisqkbayeIxqo1NUE-EnlwjwwaFcY,1922
|
|
487
498
|
rasa/engine/recipes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
|
-
rasa/engine/recipes/config_files/default_config.yml,sha256=
|
|
499
|
+
rasa/engine/recipes/config_files/default_config.yml,sha256=E1sAW6Qq_T0QXBDK8NzkhkmSESX9g8Op85h5aCVbYlA,1194
|
|
489
500
|
rasa/engine/recipes/default_components.py,sha256=pFPA5ljoqQcy7s8mhQDEFFKY-2nqEiGfmr5Db06hVjU,3948
|
|
490
|
-
rasa/engine/recipes/default_recipe.py,sha256=
|
|
491
|
-
rasa/engine/recipes/graph_recipe.py,sha256=
|
|
501
|
+
rasa/engine/recipes/default_recipe.py,sha256=K35i3COhsmH2bK9Tl5RpoF4pFl-TXPWSeBSI4cwD118,46509
|
|
502
|
+
rasa/engine/recipes/graph_recipe.py,sha256=vG5HkGWgJh2_F7IBKnylKZ5LJMpGx0THWbO7QQ-ElmE,3391
|
|
492
503
|
rasa/engine/recipes/recipe.py,sha256=aIzV78BiUEE8B8hY5pkNPu-85CwSjCb6YaJvurz7n6c,3346
|
|
493
504
|
rasa/engine/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
494
505
|
rasa/engine/runner/dask.py,sha256=ocmpRpDpRPMaisZcBFDeUPbWGl6oWiU9UXyWimE9074,9476
|
|
495
506
|
rasa/engine/runner/interface.py,sha256=zkaKe5vjiYrR7Efepr7LVZRJEGNDM959rkdR62vEgTM,1679
|
|
496
507
|
rasa/engine/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
|
-
rasa/engine/storage/local_model_storage.py,sha256=
|
|
508
|
+
rasa/engine/storage/local_model_storage.py,sha256=szLUl7h8815G8PWi_eecjJwdEOsvTIB8_2dFzuCHP44,9607
|
|
498
509
|
rasa/engine/storage/resource.py,sha256=sUCBNSIrjEr68wCj7D48hzmIih7ezmT88esMhyykA88,3932
|
|
499
|
-
rasa/engine/storage/storage.py,sha256=
|
|
510
|
+
rasa/engine/storage/storage.py,sha256=mNLptsu9cOXWu8k55CnjZMByv6eqh2rEOqXC9__k8aE,6930
|
|
500
511
|
rasa/engine/training/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
512
|
rasa/engine/training/components.py,sha256=Ymz8-JcKm5A9dqPblay11Lxo_AFShkakXlsHQ9uquGI,6525
|
|
502
513
|
rasa/engine/training/fingerprinting.py,sha256=RrJzkhTefKsj2A1S4yAJ4IIUZGganGTcKKdor-FfLjA,2008
|
|
@@ -544,8 +555,8 @@ rasa/model.py,sha256=cAbQXvfZXBKHAj79Z0-mCy29hSSWp2KaroScgDeTfJw,3489
|
|
|
544
555
|
rasa/model_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
545
556
|
rasa/model_manager/config.py,sha256=FziaDSyDB-qr40pU46QrvfnScviJaqExfQKUezqlroE,1159
|
|
546
557
|
rasa/model_manager/model_api.py,sha256=zACwxiURsJU9BG1lxCRG8eSNwzeNwshlcjRjqvhPYsk,20275
|
|
547
|
-
rasa/model_manager/runner_service.py,sha256=
|
|
548
|
-
rasa/model_manager/socket_bridge.py,sha256=
|
|
558
|
+
rasa/model_manager/runner_service.py,sha256=Lw0shswAekncsQcYriGaPPPL4fJhP9ry6XDUMv0buqU,8811
|
|
559
|
+
rasa/model_manager/socket_bridge.py,sha256=wvoWqNwEEIM9sJEtdC_2AzFkMpkAG0CZpf6MA0NZ-2E,5299
|
|
549
560
|
rasa/model_manager/studio_jwt_auth.py,sha256=uls2QiHUlUrR3fOzZssW4UaAMJMfnPMZeV1aDmZIT0E,2645
|
|
550
561
|
rasa/model_manager/trainer_service.py,sha256=kz6OJlFJvfic4wLBChOKe1O0ysBx2rozL1mEALZwvg0,10320
|
|
551
562
|
rasa/model_manager/utils.py,sha256=rS0ST-rJMuZOna90r_Ioz7gOkZ8r8vm4XAhzI0iUZOA,2643
|
|
@@ -614,26 +625,27 @@ rasa/nlu/utils/spacy_utils.py,sha256=5EnHR-MVAZhGbg2rq8VpOu7I0tagV3ThRTlM0-WO2Cg
|
|
|
614
625
|
rasa/plugin.py,sha256=cSmFhSWr5WQyYXdJOWwgH4ra_2kbhoNLZAtnqcsGny4,3071
|
|
615
626
|
rasa/server.py,sha256=iAAiExxCkwfcxqsy4omasIdmP-BzeC9op_Qyj3MCJ1E,59321
|
|
616
627
|
rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
617
|
-
rasa/shared/constants.py,sha256=
|
|
628
|
+
rasa/shared/constants.py,sha256=t8kP4ne1Ksht2pUPeXYSHsydex_douGbYfboT9AOOS0,11853
|
|
618
629
|
rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
619
630
|
rasa/shared/core/command_payload_reader.py,sha256=puHYsp9xbX0YQm2L1NDBItOFmdzI7AzmfGefgcHiCc0,3871
|
|
620
|
-
rasa/shared/core/constants.py,sha256=
|
|
631
|
+
rasa/shared/core/constants.py,sha256=zT2zHFUqqbExPN9A0QmN3hKJic_YHoO9fBBP_np_iXs,6601
|
|
621
632
|
rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1hG5c,1384
|
|
622
633
|
rasa/shared/core/domain.py,sha256=ylQPC61M5TMBJ-PkRxfG403H1FLJpQ1xZj1TgsyYcvE,80918
|
|
623
634
|
rasa/shared/core/events.py,sha256=WNo5AeL9lMroIpznVfgyboBrIy9bIivYLJNxsP0POmE,84405
|
|
624
635
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
625
|
-
rasa/shared/core/flows/
|
|
636
|
+
rasa/shared/core/flows/constants.py,sha256=0HN3k-apOb_fi8E2AJtUxMxro8jwFVyXQpil-tHEzbM,340
|
|
637
|
+
rasa/shared/core/flows/flow.py,sha256=dn_7qk4cUuJ_Z3sysDj1V3bBXL4aRAb_XQBQLkvpJSY,24696
|
|
626
638
|
rasa/shared/core/flows/flow_path.py,sha256=xstwahZBU5cfMY46mREA4NoOGlKLBRAqeP_mJ3UZqOI,2283
|
|
627
639
|
rasa/shared/core/flows/flow_step.py,sha256=ZvjXz1Fs5FR1_BlGBitOEYRnLhzk-bBYv1CC2Oi6iWQ,4537
|
|
628
640
|
rasa/shared/core/flows/flow_step_links.py,sha256=U9c4MFASieJGp_-XMhR0hrxFQISCJAF4TQ0wEy4IjB0,10530
|
|
629
641
|
rasa/shared/core/flows/flow_step_sequence.py,sha256=Rcw82OccjJsNc2wKXi6IePOIAPFRBTylSVphCRJCuc4,2362
|
|
630
642
|
rasa/shared/core/flows/flows_list.py,sha256=fnWzY-pI0SmNb6tsEnKIhfhzxFM35rPeKz_SkMw1fjw,8728
|
|
631
|
-
rasa/shared/core/flows/flows_yaml_schema.json,sha256=
|
|
643
|
+
rasa/shared/core/flows/flows_yaml_schema.json,sha256=qibnzratlgFH418el6I2wyR71IhLDth64m8TwwDPwHs,13466
|
|
632
644
|
rasa/shared/core/flows/nlu_trigger.py,sha256=GG6m5h6Z0jaukA5rPAHscnULgZGDjYMXfufX9nYQtzA,3907
|
|
633
645
|
rasa/shared/core/flows/steps/__init__.py,sha256=jvJp02o9_Wx-rZeQ3SYiLVMpO6ulS1yKuiiKg0ld_nE,655
|
|
634
646
|
rasa/shared/core/flows/steps/action.py,sha256=ctePK0izZudBQE_2wTPQL83T1QAZtaVNSD8mqHtulCQ,1730
|
|
635
647
|
rasa/shared/core/flows/steps/call.py,sha256=ZbJQpRVL8qzU-nS19aW4Hu3RvxemAYRLyNslmId4oww,1856
|
|
636
|
-
rasa/shared/core/flows/steps/collect.py,sha256=
|
|
648
|
+
rasa/shared/core/flows/steps/collect.py,sha256=8hCMtpVKGAVPbQ9Oa0gnSuT-x2MhnNJl0QQfuRYISyE,3958
|
|
637
649
|
rasa/shared/core/flows/steps/constants.py,sha256=DCxrEUGbJciBknHm-_t4tmcnH19IZKP-WYxqix9gm7M,132
|
|
638
650
|
rasa/shared/core/flows/steps/continuation.py,sha256=5Rzayr80FsgS4bAajuRObVvVcLqPEh9nxGbT2te85xY,1498
|
|
639
651
|
rasa/shared/core/flows/steps/end.py,sha256=0XrPlQMVBnQKVeZs0or8P9IrVqG7i6RoSNDsVrvAeDk,749
|
|
@@ -642,13 +654,13 @@ rasa/shared/core/flows/steps/link.py,sha256=T6TE-LnfoGUrrPCmlZBLeXou2HGHmOVhu_zh
|
|
|
642
654
|
rasa/shared/core/flows/steps/no_operation.py,sha256=SKqNQ4usLZ4c-faSZOX41lpHBD8YtVe2eGDSt50H05s,1399
|
|
643
655
|
rasa/shared/core/flows/steps/set_slots.py,sha256=DudtHKXaVSNmQL_vXLvkK23_JqgTBU9RJrdQeBpC4s0,1492
|
|
644
656
|
rasa/shared/core/flows/steps/start.py,sha256=AJpKIm0S3GZYLEs3ybXW0Zrq03Pu9lvirNahiUy2I6k,1010
|
|
645
|
-
rasa/shared/core/flows/utils.py,sha256=
|
|
646
|
-
rasa/shared/core/flows/validation.py,sha256=
|
|
657
|
+
rasa/shared/core/flows/utils.py,sha256=jOp063Lkt5ZZ832K6gLnlGU6HjHe5iLDzMLiGvugS_o,2725
|
|
658
|
+
rasa/shared/core/flows/validation.py,sha256=4IfTR8LoaJcqP8I7NQXjl0Ysmwc7VO7YzCshpiDEDP0,27410
|
|
647
659
|
rasa/shared/core/flows/yaml_flows_io.py,sha256=85ln95jpkh7ZqDl1cheFa8Q21gnadLjWrW8ADmQlrUQ,14385
|
|
648
660
|
rasa/shared/core/generator.py,sha256=UAuBPu5UjUhL9djVK-PvrWZcNhRACOEgnRsTleV7eeY,35686
|
|
649
|
-
rasa/shared/core/slot_mappings.py,sha256=
|
|
650
|
-
rasa/shared/core/slots.py,sha256=
|
|
651
|
-
rasa/shared/core/trackers.py,sha256=
|
|
661
|
+
rasa/shared/core/slot_mappings.py,sha256=0jOIk-iSKI-pJObYdk-Bmf-2SPTYFUuCA4H6SONthRA,25847
|
|
662
|
+
rasa/shared/core/slots.py,sha256=0vy6laTW7A96sQfImZfTFF0foq_c9cTHKFFh31Gc58k,28934
|
|
663
|
+
rasa/shared/core/trackers.py,sha256=KRmahvRNa3M9q8MS-pv8wu8atzo__sh8uHhkSildSsA,45018
|
|
652
664
|
rasa/shared/core/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
653
665
|
rasa/shared/core/training_data/loading.py,sha256=RCx1uTI9iDejFI_sWg3qPzhjln7-hu78f3EDAT6K0No,2894
|
|
654
666
|
rasa/shared/core/training_data/story_reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -666,7 +678,7 @@ rasa/shared/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
666
678
|
rasa/shared/engine/caching.py,sha256=SfiDl-xtkBbOU3qiSYi9rTA136kS4v5fixIS7vJuAP4,742
|
|
667
679
|
rasa/shared/exceptions.py,sha256=5vli6aaruH_CJFkVEuHp5NmEzDLV8x6CKXXueDd2_nY,5118
|
|
668
680
|
rasa/shared/importers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
669
|
-
rasa/shared/importers/importer.py,sha256=
|
|
681
|
+
rasa/shared/importers/importer.py,sha256=ixdFG5TT4OxPKmmd5Kvyi3NhKFKezP_1aYGCEtMKqoU,28913
|
|
670
682
|
rasa/shared/importers/multi_project.py,sha256=73fzUGDFpzHt9Nhy3EmPZg5mHj1EApmFiLoxitOX-EQ,8137
|
|
671
683
|
rasa/shared/importers/rasa.py,sha256=04ohlwnqllfFDJPcmE32SkMNg1TMKwKnsfNlzeGJWUc,4086
|
|
672
684
|
rasa/shared/importers/remote_importer.py,sha256=fKLQskaCVPpD5cCMQ9sR71cZZlSIP-SSv3J3o2kra2w,7696
|
|
@@ -690,62 +702,65 @@ rasa/shared/nlu/training_data/message.py,sha256=loW3kA1vWvDmxU8GNeXeDjzSh4J72kae
|
|
|
690
702
|
rasa/shared/nlu/training_data/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
691
703
|
rasa/shared/nlu/training_data/schemas/data_schema.py,sha256=Bs6EhcnQHZv0m4oZJzPzeUAw-PqLcmzkgVR5gJGFMSg,2565
|
|
692
704
|
rasa/shared/nlu/training_data/schemas/nlu.yml,sha256=g7TZg3JsSfgO8MlrpcszKd2RDy7-ubKJzjvZnFqUWVs,1179
|
|
693
|
-
rasa/shared/nlu/training_data/schemas/responses.yml,sha256=
|
|
705
|
+
rasa/shared/nlu/training_data/schemas/responses.yml,sha256=3kO8lbJ9Exesbon5EtnAVTtJZwTjTiN1eHe1HsMGAeM,1931
|
|
694
706
|
rasa/shared/nlu/training_data/synonyms_parser.py,sha256=H3VqR7eB4fcFj8XMuKfWF3X-2VZqLkVm5SwTRpjbsdE,1476
|
|
695
707
|
rasa/shared/nlu/training_data/training_data.py,sha256=j0LhSxqq-vOveZAF-DZtaQ-szCNRs0r7bAyM3SDbMvk,28510
|
|
696
708
|
rasa/shared/nlu/training_data/util.py,sha256=SCd97o6dDhbodasRK3JuaiAA1Xcy0faEMTjcry72GoQ,7050
|
|
697
709
|
rasa/shared/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
698
710
|
rasa/shared/providers/_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
699
|
-
rasa/shared/providers/_configs/
|
|
700
|
-
rasa/shared/providers/_configs/
|
|
701
|
-
rasa/shared/providers/_configs/
|
|
702
|
-
rasa/shared/providers/_configs/
|
|
703
|
-
rasa/shared/providers/_configs/
|
|
704
|
-
rasa/shared/providers/_configs/
|
|
705
|
-
rasa/shared/providers/_configs/
|
|
706
|
-
rasa/shared/providers/_configs/
|
|
707
|
-
rasa/shared/providers/_configs/
|
|
711
|
+
rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=7nd8sPOp1_vdsgtAklrJ0Vf-jZDnqzI9Vf2UtYhmMQE,19398
|
|
712
|
+
rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=1S_CGS_mIjDBHkBphdptYXdIFmngzGtI2y0f94mMi8c,10653
|
|
713
|
+
rasa/shared/providers/_configs/client_config.py,sha256=nQ469h1XI970_7Vs49hNIpBIwlAeiAg-cwV0JFp7Hg0,1618
|
|
714
|
+
rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=tViurJ1NDbiBn9b5DbzhFHO1pJM889MC-GakWhEX07E,4352
|
|
715
|
+
rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py,sha256=q8ddTFwddDhx654ZQmg9eP_yo77N3Xg77hAmfXOmzPg,8200
|
|
716
|
+
rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=OX7egiQXkGSYxIfEOFrGFwCIKFJc3IgBKrZGqdjeMVQ,7265
|
|
717
|
+
rasa/shared/providers/_configs/model_group_config.py,sha256=gcvRY86StqCLqAOxLh-2sWEPxMNnwt43vR3QaviElZI,5618
|
|
718
|
+
rasa/shared/providers/_configs/oauth_config.py,sha256=eMHaXdSwiYqe4LC_UhDPJcrE7tqv3HDc8ghgkhwcYo4,791
|
|
719
|
+
rasa/shared/providers/_configs/openai_client_config.py,sha256=tKCQSjtpVmPO_30sRmcFFDk0tNFs5bVseyI7iBU6ZOY,5839
|
|
720
|
+
rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=elpbqVNSgkAiM0Dg-0N3ayVkSi6TAERepdZG7Bv8NdI,2245
|
|
721
|
+
rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=l2JnypPXFL6KVxhftKTYvh-NqpXJ8--pjbJ-IQHoPRs,5963
|
|
708
722
|
rasa/shared/providers/_configs/utils.py,sha256=u2Ram05YwQ7-frm_r8n9rafjZoF8i0qSC7XjYQRuPgo,3732
|
|
709
723
|
rasa/shared/providers/_ssl_verification_utils.py,sha256=vUnP0vocf0GQ0wG8IQpPcCet4c1C9-wQWQNckNWbDBk,4165
|
|
710
724
|
rasa/shared/providers/_utils.py,sha256=g1N5xv3P8Nk7NPHECWk6e_C_DNPGKlYgM8OII-FkCRs,3090
|
|
725
|
+
rasa/shared/providers/constants.py,sha256=hgV8yNGxIbID_2h65OoSfSjIE4UkazrsqRg4SdkPAmI,234
|
|
711
726
|
rasa/shared/providers/embedding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
712
727
|
rasa/shared/providers/embedding/_base_litellm_embedding_client.py,sha256=PFavNnD6EVDQiqc9sLnBRV0hebW4iCjIh_dvpwzg4RI,8796
|
|
713
728
|
rasa/shared/providers/embedding/_langchain_embedding_client_adapter.py,sha256=IR2Rb3ReJ9C9sxOoOGRXgtz8STWdMREs_4AeSMKFjl4,2135
|
|
714
|
-
rasa/shared/providers/embedding/azure_openai_embedding_client.py,sha256=
|
|
729
|
+
rasa/shared/providers/embedding/azure_openai_embedding_client.py,sha256=HKHMx6m669CC19u6GPnpSLzA0PwvHlquhaK3QhqHI78,12469
|
|
715
730
|
rasa/shared/providers/embedding/default_litellm_embedding_client.py,sha256=da17WeHjZp95Uv9jmTKxklNRcNpn-qRsRPcwDQusElg,4397
|
|
716
731
|
rasa/shared/providers/embedding/embedding_client.py,sha256=LGFlnsf5B0XDn8GRn_mLfCJ5erhf2p3zXiKTdG9jNXY,2839
|
|
717
732
|
rasa/shared/providers/embedding/embedding_response.py,sha256=H55mSAL3LfVvDlBklaCCQ4AnNwCsQSQ1f2D0oPrx3FY,1204
|
|
718
733
|
rasa/shared/providers/embedding/huggingface_local_embedding_client.py,sha256=Zo3gyj49h4LxXV7bx39TXpIPKlernG-5xzqXczTCbig,6913
|
|
719
|
-
rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=
|
|
734
|
+
rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=eafDk6IgQtL_kiKgpa6sJs1oATyRi2NT2leUFQsED2s,4551
|
|
720
735
|
rasa/shared/providers/embedding/openai_embedding_client.py,sha256=XNRGE7apo2v3kWRrtgxE-Gq4rvNko3IiXtvgC4krDYE,5429
|
|
721
736
|
rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
722
|
-
rasa/shared/providers/llm/_base_litellm_client.py,sha256=
|
|
723
|
-
rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=
|
|
724
|
-
rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=
|
|
725
|
-
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=
|
|
726
|
-
rasa/shared/providers/llm/llm_client.py,sha256
|
|
737
|
+
rasa/shared/providers/llm/_base_litellm_client.py,sha256=NQ_AxENfnUT_cEsshBLPh-4RtsZEVNAT2OaO8X7yQXk,11411
|
|
738
|
+
rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=tMHn0i7-HZb01__CuzKvzSbXAq2dE0Oov4U7qIl74no,14989
|
|
739
|
+
rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=e3f-YMS7-aariB5erRot7NReD-eaVPgeD45rypF-sUw,3974
|
|
740
|
+
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=OHE1IcLg1EFrKXEIQ6ku3XT-9DbgOQ2BlyPcxAG9wL8,7946
|
|
741
|
+
rasa/shared/providers/llm/llm_client.py,sha256=-hTCRsL-A3GCMRHtcyCgcCyra-9OJ8GUC-mURoRXH0k,3242
|
|
727
742
|
rasa/shared/providers/llm/llm_response.py,sha256=8mOpZdmh4-3yM7aOmNO0yEYUmRDErfoP7ZDMUuHr2Cc,3504
|
|
728
|
-
rasa/shared/providers/llm/openai_llm_client.py,sha256=
|
|
729
|
-
rasa/shared/providers/llm/rasa_llm_client.py,sha256=
|
|
730
|
-
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=
|
|
743
|
+
rasa/shared/providers/llm/openai_llm_client.py,sha256=_pfuedqXm2V7C1awLF6HBHN5uFuvQ9dbSovmmWwQOeI,5011
|
|
744
|
+
rasa/shared/providers/llm/rasa_llm_client.py,sha256=44Tvtnkq4mxDIxtdrGUkwBWAvX1OLaswqmpAsyBH8e8,3504
|
|
745
|
+
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=X3QyA5nZbQap0tomg0dQozbY39Ry0y-lLnj-EowK6dI,10270
|
|
731
746
|
rasa/shared/providers/mappings.py,sha256=QSD3XWvhYCtBLNpGycN30vEnLULYIaqCsAtmfPfSZ3U,3674
|
|
732
747
|
rasa/shared/providers/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
733
|
-
rasa/shared/providers/router/_base_litellm_router_client.py,sha256=
|
|
734
|
-
rasa/shared/providers/router/router_client.py,sha256=
|
|
748
|
+
rasa/shared/providers/router/_base_litellm_router_client.py,sha256=O42OHmFznH2YXeNyB8j84wsDAxDCLICkYhlC_fqiL9s,6932
|
|
749
|
+
rasa/shared/providers/router/router_client.py,sha256=5BBEg-_JtClOVxBy1hu-HceG329PsKs-2v_qbyX_vSo,2174
|
|
735
750
|
rasa/shared/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
736
751
|
rasa/shared/utils/cli.py,sha256=cCI7-2WSqW_O_3fp_X3UPWKevLtHuts8nueV2PhPqlg,2916
|
|
737
752
|
rasa/shared/utils/common.py,sha256=d254T2fOYUtryRsklq69EkQI5Qy0m0HLaWXsfq6K7ZA,10742
|
|
738
|
-
rasa/shared/utils/constants.py,sha256=
|
|
753
|
+
rasa/shared/utils/constants.py,sha256=CkcwE1mmaAo_1QDydUX5WO8x_-stFGZ17dPAGP1t_k4,262
|
|
739
754
|
rasa/shared/utils/health_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
740
755
|
rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i6HlRLzee8pafejlTkUesOhY6FZb5-wAZMI,1034
|
|
741
756
|
rasa/shared/utils/health_check/health_check.py,sha256=izixrbc9BxFSsjzwoIw9U0w0VKSX5gMwhey8bcwe1wc,9709
|
|
742
757
|
rasa/shared/utils/health_check/llm_health_check_mixin.py,sha256=ANP5Q68TRX8p4wWkRCAISsWBV1iYYeGnqWILnR1NawE,957
|
|
743
758
|
rasa/shared/utils/io.py,sha256=AhuECoXGO367NvWRCBu99utEtTQnyxWVJyKOOpLePpg,15917
|
|
744
|
-
rasa/shared/utils/llm.py,sha256=
|
|
745
|
-
rasa/shared/utils/pykwalify_extensions.py,sha256=
|
|
759
|
+
rasa/shared/utils/llm.py,sha256=cMtfAuRJ_APadlVEv9PqkQ1D86Op9JOLfRVjjFM1Eks,26466
|
|
760
|
+
rasa/shared/utils/pykwalify_extensions.py,sha256=2fvaysurCST_EMelCsECzkBgvClKYbdHb2Ty9rZhszw,1846
|
|
746
761
|
rasa/shared/utils/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
747
762
|
rasa/shared/utils/schemas/config.yml,sha256=czxSADw9hOIZdhvFP8pVUQo810hs9_C8ZGfCPx17taM,27
|
|
748
|
-
rasa/shared/utils/schemas/domain.yml,sha256=
|
|
763
|
+
rasa/shared/utils/schemas/domain.yml,sha256=m3C_pyouyCrIRIbcGxn-RVjKcpEuT-_U9zmP4NDoJRQ,4156
|
|
749
764
|
rasa/shared/utils/schemas/events.py,sha256=T8kSex2UpgmToqib6KyrgNYBK5WS8OwqdO4Jv-TEJ4I,6913
|
|
750
765
|
rasa/shared/utils/schemas/model_config.yml,sha256=OravyVWalSwjiXYRarRzg0tiRnUFHe1q4-5Wj1TEeFk,811
|
|
751
766
|
rasa/shared/utils/schemas/stories.yml,sha256=DV3wAFnv1leD7kV-FH-GQihF1QX5oKHc8Eb24mxjizc,4737
|
|
@@ -759,16 +774,16 @@ rasa/studio/download.py,sha256=Ap_Hq3veKKp5JxWt_qAeTJg0KLKkzowMclx2KPE1fy8,17188
|
|
|
759
774
|
rasa/studio/results_logger.py,sha256=eLBi49o_4nkXccRM0h6-sjlV1o_HxTNEVJMdNocTw_I,4963
|
|
760
775
|
rasa/studio/train.py,sha256=gfPtirITzBDo9gV4hqDNSwPYtVp_22cq8OWI6YIBgyk,4243
|
|
761
776
|
rasa/studio/upload.py,sha256=K4QJIE-GYWgA1Z6dXOJAA7n0McvlBt0wOQyiCMXtZCk,17784
|
|
762
|
-
rasa/telemetry.py,sha256=
|
|
777
|
+
rasa/telemetry.py,sha256=K2wLw4q-Cls_mQgblLKIJCZvPRcxOqlstNT8hYyzR3c,66730
|
|
763
778
|
rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
764
|
-
rasa/tracing/config.py,sha256=
|
|
765
|
-
rasa/tracing/constants.py,sha256
|
|
779
|
+
rasa/tracing/config.py,sha256=32X2rqAiHe0e-Iijb5AivjqDs2j03n8xx5mo07NBMI4,12964
|
|
780
|
+
rasa/tracing/constants.py,sha256=-3vlfI9v_D8f-KB5tuiqBHhszu2WofFQOyjKBn28gyg,2889
|
|
766
781
|
rasa/tracing/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
767
782
|
rasa/tracing/instrumentation/attribute_extractors.py,sha256=-LjX91Y94Jalccm5tMpbYvXF25abg0NVFr0MKJJOB-Q,29478
|
|
768
|
-
rasa/tracing/instrumentation/instrumentation.py,sha256=
|
|
783
|
+
rasa/tracing/instrumentation/instrumentation.py,sha256=BPI5OoZFbl90kVJzlKEz-eD8cf-CaX_x1t4V9XBhDKo,53625
|
|
769
784
|
rasa/tracing/instrumentation/intentless_policy_instrumentation.py,sha256=RgixI0FVIzBz19E3onidUpSEwjkAh8paA5_w07PMzFo,4821
|
|
770
|
-
rasa/tracing/instrumentation/metrics.py,sha256=
|
|
771
|
-
rasa/tracing/metric_instrument_provider.py,sha256=
|
|
785
|
+
rasa/tracing/instrumentation/metrics.py,sha256=DI_qIS6sz5KYU4QDcPKfnHxKLL_Ma3wV6diH4_vg85c,12051
|
|
786
|
+
rasa/tracing/metric_instrument_provider.py,sha256=9J9a-a4lmBe20PuTHa_HwKX7O8kEAQdY5ajPLDCQkwE,12174
|
|
772
787
|
rasa/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
773
788
|
rasa/utils/beta.py,sha256=h2xwGagMh2SnpMuqhkEAEjL7C_CyU6b1te7sbtF-lm4,3240
|
|
774
789
|
rasa/utils/cli.py,sha256=L-DT4nPdVBWfc2m1COHrziLitVWJxazSreb6JLbTho4,865
|
|
@@ -804,10 +819,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
|
|
|
804
819
|
rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,21259
|
|
805
820
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
806
821
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
807
|
-
rasa/validator.py,sha256=
|
|
808
|
-
rasa/version.py,sha256
|
|
809
|
-
rasa_pro-3.12.
|
|
810
|
-
rasa_pro-3.12.
|
|
811
|
-
rasa_pro-3.12.
|
|
812
|
-
rasa_pro-3.12.
|
|
813
|
-
rasa_pro-3.12.
|
|
822
|
+
rasa/validator.py,sha256=Hq8Y_dBflR3pO0YWSoNZ9uoacRaAmMAE3ijK3XH2bnk,88713
|
|
823
|
+
rasa/version.py,sha256=-B6bTF_cJDg-krlKwYBHdn3qzGK6oUPnjj1h140Xh-A,120
|
|
824
|
+
rasa_pro-3.12.0rc1.dist-info/METADATA,sha256=YvxFxzw8BcDBgGBR_knyMmz72K4NNdVcwDWr_At7Y94,10777
|
|
825
|
+
rasa_pro-3.12.0rc1.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
826
|
+
rasa_pro-3.12.0rc1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
827
|
+
rasa_pro-3.12.0rc1.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
828
|
+
rasa_pro-3.12.0rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|