rasa-pro 3.12.0.dev9__py3-none-any.whl → 3.12.0.dev10__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/core/actions/action.py +17 -3
- rasa/core/actions/action_handle_digressions.py +142 -0
- rasa/core/actions/forms.py +4 -2
- rasa/core/channels/voice_ready/audiocodes.py +42 -23
- rasa/core/channels/voice_stream/tts/azure.py +2 -1
- rasa/core/migrate.py +2 -2
- rasa/core/policies/flows/flow_executor.py +33 -1
- rasa/dialogue_understanding/commands/can_not_handle_command.py +2 -2
- rasa/dialogue_understanding/commands/cancel_flow_command.py +62 -4
- rasa/dialogue_understanding/commands/change_flow_command.py +2 -2
- rasa/dialogue_understanding/commands/chit_chat_answer_command.py +2 -2
- rasa/dialogue_understanding/commands/clarify_command.py +2 -2
- rasa/dialogue_understanding/commands/correct_slots_command.py +11 -2
- rasa/dialogue_understanding/commands/handle_digressions_command.py +150 -0
- rasa/dialogue_understanding/commands/human_handoff_command.py +2 -2
- rasa/dialogue_understanding/commands/knowledge_answer_command.py +2 -2
- rasa/dialogue_understanding/commands/repeat_bot_messages_command.py +2 -2
- rasa/dialogue_understanding/commands/set_slot_command.py +7 -15
- rasa/dialogue_understanding/commands/skip_question_command.py +2 -2
- rasa/dialogue_understanding/commands/start_flow_command.py +43 -2
- rasa/dialogue_understanding/commands/utils.py +1 -1
- rasa/dialogue_understanding/constants.py +1 -0
- rasa/dialogue_understanding/generator/command_generator.py +10 -76
- rasa/dialogue_understanding/generator/command_parser.py +1 -1
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +126 -2
- rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +10 -2
- rasa/dialogue_understanding/generator/nlu_command_adapter.py +4 -2
- rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2 +40 -40
- rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +11 -19
- rasa/dialogue_understanding/patterns/correction.py +13 -1
- rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +62 -2
- rasa/dialogue_understanding/patterns/handle_digressions.py +81 -0
- rasa/dialogue_understanding/processor/command_processor.py +117 -28
- rasa/dialogue_understanding/utils.py +31 -0
- rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py +2 -2
- rasa/shared/core/constants.py +22 -1
- rasa/shared/core/domain.py +6 -4
- rasa/shared/core/events.py +13 -2
- rasa/shared/core/flows/flow.py +17 -0
- rasa/shared/core/flows/flows_yaml_schema.json +38 -0
- rasa/shared/core/flows/steps/collect.py +18 -1
- rasa/shared/core/flows/utils.py +16 -1
- rasa/shared/core/slot_mappings.py +6 -6
- rasa/shared/core/slots.py +19 -0
- rasa/shared/core/trackers.py +3 -1
- rasa/shared/nlu/constants.py +1 -0
- rasa/shared/providers/llm/_base_litellm_client.py +0 -40
- rasa/shared/utils/llm.py +1 -86
- rasa/shared/utils/schemas/domain.yml +0 -1
- rasa/validator.py +172 -22
- rasa/version.py +1 -1
- {rasa_pro-3.12.0.dev9.dist-info → rasa_pro-3.12.0.dev10.dist-info}/METADATA +1 -1
- {rasa_pro-3.12.0.dev9.dist-info → rasa_pro-3.12.0.dev10.dist-info}/RECORD +56 -53
- {rasa_pro-3.12.0.dev9.dist-info → rasa_pro-3.12.0.dev10.dist-info}/NOTICE +0 -0
- {rasa_pro-3.12.0.dev9.dist-info → rasa_pro-3.12.0.dev10.dist-info}/WHEEL +0 -0
- {rasa_pro-3.12.0.dev9.dist-info → rasa_pro-3.12.0.dev10.dist-info}/entry_points.txt +0 -0
rasa/validator.py
CHANGED
|
@@ -36,8 +36,9 @@ from rasa.shared.core.command_payload_reader import (
|
|
|
36
36
|
)
|
|
37
37
|
from rasa.shared.core.constants import (
|
|
38
38
|
ACTIVE_LOOP,
|
|
39
|
+
KEY_ALLOW_NLU_CORRECTION,
|
|
40
|
+
KEY_MAPPING_TYPE,
|
|
39
41
|
MAPPING_CONDITIONS,
|
|
40
|
-
MAPPING_TYPE,
|
|
41
42
|
SlotMappingType,
|
|
42
43
|
)
|
|
43
44
|
from rasa.shared.core.domain import (
|
|
@@ -45,13 +46,14 @@ from rasa.shared.core.domain import (
|
|
|
45
46
|
Domain,
|
|
46
47
|
)
|
|
47
48
|
from rasa.shared.core.events import ActionExecuted, ActiveLoop, UserUttered
|
|
48
|
-
from rasa.shared.core.flows import FlowsList
|
|
49
|
+
from rasa.shared.core.flows import Flow, FlowsList
|
|
49
50
|
from rasa.shared.core.flows.flow_step_links import IfFlowStepLink
|
|
50
51
|
from rasa.shared.core.flows.steps.action import ActionFlowStep
|
|
51
52
|
from rasa.shared.core.flows.steps.collect import CollectInformationFlowStep
|
|
52
53
|
from rasa.shared.core.flows.steps.link import LinkFlowStep
|
|
53
54
|
from rasa.shared.core.flows.steps.set_slots import SetSlotsFlowStep
|
|
54
55
|
from rasa.shared.core.flows.utils import (
|
|
56
|
+
ALL_LABEL,
|
|
55
57
|
get_duplicate_slot_persistence_config_error_message,
|
|
56
58
|
get_invalid_slot_persistence_config_error_message,
|
|
57
59
|
warn_deprecated_collect_step_config,
|
|
@@ -520,7 +522,7 @@ class Validator:
|
|
|
520
522
|
for mapping in slot.mappings:
|
|
521
523
|
for condition in mapping.get(MAPPING_CONDITIONS, []):
|
|
522
524
|
condition_active_loop = condition.get(ACTIVE_LOOP)
|
|
523
|
-
mapping_type = SlotMappingType(mapping.get(
|
|
525
|
+
mapping_type = SlotMappingType(mapping.get(KEY_MAPPING_TYPE))
|
|
524
526
|
if (
|
|
525
527
|
condition_active_loop
|
|
526
528
|
and condition_active_loop not in self.domain.form_names
|
|
@@ -1264,6 +1266,7 @@ class Validator:
|
|
|
1264
1266
|
self.verify_unique_flows(),
|
|
1265
1267
|
self.verify_predicates(),
|
|
1266
1268
|
self.verify_slot_persistence_configuration(),
|
|
1269
|
+
self.verify_digression_configuration(),
|
|
1267
1270
|
]
|
|
1268
1271
|
|
|
1269
1272
|
all_good = all(flow_validation_conditions)
|
|
@@ -1394,29 +1397,31 @@ class Validator:
|
|
|
1394
1397
|
nlu_mappings = any(
|
|
1395
1398
|
[
|
|
1396
1399
|
SlotMappingType(
|
|
1397
|
-
mapping.get(
|
|
1400
|
+
mapping.get(KEY_MAPPING_TYPE, SlotMappingType.FROM_LLM.value)
|
|
1398
1401
|
).is_predefined_type()
|
|
1399
1402
|
for mapping in slot.mappings
|
|
1400
1403
|
]
|
|
1401
1404
|
)
|
|
1402
1405
|
llm_mappings = any(
|
|
1403
1406
|
[
|
|
1404
|
-
SlotMappingType(
|
|
1407
|
+
SlotMappingType(
|
|
1408
|
+
mapping.get(KEY_MAPPING_TYPE, SlotMappingType.FROM_LLM.value)
|
|
1409
|
+
)
|
|
1405
1410
|
== SlotMappingType.FROM_LLM
|
|
1406
1411
|
for mapping in slot.mappings
|
|
1407
1412
|
]
|
|
1408
1413
|
)
|
|
1409
1414
|
custom_mappings = any(
|
|
1410
1415
|
[
|
|
1411
|
-
SlotMappingType(
|
|
1416
|
+
SlotMappingType(
|
|
1417
|
+
mapping.get(KEY_MAPPING_TYPE, SlotMappingType.FROM_LLM.value)
|
|
1418
|
+
)
|
|
1412
1419
|
== SlotMappingType.CUSTOM
|
|
1413
1420
|
for mapping in slot.mappings
|
|
1414
1421
|
]
|
|
1415
1422
|
)
|
|
1416
1423
|
|
|
1417
|
-
all_good = self.
|
|
1418
|
-
llm_mappings, nlu_mappings, custom_mappings, slot.name, all_good
|
|
1419
|
-
)
|
|
1424
|
+
all_good = self._allow_nlu_correction_is_valid(slot, nlu_mappings, all_good)
|
|
1420
1425
|
|
|
1421
1426
|
all_good = self._custom_action_name_is_defined_in_the_domain(
|
|
1422
1427
|
custom_mappings, slot, all_good
|
|
@@ -1433,23 +1438,48 @@ class Validator:
|
|
|
1433
1438
|
return all_good
|
|
1434
1439
|
|
|
1435
1440
|
@staticmethod
|
|
1436
|
-
def
|
|
1437
|
-
|
|
1438
|
-
nlu_mappings: bool,
|
|
1439
|
-
custom_mappings: bool,
|
|
1440
|
-
slot_name: str,
|
|
1441
|
-
all_good: bool,
|
|
1441
|
+
def _allow_nlu_correction_is_valid(
|
|
1442
|
+
slot: Slot, nlu_mappings: bool, all_good: bool
|
|
1442
1443
|
) -> bool:
|
|
1443
|
-
|
|
1444
|
+
"""Verify that `allow_nlu_correction` property is used correctly in a `from_llm` mappings only.""" # noqa: E501
|
|
1445
|
+
if not slot.mappings:
|
|
1446
|
+
return all_good
|
|
1447
|
+
|
|
1448
|
+
invalid_usage = False
|
|
1449
|
+
|
|
1450
|
+
for mapping in slot.mappings:
|
|
1451
|
+
allow_nlu_correction = mapping.get(KEY_ALLOW_NLU_CORRECTION)
|
|
1452
|
+
if (
|
|
1453
|
+
allow_nlu_correction
|
|
1454
|
+
and mapping.get(KEY_MAPPING_TYPE) != SlotMappingType.FROM_LLM.value
|
|
1455
|
+
):
|
|
1456
|
+
invalid_usage = True
|
|
1457
|
+
|
|
1458
|
+
if allow_nlu_correction and not nlu_mappings:
|
|
1459
|
+
structlogger.error(
|
|
1460
|
+
"validator.validate_slot_mappings_in_CALM.nlu_mappings_not_present",
|
|
1461
|
+
slot_name=slot.name,
|
|
1462
|
+
event_info=(
|
|
1463
|
+
f"The slot '{slot.name}' does not have any "
|
|
1464
|
+
f"NLU-based slot mappings. "
|
|
1465
|
+
f"The property `allow_nlu_correction` is only "
|
|
1466
|
+
f"applicable when the slot "
|
|
1467
|
+
f"contains both NLU-based and LLM-based slot mappings."
|
|
1468
|
+
),
|
|
1469
|
+
)
|
|
1470
|
+
all_good = False
|
|
1471
|
+
|
|
1472
|
+
if invalid_usage:
|
|
1444
1473
|
structlogger.error(
|
|
1445
|
-
"validator.validate_slot_mappings_in_CALM.
|
|
1446
|
-
slot_name=
|
|
1474
|
+
"validator.validate_slot_mappings_in_CALM.allow_nlu_correction",
|
|
1475
|
+
slot_name=slot.name,
|
|
1447
1476
|
event_info=(
|
|
1448
|
-
f"The slot '{
|
|
1449
|
-
f"
|
|
1450
|
-
f"
|
|
1477
|
+
f"The slot '{slot.name}' has at least 1 slot mapping with "
|
|
1478
|
+
f"'{KEY_ALLOW_NLU_CORRECTION}' set to 'true', but "
|
|
1479
|
+
f"the slot mapping type is not 'from_llm'. "
|
|
1480
|
+
f"Please set the slot mapping type to 'from_llm' "
|
|
1481
|
+
f"to allow the LLM to correct this slot."
|
|
1451
1482
|
),
|
|
1452
|
-
docs_link=DOCS_URL_DOMAIN + "#calm-slot-mappings",
|
|
1453
1483
|
)
|
|
1454
1484
|
all_good = False
|
|
1455
1485
|
|
|
@@ -1658,3 +1688,123 @@ class Validator:
|
|
|
1658
1688
|
)
|
|
1659
1689
|
|
|
1660
1690
|
return all_good
|
|
1691
|
+
|
|
1692
|
+
def verify_digression_configuration(self) -> bool:
|
|
1693
|
+
"""Validates the digression configuration in flows."""
|
|
1694
|
+
all_good = True
|
|
1695
|
+
|
|
1696
|
+
for flow in self.flows.underlying_flows:
|
|
1697
|
+
all_good = self._validate_ask_confirm_digressions(flow, all_good)
|
|
1698
|
+
all_good = self._validate_block_digressions(flow, all_good)
|
|
1699
|
+
|
|
1700
|
+
return all_good
|
|
1701
|
+
|
|
1702
|
+
def _validate_ask_confirm_digressions(self, flow: Flow, all_good: bool) -> bool:
|
|
1703
|
+
"""Validates the ask_confirm_digressions configuration in a flow."""
|
|
1704
|
+
for flow_id in flow.ask_confirm_digressions:
|
|
1705
|
+
if flow_id == ALL_LABEL:
|
|
1706
|
+
continue
|
|
1707
|
+
if flow_id not in self.flows.flow_ids:
|
|
1708
|
+
structlogger.error(
|
|
1709
|
+
"validator.verify_digression_configuration.ask_confirm_digressions",
|
|
1710
|
+
flow=flow.id,
|
|
1711
|
+
event_info=(
|
|
1712
|
+
f"The flow '{flow_id}' is listed in the "
|
|
1713
|
+
f"`ask_confirm_digressions` configuration of flow "
|
|
1714
|
+
f"'{flow.id}', but it is not found in the "
|
|
1715
|
+
f"flows file. Please make sure that the flow id is correct."
|
|
1716
|
+
),
|
|
1717
|
+
)
|
|
1718
|
+
all_good = False
|
|
1719
|
+
|
|
1720
|
+
if flow_id in flow.block_digressions:
|
|
1721
|
+
structlogger.error(
|
|
1722
|
+
"validator.verify_digression_configuration.overlap_digressions",
|
|
1723
|
+
flow=flow.id,
|
|
1724
|
+
event_info=(
|
|
1725
|
+
f"The flow '{flow_id}' is listed in both the "
|
|
1726
|
+
f"`ask_confirm_digressions` and `block_digressions` "
|
|
1727
|
+
f"configuration of flow '{flow.id}'. "
|
|
1728
|
+
f"Please make sure that the flow id is not listed in both "
|
|
1729
|
+
f"configurations."
|
|
1730
|
+
),
|
|
1731
|
+
)
|
|
1732
|
+
all_good = False
|
|
1733
|
+
|
|
1734
|
+
for step in flow.get_collect_steps():
|
|
1735
|
+
for flow_id in step.ask_confirm_digressions:
|
|
1736
|
+
if flow_id == ALL_LABEL:
|
|
1737
|
+
continue
|
|
1738
|
+
|
|
1739
|
+
if flow_id not in self.flows.flow_ids:
|
|
1740
|
+
structlogger.error(
|
|
1741
|
+
"validator.verify_digression_configuration.ask_confirm_digressions",
|
|
1742
|
+
flow=flow.id,
|
|
1743
|
+
step_id=step.id,
|
|
1744
|
+
event_info=(
|
|
1745
|
+
f"The flow '{flow_id}' is listed in the "
|
|
1746
|
+
f"`ask_confirm_digressions` configuration of step "
|
|
1747
|
+
f"'{step.id}' in flow '{flow.id}', but it is "
|
|
1748
|
+
f"not found in the flows file. "
|
|
1749
|
+
f"Please make sure that the flow id is correct."
|
|
1750
|
+
),
|
|
1751
|
+
)
|
|
1752
|
+
all_good = False
|
|
1753
|
+
|
|
1754
|
+
if flow_id in step.block_digressions:
|
|
1755
|
+
structlogger.error(
|
|
1756
|
+
"validator.verify_digression_configuration.overlap_digressions",
|
|
1757
|
+
flow=flow.id,
|
|
1758
|
+
step_id=step.id,
|
|
1759
|
+
event_info=(
|
|
1760
|
+
f"The flow '{flow_id}' is listed in both the "
|
|
1761
|
+
f"`ask_confirm_digressions` and `block_digressions` "
|
|
1762
|
+
f"configuration of step '{step.id}' in flow '{flow.id}'. "
|
|
1763
|
+
f"Please make sure that the flow id is not listed in both "
|
|
1764
|
+
f"configurations."
|
|
1765
|
+
),
|
|
1766
|
+
)
|
|
1767
|
+
all_good = False
|
|
1768
|
+
|
|
1769
|
+
return all_good
|
|
1770
|
+
|
|
1771
|
+
def _validate_block_digressions(self, flow: Flow, all_good: bool) -> bool:
|
|
1772
|
+
"""Validates the block_digressions configuration in a flow."""
|
|
1773
|
+
for flow_id in flow.block_digressions:
|
|
1774
|
+
if flow_id == ALL_LABEL:
|
|
1775
|
+
continue
|
|
1776
|
+
|
|
1777
|
+
if flow_id not in self.flows.flow_ids:
|
|
1778
|
+
structlogger.error(
|
|
1779
|
+
"validator.verify_digression_configuration.block_digressions",
|
|
1780
|
+
flow=flow.id,
|
|
1781
|
+
event_info=(
|
|
1782
|
+
f"The flow '{flow_id}' is listed in the `block_digressions` "
|
|
1783
|
+
f"configuration of flow '{flow.id}', but it is not found "
|
|
1784
|
+
f"in the flows file. Please make sure that the flow id "
|
|
1785
|
+
f"is correct."
|
|
1786
|
+
),
|
|
1787
|
+
)
|
|
1788
|
+
all_good = False
|
|
1789
|
+
|
|
1790
|
+
for step in flow.get_collect_steps():
|
|
1791
|
+
for flow_id in step.block_digressions:
|
|
1792
|
+
if flow_id == ALL_LABEL:
|
|
1793
|
+
continue
|
|
1794
|
+
|
|
1795
|
+
if flow_id not in self.flows.flow_ids:
|
|
1796
|
+
structlogger.error(
|
|
1797
|
+
"validator.verify_digression_configuration.block_digressions",
|
|
1798
|
+
flow=flow.id,
|
|
1799
|
+
step_id=step.id,
|
|
1800
|
+
event_info=(
|
|
1801
|
+
f"The flow '{flow_id}' is listed in the "
|
|
1802
|
+
f"`block_digressions` configuration of step "
|
|
1803
|
+
f"'{step.id}' in flow '{flow.id}', but it is "
|
|
1804
|
+
f"not found in the flows file. "
|
|
1805
|
+
f"Please make sure that the flow id is correct."
|
|
1806
|
+
),
|
|
1807
|
+
)
|
|
1808
|
+
all_good = False
|
|
1809
|
+
|
|
1810
|
+
return all_good
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.12.0.
|
|
3
|
+
Version: 3.12.0.dev10
|
|
4
4
|
Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
|
|
5
5
|
Home-page: https://rasa.com
|
|
6
6
|
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
@@ -93,9 +93,10 @@ 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=Pi0uPRxJaLZz_p7JcEPk4RVIDDu8KtzDSGZc2yuMy9U,46836
|
|
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
|
+
rasa/core/actions/action_handle_digressions.py,sha256=u1woxFGmDbsoRyEB9yFDJonojRUeYosbm1_afzfecWo,4442
|
|
99
100
|
rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
|
|
100
101
|
rasa/core/actions/action_repeat_bot_messages.py,sha256=2DZFHPS7SKslz_Pm3Tyn0154xTws3E7lMYKl2ktQPTQ,3522
|
|
101
102
|
rasa/core/actions/action_run_slot_rejections.py,sha256=Bmt3-nt6wmts40B5bqq1Pv5EA5PYQ7mv6wDLPoGbi2s,6872
|
|
@@ -106,7 +107,7 @@ rasa/core/actions/constants.py,sha256=gfgdWmj-OJ5xTcTAS1OcXQ3dgcTiHO98NC-SGyKlTj
|
|
|
106
107
|
rasa/core/actions/custom_action_executor.py,sha256=qafASBdM3-hByDqbkNxgXfx5yMSsJh_nB3B7x9ye0TY,6176
|
|
107
108
|
rasa/core/actions/direct_custom_actions_executor.py,sha256=IzxRnPF92zs3WX-p9DoFq51Vf0QwfE6prB_AlyEEllc,3746
|
|
108
109
|
rasa/core/actions/e2e_stub_custom_action_executor.py,sha256=D-kECC1QjVLv4owNxstW2xJPPsXTGfGepvquMeWB_ec,2282
|
|
109
|
-
rasa/core/actions/forms.py,sha256=
|
|
110
|
+
rasa/core/actions/forms.py,sha256=T3zy7JjQWl9l_CtlAnmmcmI7QKxuL-AjXJXXs3O6aow,26866
|
|
110
111
|
rasa/core/actions/grpc_custom_action_executor.py,sha256=EDxdSIDA4H4Mu-QZk-pPGV2N41ZsbY8W9laV6l1WlDQ,9103
|
|
111
112
|
rasa/core/actions/http_custom_action_executor.py,sha256=oC5OM-p11wHOXXVl7vrTUjhwI6JZh5qCaQpWtl0I0WE,5434
|
|
112
113
|
rasa/core/actions/loops.py,sha256=3-kt_Sn_Y05PLYoYMsnuIn9e5mxYp31DJIx2omqy0dU,3531
|
|
@@ -267,7 +268,7 @@ rasa/core/channels/telegram.py,sha256=-rDxVpW_HS8ARQm4d1VZNd2vovKt-Hs3dbCRdKmEZo
|
|
|
267
268
|
rasa/core/channels/twilio.py,sha256=2BTQpyx0b0yPpc0A2BHYfxLPgodrLGLs8nq6i3lVGAM,5906
|
|
268
269
|
rasa/core/channels/vier_cvg.py,sha256=GkrWKu7NRMFtLMyYp-kQ2taWAc_keAwhYrkVPW56iaU,13544
|
|
269
270
|
rasa/core/channels/voice_ready/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
-
rasa/core/channels/voice_ready/audiocodes.py,sha256=
|
|
271
|
+
rasa/core/channels/voice_ready/audiocodes.py,sha256=KoqPAFJkdZJm8rAXCENNSHf_xT_QBmBT4hbwN5XVKME,19543
|
|
271
272
|
rasa/core/channels/voice_ready/jambonz.py,sha256=r7O8k_X934lQe0fzY7R0z_hMeX5qMN663bTugQ1-8eQ,4154
|
|
272
273
|
rasa/core/channels/voice_ready/jambonz_protocol.py,sha256=idWArI4SRr4fjyZx3VIUoua_cbLwpvw4e5VeHyQjE8E,12975
|
|
273
274
|
rasa/core/channels/voice_ready/twilio_voice.py,sha256=5N5dQ2l_u8CC9J16USgufl6MB1bJziCky7VT58MPt68,14520
|
|
@@ -282,7 +283,7 @@ rasa/core/channels/voice_stream/audio_bytes.py,sha256=3V0QQplPD-kVfebaaeVcKgV7pw
|
|
|
282
283
|
rasa/core/channels/voice_stream/browser_audio.py,sha256=P_0Dq6QHuClfu2yNyypJth9JR6gqzjFOqcPrS8f9syw,3784
|
|
283
284
|
rasa/core/channels/voice_stream/call_state.py,sha256=U6rSgL3ITkUnYBu8mWNfUvMQT5sqoxIfFE_ZhsVDME8,765
|
|
284
285
|
rasa/core/channels/voice_stream/tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
-
rasa/core/channels/voice_stream/tts/azure.py,sha256=
|
|
286
|
+
rasa/core/channels/voice_stream/tts/azure.py,sha256=l1IWk2XbkBxDgaR3oAMr4J5J8mlfFRKVn-35ptHlQmQ,4014
|
|
286
287
|
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=aX0T6HSlLxy6DdHyXMcIpCH_Xw22nbEp_KUrn_es6VA,4339
|
|
287
288
|
rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFSkuTIqLvho--Yt0litb4,850
|
|
288
289
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
|
|
@@ -312,7 +313,7 @@ rasa/core/information_retrieval/qdrant.py,sha256=KHtU6txMs5ZrAECVjgTa2d5mb37-gHx
|
|
|
312
313
|
rasa/core/jobs.py,sha256=d0HuO161mDfAGHk4-TppWuQ3gnJCyblqggINOMEfVcI,2027
|
|
313
314
|
rasa/core/lock.py,sha256=KNrpWv_KYLFjQfwaDembrjO2i4HhoVHbllw6_BPYMrE,4718
|
|
314
315
|
rasa/core/lock_store.py,sha256=weupfBiYMz-B_N-LAONCvp-po1uPRdie9imLYn7hFDU,12504
|
|
315
|
-
rasa/core/migrate.py,sha256=
|
|
316
|
+
rasa/core/migrate.py,sha256=h1dOpXxmVmZlbLVGy1yOU_Obp2KzRiOiL0iuEacA0Cg,14618
|
|
316
317
|
rasa/core/nlg/__init__.py,sha256=jZuQAhOUcxO-KqqHGqICHSY3oDeXlUiGr2trQDYfG6o,240
|
|
317
318
|
rasa/core/nlg/callback.py,sha256=0zDQsOa3uV66G3smCVQ9cUdvj-it8tFneIzqShM7NeI,5208
|
|
318
319
|
rasa/core/nlg/contextual_response_rephraser.py,sha256=2aWneYFWRrGtgFezsrriLxUYTnp_64sjPNO9rZpcGQs,12965
|
|
@@ -329,7 +330,7 @@ rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256
|
|
|
329
330
|
rasa/core/policies/flow_policy.py,sha256=597G62hrLF_CAMCvu-TPRldFnjMP2XEIkhcIaPWcQAc,7489
|
|
330
331
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
332
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
332
|
-
rasa/core/policies/flows/flow_executor.py,sha256=
|
|
333
|
+
rasa/core/policies/flows/flow_executor.py,sha256=TeJLBmeibzTM2FBoBC1WcV5bD3tSVJQaE9ZcYmutMho,28127
|
|
333
334
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
334
335
|
rasa/core/policies/intentless_policy.py,sha256=p9e54sSjTOGAFxLbPdF0jspQNETmtBvg-RXQNPviIbE,37898
|
|
335
336
|
rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
|
|
@@ -364,45 +365,46 @@ rasa/dialogue_understanding/coexistence/intent_based_router.py,sha256=JlYBZdScnh
|
|
|
364
365
|
rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=UTLMZpynSRt8qnQSSV-dTgFQbBHaMEgrLIUWCMyH1BE,11354
|
|
365
366
|
rasa/dialogue_understanding/coexistence/router_template.jinja2,sha256=CHWFreN0sv1EbPh-hf5AlCt3zxy2_llX1Pdn9Q11Y18,357
|
|
366
367
|
rasa/dialogue_understanding/commands/__init__.py,sha256=F-pLETYRUjhIkjjDfXGUuPsK_ac1HcLmJkrUUP0RhME,2259
|
|
367
|
-
rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=
|
|
368
|
-
rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=
|
|
369
|
-
rasa/dialogue_understanding/commands/change_flow_command.py,sha256=
|
|
370
|
-
rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=
|
|
371
|
-
rasa/dialogue_understanding/commands/clarify_command.py,sha256=
|
|
368
|
+
rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=2ferTQRUR_Ibr2Qa-Dma71DzVT6Tfy3-6iUhFrFFeZ4,2831
|
|
369
|
+
rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=nVlQfSiZNJ_0UnDOD5Et-Y6biGfvuLuMQ9sNgj3K_aA,6903
|
|
370
|
+
rasa/dialogue_understanding/commands/change_flow_command.py,sha256=8tjULfNQXsH3ZWTsMlrzbVgHLU26catdHTWzcYgSBWI,1735
|
|
371
|
+
rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=GtYU3FtpwoAQti2_zW_T3x7iJABu2Yyb0eqUd7takhg,2152
|
|
372
|
+
rasa/dialogue_understanding/commands/clarify_command.py,sha256=y5iEESwalNmQ7MZDbS5ut5KZwqEp_4GF6kBrvwUlRBE,3432
|
|
372
373
|
rasa/dialogue_understanding/commands/command.py,sha256=riYYO0Lvm7T2vydDOfFFi7IquJWdyX_jH8d7qX0PB2c,2993
|
|
373
|
-
rasa/dialogue_understanding/commands/correct_slots_command.py,sha256=
|
|
374
|
+
rasa/dialogue_understanding/commands/correct_slots_command.py,sha256=LlaBtWc3y-DyDPMF-zGG9x_J9uCe78LqiuogHIyoz5Q,10810
|
|
374
375
|
rasa/dialogue_understanding/commands/error_command.py,sha256=LTEsxkGGGZR6wEEGuTtQ4K4EK_u2UFhNK4eAKyPfyME,2436
|
|
375
376
|
rasa/dialogue_understanding/commands/free_form_answer_command.py,sha256=XlQrHXrcOemzu1LHZiDhBAluiSlnUQ2V7ET5Z-aG7gc,224
|
|
376
377
|
rasa/dialogue_understanding/commands/handle_code_change_command.py,sha256=Cp2e1iD0zacXmljJ8vDXHJu9Fp6BwB7cGx8NF748akw,2192
|
|
377
|
-
rasa/dialogue_understanding/commands/
|
|
378
|
-
rasa/dialogue_understanding/commands/
|
|
378
|
+
rasa/dialogue_understanding/commands/handle_digressions_command.py,sha256=uSotn4xHsOnfQPOnltU5ZxBabW9gfjm2RsnvkXEefbA,5127
|
|
379
|
+
rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=WlGswi5Wlc3jsXp6hsU3ANMdZMqGk33rxeX0kAyiwgw,2285
|
|
380
|
+
rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=S2AP2_H-KFnSRUKqG3kz083dR_JTXKMWkjhzi9mEDPQ,2166
|
|
379
381
|
rasa/dialogue_understanding/commands/noop_command.py,sha256=aIaLBjSV84qy9X4aGlJfMIYhF57maH5CiKNWL_-giD4,1485
|
|
380
|
-
rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=
|
|
382
|
+
rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=9SaRXsqdgC5p-2JIa8T3fsc6sVcsLf1FL90HtjW5Uek,2243
|
|
381
383
|
rasa/dialogue_understanding/commands/restart_command.py,sha256=vvmucwlVtfh6VMgdOn5hZfsP9U5HhfbDeBSG2IndX0Y,1639
|
|
382
384
|
rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68_kV1Hv4i317bbeBeVHHyhW_A7r5yzs,1770
|
|
383
385
|
rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
|
|
384
|
-
rasa/dialogue_understanding/commands/set_slot_command.py,sha256=
|
|
385
|
-
rasa/dialogue_understanding/commands/skip_question_command.py,sha256=
|
|
386
|
-
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=
|
|
386
|
+
rasa/dialogue_understanding/commands/set_slot_command.py,sha256=Cfs5APo4Bmz6OoL3pbzcKJFI-ihuSgMQK15gNG8ItL8,5900
|
|
387
|
+
rasa/dialogue_understanding/commands/skip_question_command.py,sha256=45NvtkqMaNX05T2KmTInwGSTWAeRokgdF7CXWpHnL48,2608
|
|
388
|
+
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=7BRLTqP8GNUE8cg2IDtKU9reUjxN9tljVfriwb4JTlI,5671
|
|
387
389
|
rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
|
|
388
|
-
rasa/dialogue_understanding/commands/utils.py,sha256=
|
|
389
|
-
rasa/dialogue_understanding/constants.py,sha256=
|
|
390
|
+
rasa/dialogue_understanding/commands/utils.py,sha256=vz3fNF31cCIUoWQ6HP6_nI4E30MBFIfacCZb6QKx634,1748
|
|
391
|
+
rasa/dialogue_understanding/constants.py,sha256=_kB0edGV23uvhujlF193N2jk6YG0R6LC599YDX5B5vo,129
|
|
390
392
|
rasa/dialogue_understanding/generator/__init__.py,sha256=Ykeb2wQ1DuiUWAWO0hLIPSTK1_Ktiq9DZXF6D3ugN78,764
|
|
391
|
-
rasa/dialogue_understanding/generator/command_generator.py,sha256=
|
|
392
|
-
rasa/dialogue_understanding/generator/command_parser.py,sha256=
|
|
393
|
+
rasa/dialogue_understanding/generator/command_generator.py,sha256=PdSkK2RkfcrqfDF9x74-pRlbF2VoVBAdXVBNi9m-w6o,9854
|
|
394
|
+
rasa/dialogue_understanding/generator/command_parser.py,sha256=HWLKJoXBOQVByk__rVbReJJ8u7au9Wit0MXvuHEAZHg,6422
|
|
393
395
|
rasa/dialogue_understanding/generator/constants.py,sha256=ntP5xmTlS3b_6uVT7LKvWzxbmf5_9tWZ5eFY1RLBtqU,716
|
|
394
396
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
395
397
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=wlGnMj17-X1-siQmdSvOd7K61sRzBf82MQEL2pqDQMI,17891
|
|
396
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
398
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=LemQlNE7-0kWbmmwEZHRxkJ2RN3EcJX2jCR5Y7-ean8,20443
|
|
397
399
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=QpNXhjB9ugtPV8XAHmKjbJtOiI1yE9rC2osbsI_A4ZY,2529
|
|
398
400
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
401
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
400
402
|
rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2,sha256=8l93_QBKBYnqLICVdiTu5ejZDE8F36BU8-qwba0px44,1927
|
|
401
|
-
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=
|
|
402
|
-
rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256
|
|
403
|
+
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=N31c0YtTRyYTC15ghpYDFoDtpCJN1Q1pvsYpD0js8OM,31357
|
|
404
|
+
rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=rWHnoxze2YllwnjSKF5EBvdW2gx6JNJIb807TpHDYoc,9472
|
|
403
405
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
|
-
rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2,sha256=
|
|
405
|
-
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=
|
|
406
|
+
rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2,sha256=Yoir5mhMr8LEOvwxkCYjiiWOIRigNx3RAC1YDxFrzG4,3890
|
|
407
|
+
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=GL5c1QCA-Ea5bCe0y4V8p5KnHMFXX_T76XD1LtfCLHw,15416
|
|
406
408
|
rasa/dialogue_understanding/generator/utils.py,sha256=fRACEJ2bEgEgSq90TUrQFLTrLqtJqtbb64mgAXklMQ4,1911
|
|
407
409
|
rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
410
|
rasa/dialogue_understanding/patterns/cancel.py,sha256=8D66Q7lPD6xcHoiTR90eU2DW6EFtRWFoItIMY9WYHig,3869
|
|
@@ -413,8 +415,9 @@ rasa/dialogue_understanding/patterns/code_change.py,sha256=B0MUxM6V5cM9wJgitzz9U
|
|
|
413
415
|
rasa/dialogue_understanding/patterns/collect_information.py,sha256=WwFfbDojpaLwACVyH0npL-1inWWBXHVgGgloWPjs0MM,3195
|
|
414
416
|
rasa/dialogue_understanding/patterns/completed.py,sha256=7qkyUj2d__2R3mpwWVmQpfwCCbJruBrjRZbmbDr3Zbo,1278
|
|
415
417
|
rasa/dialogue_understanding/patterns/continue_interrupted.py,sha256=OSTbe5l0B0ECNIYWpYB0pdzIeaqM3m3UZskNNjL5vrw,1682
|
|
416
|
-
rasa/dialogue_understanding/patterns/correction.py,sha256=
|
|
417
|
-
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=
|
|
418
|
+
rasa/dialogue_understanding/patterns/correction.py,sha256=fGr1Fpot5c0sm6BgPBy1nGwRTnntRVZcFGHlWT9YSng,11402
|
|
419
|
+
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=wuXnaqLvDr8Iv1yvPlOA8IBaa3ro2RJ8ZfM62i3WETI,11910
|
|
420
|
+
rasa/dialogue_understanding/patterns/handle_digressions.py,sha256=_6wNNLsGsGkjvzdnzS7vUoh0C5g0Dx9AHW-mC1XHQxU,3272
|
|
418
421
|
rasa/dialogue_understanding/patterns/human_handoff.py,sha256=1hkSdL6kui42rZc7zERZ9R7nLyvRHi_tHgNU7FyrhAQ,1132
|
|
419
422
|
rasa/dialogue_understanding/patterns/internal_error.py,sha256=APCKVv16M6mSQ4upu4UwG0yIaaKTyr7uB2yV8ZtpMzo,1609
|
|
420
423
|
rasa/dialogue_understanding/patterns/repeat.py,sha256=K7Ok3DGsB2mivA2AwaKfmDyagupSSySOo4oARx2eXm8,1152
|
|
@@ -424,7 +427,7 @@ rasa/dialogue_understanding/patterns/session_start.py,sha256=wKeCgrskRTxpafOASvo
|
|
|
424
427
|
rasa/dialogue_understanding/patterns/skip_question.py,sha256=fJ1MC0WEEtS-BpnGJEfJR31bg5XYIu5DFLM9DRs9PeQ,1215
|
|
425
428
|
rasa/dialogue_understanding/patterns/user_silence.py,sha256=xP-QMnd-MsybH5z4g01hBv4OLOHcw6m3rc26LQfe2zo,1140
|
|
426
429
|
rasa/dialogue_understanding/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
427
|
-
rasa/dialogue_understanding/processor/command_processor.py,sha256=
|
|
430
|
+
rasa/dialogue_understanding/processor/command_processor.py,sha256=KCiZhxxCf_V5zI6XsTzrKYXsKUSj_VEjrDVAAhe-VLA,29217
|
|
428
431
|
rasa/dialogue_understanding/processor/command_processor_component.py,sha256=9NWJxMibKeaOBLDRT9lcylJr0ki5sQ0hJRtLlKHIlnI,1526
|
|
429
432
|
rasa/dialogue_understanding/stack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
433
|
rasa/dialogue_understanding/stack/dialogue_stack.py,sha256=cYV6aQeh0EuOJHODDqK3biqXozYTX8baPgLwHhPxFqs,5244
|
|
@@ -435,7 +438,7 @@ rasa/dialogue_understanding/stack/frames/flow_stack_frame.py,sha256=827ppz6PKr1t
|
|
|
435
438
|
rasa/dialogue_understanding/stack/frames/pattern_frame.py,sha256=EVrYWv5dCP7XTvNV-HqtOOrseP-IkF0jD2_JacAvIYw,235
|
|
436
439
|
rasa/dialogue_understanding/stack/frames/search_frame.py,sha256=Eo6tSSbJpslKcs6DLu250NmtoKMe4bDHC8_ebx5sJ60,759
|
|
437
440
|
rasa/dialogue_understanding/stack/utils.py,sha256=FRdsnfHB-6ydCMGs7e6E9v-raOJSL4cy3FcenXK9GEU,7672
|
|
438
|
-
rasa/dialogue_understanding/utils.py,sha256=
|
|
441
|
+
rasa/dialogue_understanding/utils.py,sha256=s3Y-REFv2HKYGpPS8nCgISQh86SnQgaRA8KukeFSf9Y,5445
|
|
439
442
|
rasa/dialogue_understanding_test/README.md,sha256=xLiFhoRiX5EYos4DRj4bMXHWFz3MFFJqDO6gSvh73sY,15788
|
|
440
443
|
rasa/dialogue_understanding_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
444
|
rasa/dialogue_understanding_test/command_comparison.py,sha256=LvCZGgZVFpKjWqaZE5OqPClM5xDNdFZQ4FslvNerB7s,1812
|
|
@@ -448,7 +451,7 @@ rasa/dialogue_understanding_test/du_test_schema.yml,sha256=zgIhb6PE8LnoigVmv4NbU
|
|
|
448
451
|
rasa/dialogue_understanding_test/io.py,sha256=nXmauJp14yMPvKTCHbSnIgvd1u8B_piSCXwxYpfSvWQ,14656
|
|
449
452
|
rasa/dialogue_understanding_test/test_case_simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
450
453
|
rasa/dialogue_understanding_test/test_case_simulation/exception.py,sha256=RJV8CfoGKmfpC3d28y7IBKfmcAZSm2Vs6p0GkiCHlcc,1034
|
|
451
|
-
rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py,sha256=
|
|
454
|
+
rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py,sha256=vXsPTnGCyt6qOZ61vm4fvG45AUHTxEfurk4n2doIUrA,13002
|
|
452
455
|
rasa/dialogue_understanding_test/utils.py,sha256=YxaYvxlrMOBeS4PcpvVy5NIuN3-Pliq1kBhyvYVnABA,2438
|
|
453
456
|
rasa/dialogue_understanding_test/validation.py,sha256=JFsDIjdB-CNPKhRjBBNKzNoNq9nfnEtRC15YhG1AUg0,2701
|
|
454
457
|
rasa/e2e_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -613,23 +616,23 @@ rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
613
616
|
rasa/shared/constants.py,sha256=laDUtbKmCU5hboMl1D8l2myg9-Kdcr-7c-Rw-dv7DsA,11778
|
|
614
617
|
rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
615
618
|
rasa/shared/core/command_payload_reader.py,sha256=puHYsp9xbX0YQm2L1NDBItOFmdzI7AzmfGefgcHiCc0,3871
|
|
616
|
-
rasa/shared/core/constants.py,sha256=
|
|
619
|
+
rasa/shared/core/constants.py,sha256=xZBDEGucppgbXBlQyHDUVaeQmYkSIp0h2zvr4LblOE8,6420
|
|
617
620
|
rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1hG5c,1384
|
|
618
|
-
rasa/shared/core/domain.py,sha256=
|
|
619
|
-
rasa/shared/core/events.py,sha256=
|
|
621
|
+
rasa/shared/core/domain.py,sha256=4x6WtUWySd6APgcGTIvZ6PsEWULs3A9PsipG1gm_UhE,81309
|
|
622
|
+
rasa/shared/core/events.py,sha256=WNo5AeL9lMroIpznVfgyboBrIy9bIivYLJNxsP0POmE,84405
|
|
620
623
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
621
|
-
rasa/shared/core/flows/flow.py,sha256=
|
|
624
|
+
rasa/shared/core/flows/flow.py,sha256=ecbq-0BS7OVdIaWpDh8KIoxNZ3ZeNRiOt58tSWSvsCU,22409
|
|
622
625
|
rasa/shared/core/flows/flow_path.py,sha256=xstwahZBU5cfMY46mREA4NoOGlKLBRAqeP_mJ3UZqOI,2283
|
|
623
626
|
rasa/shared/core/flows/flow_step.py,sha256=ZvjXz1Fs5FR1_BlGBitOEYRnLhzk-bBYv1CC2Oi6iWQ,4537
|
|
624
627
|
rasa/shared/core/flows/flow_step_links.py,sha256=U9c4MFASieJGp_-XMhR0hrxFQISCJAF4TQ0wEy4IjB0,10530
|
|
625
628
|
rasa/shared/core/flows/flow_step_sequence.py,sha256=Rcw82OccjJsNc2wKXi6IePOIAPFRBTylSVphCRJCuc4,2362
|
|
626
629
|
rasa/shared/core/flows/flows_list.py,sha256=fnWzY-pI0SmNb6tsEnKIhfhzxFM35rPeKz_SkMw1fjw,8728
|
|
627
|
-
rasa/shared/core/flows/flows_yaml_schema.json,sha256=
|
|
630
|
+
rasa/shared/core/flows/flows_yaml_schema.json,sha256=B0fimz29OCsXAvs9_8ZmPCVcRLJLQzbpWPYAHCbnqO8,12389
|
|
628
631
|
rasa/shared/core/flows/nlu_trigger.py,sha256=GG6m5h6Z0jaukA5rPAHscnULgZGDjYMXfufX9nYQtzA,3907
|
|
629
632
|
rasa/shared/core/flows/steps/__init__.py,sha256=jvJp02o9_Wx-rZeQ3SYiLVMpO6ulS1yKuiiKg0ld_nE,655
|
|
630
633
|
rasa/shared/core/flows/steps/action.py,sha256=ctePK0izZudBQE_2wTPQL83T1QAZtaVNSD8mqHtulCQ,1730
|
|
631
634
|
rasa/shared/core/flows/steps/call.py,sha256=ZbJQpRVL8qzU-nS19aW4Hu3RvxemAYRLyNslmId4oww,1856
|
|
632
|
-
rasa/shared/core/flows/steps/collect.py,sha256=
|
|
635
|
+
rasa/shared/core/flows/steps/collect.py,sha256=XSIfmfzvFvB_QGkEdooBXIafrdGBGymzVrP15mupCis,4833
|
|
633
636
|
rasa/shared/core/flows/steps/constants.py,sha256=DCxrEUGbJciBknHm-_t4tmcnH19IZKP-WYxqix9gm7M,132
|
|
634
637
|
rasa/shared/core/flows/steps/continuation.py,sha256=5Rzayr80FsgS4bAajuRObVvVcLqPEh9nxGbT2te85xY,1498
|
|
635
638
|
rasa/shared/core/flows/steps/end.py,sha256=0XrPlQMVBnQKVeZs0or8P9IrVqG7i6RoSNDsVrvAeDk,749
|
|
@@ -638,13 +641,13 @@ rasa/shared/core/flows/steps/link.py,sha256=T6TE-LnfoGUrrPCmlZBLeXou2HGHmOVhu_zh
|
|
|
638
641
|
rasa/shared/core/flows/steps/no_operation.py,sha256=SKqNQ4usLZ4c-faSZOX41lpHBD8YtVe2eGDSt50H05s,1399
|
|
639
642
|
rasa/shared/core/flows/steps/set_slots.py,sha256=DudtHKXaVSNmQL_vXLvkK23_JqgTBU9RJrdQeBpC4s0,1492
|
|
640
643
|
rasa/shared/core/flows/steps/start.py,sha256=AJpKIm0S3GZYLEs3ybXW0Zrq03Pu9lvirNahiUy2I6k,1010
|
|
641
|
-
rasa/shared/core/flows/utils.py,sha256=
|
|
644
|
+
rasa/shared/core/flows/utils.py,sha256=yEKFjmaaIReWgN79Djlydsj6j5X9g5-RAN6Z7SCHf2w,2091
|
|
642
645
|
rasa/shared/core/flows/validation.py,sha256=XfyIzrT4G-zhBvmeiCt-Ug1xQ7pWddjqTt-1gUane4Q,27431
|
|
643
646
|
rasa/shared/core/flows/yaml_flows_io.py,sha256=85ln95jpkh7ZqDl1cheFa8Q21gnadLjWrW8ADmQlrUQ,14385
|
|
644
647
|
rasa/shared/core/generator.py,sha256=UAuBPu5UjUhL9djVK-PvrWZcNhRACOEgnRsTleV7eeY,35686
|
|
645
|
-
rasa/shared/core/slot_mappings.py,sha256=
|
|
646
|
-
rasa/shared/core/slots.py,sha256=
|
|
647
|
-
rasa/shared/core/trackers.py,sha256=
|
|
648
|
+
rasa/shared/core/slot_mappings.py,sha256=KMuf4C4QZCEka7mNZAMJE9nzUJKWr-trPo4qAHmWgq0,17878
|
|
649
|
+
rasa/shared/core/slots.py,sha256=MU6bnrlinMbl12BUmMzb2Hd-QmMR3UpChzLtaZ_X3iM,24525
|
|
650
|
+
rasa/shared/core/trackers.py,sha256=P9Jy8T_WnVY4m_Y1-hKHEeSPU3MKALhUuqIqXbLLgw0,42513
|
|
648
651
|
rasa/shared/core/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
649
652
|
rasa/shared/core/training_data/loading.py,sha256=RCx1uTI9iDejFI_sWg3qPzhjln7-hu78f3EDAT6K0No,2894
|
|
650
653
|
rasa/shared/core/training_data/story_reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -668,7 +671,7 @@ rasa/shared/importers/rasa.py,sha256=04ohlwnqllfFDJPcmE32SkMNg1TMKwKnsfNlzeGJWUc
|
|
|
668
671
|
rasa/shared/importers/remote_importer.py,sha256=fKLQskaCVPpD5cCMQ9sR71cZZlSIP-SSv3J3o2kra2w,7696
|
|
669
672
|
rasa/shared/importers/utils.py,sha256=NcVgGTc_wnIXhsTjielimDXhO2zg3_qV1w_vBpyENJo,1289
|
|
670
673
|
rasa/shared/nlu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
671
|
-
rasa/shared/nlu/constants.py,sha256=
|
|
674
|
+
rasa/shared/nlu/constants.py,sha256=thkzb8G2dDFLpF1BTPOLY_qUGE5llhPPG9NwpuTffzw,1969
|
|
672
675
|
rasa/shared/nlu/interpreter.py,sha256=eCNJp61nQYTGVf4aJi8SCWb46jxZY6-C1M1LFxMyQTM,188
|
|
673
676
|
rasa/shared/nlu/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
674
677
|
rasa/shared/nlu/training_data/entities_parser.py,sha256=YbPxz8y-o4zwkPAj7V9ohG8eJ600xxERfzckI1rc_kM,6729
|
|
@@ -715,7 +718,7 @@ rasa/shared/providers/embedding/huggingface_local_embedding_client.py,sha256=Zo3
|
|
|
715
718
|
rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=Y5XNwWl1kxoOLs8ZMY3nhPn__XSPOeg8ED-dQQuegF4,4517
|
|
716
719
|
rasa/shared/providers/embedding/openai_embedding_client.py,sha256=XNRGE7apo2v3kWRrtgxE-Gq4rvNko3IiXtvgC4krDYE,5429
|
|
717
720
|
rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
718
|
-
rasa/shared/providers/llm/_base_litellm_client.py,sha256=
|
|
721
|
+
rasa/shared/providers/llm/_base_litellm_client.py,sha256=Kwa8s96g5AijiKiOO9-UKaLWYJ4iHEuyepsc5ZkTEP4,10004
|
|
719
722
|
rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=HBm5f_bPwOXP2N-zEMfnhAdMQxDHGHp8JKC62gnj4mg,12976
|
|
720
723
|
rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=Gu9l-RNaKXAUsEmG8DIIGSPHtW9vMEyVNWvOVADiJcU,3940
|
|
721
724
|
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=hPYGMZUUjpnRCFNvHSSuaKK_OxHV2spr9eItkwYYnBI,6816
|
|
@@ -737,11 +740,11 @@ rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i
|
|
|
737
740
|
rasa/shared/utils/health_check/health_check.py,sha256=izixrbc9BxFSsjzwoIw9U0w0VKSX5gMwhey8bcwe1wc,9709
|
|
738
741
|
rasa/shared/utils/health_check/llm_health_check_mixin.py,sha256=ANP5Q68TRX8p4wWkRCAISsWBV1iYYeGnqWILnR1NawE,957
|
|
739
742
|
rasa/shared/utils/io.py,sha256=AhuECoXGO367NvWRCBu99utEtTQnyxWVJyKOOpLePpg,15917
|
|
740
|
-
rasa/shared/utils/llm.py,sha256=
|
|
743
|
+
rasa/shared/utils/llm.py,sha256=6mfcRdKZVvB7JLVN_2oj6tnIgPfiPqQ2hYnTyK8mwP4,25545
|
|
741
744
|
rasa/shared/utils/pykwalify_extensions.py,sha256=36vfuD9gSreZvMIZ_qIPpykXhYGuZu2BpoEMVX50Is4,883
|
|
742
745
|
rasa/shared/utils/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
743
746
|
rasa/shared/utils/schemas/config.yml,sha256=czxSADw9hOIZdhvFP8pVUQo810hs9_C8ZGfCPx17taM,27
|
|
744
|
-
rasa/shared/utils/schemas/domain.yml,sha256=
|
|
747
|
+
rasa/shared/utils/schemas/domain.yml,sha256=_ckbr3-TCvznZy6dd1nehXNKzREBh6Dc_Lg43lbxvXM,3380
|
|
745
748
|
rasa/shared/utils/schemas/events.py,sha256=T8kSex2UpgmToqib6KyrgNYBK5WS8OwqdO4Jv-TEJ4I,6913
|
|
746
749
|
rasa/shared/utils/schemas/model_config.yml,sha256=OravyVWalSwjiXYRarRzg0tiRnUFHe1q4-5Wj1TEeFk,811
|
|
747
750
|
rasa/shared/utils/schemas/stories.yml,sha256=DV3wAFnv1leD7kV-FH-GQihF1QX5oKHc8Eb24mxjizc,4737
|
|
@@ -800,10 +803,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
|
|
|
800
803
|
rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,21259
|
|
801
804
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
802
805
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
803
|
-
rasa/validator.py,sha256=
|
|
804
|
-
rasa/version.py,sha256=
|
|
805
|
-
rasa_pro-3.12.0.
|
|
806
|
-
rasa_pro-3.12.0.
|
|
807
|
-
rasa_pro-3.12.0.
|
|
808
|
-
rasa_pro-3.12.0.
|
|
809
|
-
rasa_pro-3.12.0.
|
|
806
|
+
rasa/validator.py,sha256=A6x86Aoy8AMFExCtE2vIiSslKmq9Gy3P8hnBIMSmJck,74238
|
|
807
|
+
rasa/version.py,sha256=XpIqZFIXLxXfl6sqeRKHu2PSOL7K5K7qkZGDHzxRns4,123
|
|
808
|
+
rasa_pro-3.12.0.dev10.dist-info/METADATA,sha256=V3jxLZZvibms6_gunHXX6Zhd9-i_-Dcm21puvU5Pjdo,10731
|
|
809
|
+
rasa_pro-3.12.0.dev10.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
810
|
+
rasa_pro-3.12.0.dev10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
811
|
+
rasa_pro-3.12.0.dev10.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
812
|
+
rasa_pro-3.12.0.dev10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|