rasa-pro 3.12.0.dev10__py3-none-any.whl → 3.12.0.dev11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rasa-pro might be problematic. Click here for more details.
- rasa/cli/inspect.py +20 -1
- rasa/cli/shell.py +3 -3
- rasa/core/actions/action.py +5 -6
- rasa/core/actions/forms.py +6 -3
- rasa/core/channels/__init__.py +2 -0
- rasa/core/channels/voice_stream/browser_audio.py +1 -0
- rasa/core/channels/voice_stream/call_state.py +7 -1
- rasa/core/channels/voice_stream/genesys.py +331 -0
- rasa/core/channels/voice_stream/tts/cartesia.py +16 -3
- rasa/core/channels/voice_stream/twilio_media_streams.py +2 -1
- rasa/core/channels/voice_stream/voice_channel.py +2 -1
- rasa/core/policies/flows/flow_executor.py +3 -41
- rasa/core/run.py +4 -3
- rasa/dialogue_understanding/generator/command_generator.py +104 -1
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +40 -6
- rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +1 -1
- rasa/dialogue_understanding/generator/nlu_command_adapter.py +41 -2
- rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +1 -1
- rasa/dialogue_understanding/generator/utils.py +32 -1
- rasa/dialogue_understanding/processor/command_processor.py +10 -12
- rasa/dialogue_understanding_test/README.md +50 -0
- rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py +3 -3
- rasa/model_service.py +4 -0
- rasa/model_training.py +24 -27
- rasa/shared/core/constants.py +6 -2
- rasa/shared/core/domain.py +11 -20
- rasa/shared/core/slot_mappings.py +143 -107
- rasa/shared/core/slots.py +4 -2
- rasa/telemetry.py +43 -13
- rasa/utils/common.py +0 -1
- rasa/validator.py +31 -74
- rasa/version.py +1 -1
- {rasa_pro-3.12.0.dev10.dist-info → rasa_pro-3.12.0.dev11.dist-info}/METADATA +1 -1
- {rasa_pro-3.12.0.dev10.dist-info → rasa_pro-3.12.0.dev11.dist-info}/RECORD +37 -36
- {rasa_pro-3.12.0.dev10.dist-info → rasa_pro-3.12.0.dev11.dist-info}/NOTICE +0 -0
- {rasa_pro-3.12.0.dev10.dist-info → rasa_pro-3.12.0.dev11.dist-info}/WHEEL +0 -0
- {rasa_pro-3.12.0.dev10.dist-info → rasa_pro-3.12.0.dev11.dist-info}/entry_points.txt +0 -0
rasa/validator.py
CHANGED
|
@@ -35,10 +35,7 @@ from rasa.shared.core.command_payload_reader import (
|
|
|
35
35
|
CommandPayloadReader,
|
|
36
36
|
)
|
|
37
37
|
from rasa.shared.core.constants import (
|
|
38
|
-
ACTIVE_LOOP,
|
|
39
38
|
KEY_ALLOW_NLU_CORRECTION,
|
|
40
|
-
KEY_MAPPING_TYPE,
|
|
41
|
-
MAPPING_CONDITIONS,
|
|
42
39
|
SlotMappingType,
|
|
43
40
|
)
|
|
44
41
|
from rasa.shared.core.domain import (
|
|
@@ -520,9 +517,9 @@ class Validator:
|
|
|
520
517
|
|
|
521
518
|
for slot in self.domain.slots:
|
|
522
519
|
for mapping in slot.mappings:
|
|
523
|
-
for condition in mapping.
|
|
524
|
-
condition_active_loop = condition.
|
|
525
|
-
mapping_type =
|
|
520
|
+
for condition in mapping.conditions:
|
|
521
|
+
condition_active_loop = condition.active_loop
|
|
522
|
+
mapping_type = mapping.type
|
|
526
523
|
if (
|
|
527
524
|
condition_active_loop
|
|
528
525
|
and condition_active_loop not in self.domain.form_names
|
|
@@ -1395,28 +1392,14 @@ class Validator:
|
|
|
1395
1392
|
|
|
1396
1393
|
for slot in self.domain._user_slots:
|
|
1397
1394
|
nlu_mappings = any(
|
|
1398
|
-
[
|
|
1399
|
-
SlotMappingType(
|
|
1400
|
-
mapping.get(KEY_MAPPING_TYPE, SlotMappingType.FROM_LLM.value)
|
|
1401
|
-
).is_predefined_type()
|
|
1402
|
-
for mapping in slot.mappings
|
|
1403
|
-
]
|
|
1395
|
+
[mapping.type.is_predefined_type() for mapping in slot.mappings]
|
|
1404
1396
|
)
|
|
1405
1397
|
llm_mappings = any(
|
|
1406
|
-
[
|
|
1407
|
-
SlotMappingType(
|
|
1408
|
-
mapping.get(KEY_MAPPING_TYPE, SlotMappingType.FROM_LLM.value)
|
|
1409
|
-
)
|
|
1410
|
-
== SlotMappingType.FROM_LLM
|
|
1411
|
-
for mapping in slot.mappings
|
|
1412
|
-
]
|
|
1398
|
+
[mapping.type == SlotMappingType.FROM_LLM for mapping in slot.mappings]
|
|
1413
1399
|
)
|
|
1414
|
-
|
|
1400
|
+
controlled_mappings = any(
|
|
1415
1401
|
[
|
|
1416
|
-
SlotMappingType
|
|
1417
|
-
mapping.get(KEY_MAPPING_TYPE, SlotMappingType.FROM_LLM.value)
|
|
1418
|
-
)
|
|
1419
|
-
== SlotMappingType.CUSTOM
|
|
1402
|
+
mapping.type == SlotMappingType.CONTROLLED
|
|
1420
1403
|
for mapping in slot.mappings
|
|
1421
1404
|
]
|
|
1422
1405
|
)
|
|
@@ -1424,7 +1407,7 @@ class Validator:
|
|
|
1424
1407
|
all_good = self._allow_nlu_correction_is_valid(slot, nlu_mappings, all_good)
|
|
1425
1408
|
|
|
1426
1409
|
all_good = self._custom_action_name_is_defined_in_the_domain(
|
|
1427
|
-
|
|
1410
|
+
controlled_mappings, slot, all_good
|
|
1428
1411
|
)
|
|
1429
1412
|
|
|
1430
1413
|
all_good = self._config_contains_nlu_command_adapter(
|
|
@@ -1448,11 +1431,8 @@ class Validator:
|
|
|
1448
1431
|
invalid_usage = False
|
|
1449
1432
|
|
|
1450
1433
|
for mapping in slot.mappings:
|
|
1451
|
-
allow_nlu_correction = mapping.
|
|
1452
|
-
if
|
|
1453
|
-
allow_nlu_correction
|
|
1454
|
-
and mapping.get(KEY_MAPPING_TYPE) != SlotMappingType.FROM_LLM.value
|
|
1455
|
-
):
|
|
1434
|
+
allow_nlu_correction = mapping.allow_nlu_correction
|
|
1435
|
+
if allow_nlu_correction and mapping.type != SlotMappingType.FROM_LLM:
|
|
1456
1436
|
invalid_usage = True
|
|
1457
1437
|
|
|
1458
1438
|
if allow_nlu_correction and not nlu_mappings:
|
|
@@ -1487,55 +1467,32 @@ class Validator:
|
|
|
1487
1467
|
|
|
1488
1468
|
def _custom_action_name_is_defined_in_the_domain(
|
|
1489
1469
|
self,
|
|
1490
|
-
|
|
1470
|
+
controlled_mappings: bool,
|
|
1491
1471
|
slot: Slot,
|
|
1492
1472
|
all_good: bool,
|
|
1493
1473
|
) -> bool:
|
|
1494
|
-
if not
|
|
1495
|
-
return all_good
|
|
1496
|
-
|
|
1497
|
-
if not self.flows:
|
|
1498
|
-
return all_good
|
|
1499
|
-
|
|
1500
|
-
is_custom_action_defined = any(
|
|
1501
|
-
[
|
|
1502
|
-
mapping.get("action") is not None
|
|
1503
|
-
and mapping.get("action") in self.domain.action_names_or_texts
|
|
1504
|
-
for mapping in slot.mappings
|
|
1505
|
-
]
|
|
1506
|
-
)
|
|
1507
|
-
|
|
1508
|
-
if is_custom_action_defined:
|
|
1509
|
-
return all_good
|
|
1510
|
-
|
|
1511
|
-
slot_collected_by_flows = any(
|
|
1512
|
-
[
|
|
1513
|
-
step.collect == slot.name
|
|
1514
|
-
for flow in self.flows.underlying_flows
|
|
1515
|
-
for step in flow.steps
|
|
1516
|
-
if isinstance(step, CollectInformationFlowStep)
|
|
1517
|
-
]
|
|
1518
|
-
)
|
|
1519
|
-
|
|
1520
|
-
if not slot_collected_by_flows:
|
|
1521
|
-
# if the slot is not collected by any flow,
|
|
1522
|
-
# it could be a DM1 custom slot
|
|
1474
|
+
if not controlled_mappings:
|
|
1523
1475
|
return all_good
|
|
1524
1476
|
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1477
|
+
for mapping in slot.mappings:
|
|
1478
|
+
if (
|
|
1479
|
+
mapping.run_action_every_turn is not None
|
|
1480
|
+
and mapping.run_action_every_turn
|
|
1481
|
+
not in self.domain.action_names_or_texts
|
|
1482
|
+
):
|
|
1483
|
+
structlogger.error(
|
|
1484
|
+
"validator.validate_slot_mappings_in_CALM.custom_action_not_in_domain",
|
|
1485
|
+
slot_name=slot.name,
|
|
1486
|
+
action_name=mapping.run_action_every_turn,
|
|
1487
|
+
event_info=(
|
|
1488
|
+
f"The slot '{slot.name}' has a custom action "
|
|
1489
|
+
f"'{mapping.run_action_every_turn}' "
|
|
1490
|
+
f"defined in its slot mappings, "
|
|
1491
|
+
f"but the action is not listed in the domain actions. "
|
|
1492
|
+
f"Please add the action to your domain file."
|
|
1493
|
+
),
|
|
1494
|
+
)
|
|
1495
|
+
all_good = False
|
|
1539
1496
|
|
|
1540
1497
|
return all_good
|
|
1541
1498
|
|
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.dev11
|
|
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
|
|
@@ -27,7 +27,7 @@ rasa/cli/dialogue_understanding_test.py,sha256=IacPnkRfrO_oBHcIZG7t-FI2aGScZpkR9
|
|
|
27
27
|
rasa/cli/e2e_test.py,sha256=guHIeX7qPwv8db4j9zsDG7MQbfUq92xO51u0iOR3eqw,8359
|
|
28
28
|
rasa/cli/evaluate.py,sha256=104vTMKNQPhuEUm5n1OMVxH4qywaZx14kE_5ULGNMbg,7946
|
|
29
29
|
rasa/cli/export.py,sha256=vohrKZpUrNVXE2xZM3V-IgWc6UsWUoUl-5tRXSg6Nag,8203
|
|
30
|
-
rasa/cli/inspect.py,sha256=
|
|
30
|
+
rasa/cli/inspect.py,sha256=ZEBd773v_XWgDbghisjGzieKcO0lL2zJOSsmslQAIWo,3295
|
|
31
31
|
rasa/cli/interactive.py,sha256=_PwvTLF9Sozt0xzDo4W_zYs3SBCoDcxuGDDumD-JtUo,6012
|
|
32
32
|
rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
|
|
33
33
|
rasa/cli/llm_fine_tuning.py,sha256=cT9Vgmpsjoyoj1sJjcini47bdyoTnr9xzFKyrpRwpOQ,13670
|
|
@@ -78,7 +78,7 @@ rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczz
|
|
|
78
78
|
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=HgnwIyGcWoMZGtQr9jFTzmlkAct8U9c3ueeLtshtH3I,1780
|
|
79
79
|
rasa/cli/run.py,sha256=Mowl-DC8IvWs2mxQm462TtJd3hKf_2eb6SKSF7WpgFg,4517
|
|
80
80
|
rasa/cli/scaffold.py,sha256=9fnDvyXDT6OuNqvKUdiUOnr5VMmVLcv4l_D9p0axiJ4,8066
|
|
81
|
-
rasa/cli/shell.py,sha256=
|
|
81
|
+
rasa/cli/shell.py,sha256=YTXn3_iDWJySY187BEJTRDxPoG-mqRtl17jqwqQ6hX4,4332
|
|
82
82
|
rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
83
|
rasa/cli/studio/download.py,sha256=rd_YtbJXOVJZo-U4A-Gz2Uk_c_wlwe4B69XgYYRf1Dk,1831
|
|
84
84
|
rasa/cli/studio/studio.py,sha256=nCdntJCm3YqcCA7_K87XNhZh7L2z0fiF8pP9J4GB2C8,9003
|
|
@@ -93,7 +93,7 @@ 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=wvwPooCrDadxVxCsshhp0eomyYEV_agd9tVgGplFFKc,46813
|
|
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
|
|
@@ -107,7 +107,7 @@ rasa/core/actions/constants.py,sha256=gfgdWmj-OJ5xTcTAS1OcXQ3dgcTiHO98NC-SGyKlTj
|
|
|
107
107
|
rasa/core/actions/custom_action_executor.py,sha256=qafASBdM3-hByDqbkNxgXfx5yMSsJh_nB3B7x9ye0TY,6176
|
|
108
108
|
rasa/core/actions/direct_custom_actions_executor.py,sha256=IzxRnPF92zs3WX-p9DoFq51Vf0QwfE6prB_AlyEEllc,3746
|
|
109
109
|
rasa/core/actions/e2e_stub_custom_action_executor.py,sha256=D-kECC1QjVLv4owNxstW2xJPPsXTGfGepvquMeWB_ec,2282
|
|
110
|
-
rasa/core/actions/forms.py,sha256=
|
|
110
|
+
rasa/core/actions/forms.py,sha256=MPGxp3vg-EgFcU5UQYqWM2tycSFIuoF6vWvNSSWPhSA,26967
|
|
111
111
|
rasa/core/actions/grpc_custom_action_executor.py,sha256=EDxdSIDA4H4Mu-QZk-pPGV2N41ZsbY8W9laV6l1WlDQ,9103
|
|
112
112
|
rasa/core/actions/http_custom_action_executor.py,sha256=oC5OM-p11wHOXXVl7vrTUjhwI6JZh5qCaQpWtl0I0WE,5434
|
|
113
113
|
rasa/core/actions/loops.py,sha256=3-kt_Sn_Y05PLYoYMsnuIn9e5mxYp31DJIx2omqy0dU,3531
|
|
@@ -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=0RfCaWUB6b8qyb1VYRhtK3I2ZW95Vqtm6QT-FdLnjGo,2374
|
|
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
|
|
@@ -280,16 +280,17 @@ rasa/core/channels/voice_stream/asr/asr_event.py,sha256=QDn8OdeQ-7uBedT6Eqvs8wyR
|
|
|
280
280
|
rasa/core/channels/voice_stream/asr/azure.py,sha256=_cnljBWxRlZBrWAyTbibTPGqsabQ1sLq_tf-DOSnvM0,5334
|
|
281
281
|
rasa/core/channels/voice_stream/asr/deepgram.py,sha256=TUJr0CuxRka7wCmHlMb9bcOOyOWlRwSFI98VxJXtvzw,5128
|
|
282
282
|
rasa/core/channels/voice_stream/audio_bytes.py,sha256=3V0QQplPD-kVfebaaeVcKgV7pwIJyjnTenujVD3y3sY,340
|
|
283
|
-
rasa/core/channels/voice_stream/browser_audio.py,sha256=
|
|
284
|
-
rasa/core/channels/voice_stream/call_state.py,sha256=
|
|
283
|
+
rasa/core/channels/voice_stream/browser_audio.py,sha256=1Nbs73NJJINX57ujz70dj7-tXDmnHQBxQfG65pmYSWg,3807
|
|
284
|
+
rasa/core/channels/voice_stream/call_state.py,sha256=RVIA7KW1uiN8hzRQWnrb-mJgKMGEVOO9Q62ieng9Y-Y,1025
|
|
285
|
+
rasa/core/channels/voice_stream/genesys.py,sha256=tEegv-q1fRTUcneNZVyxZHW1SGHv91Yr5fDQ4AAjGSM,12651
|
|
285
286
|
rasa/core/channels/voice_stream/tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
286
287
|
rasa/core/channels/voice_stream/tts/azure.py,sha256=l1IWk2XbkBxDgaR3oAMr4J5J8mlfFRKVn-35ptHlQmQ,4014
|
|
287
|
-
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=
|
|
288
|
+
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=YSObRe_HMXFbNFwLZVvJ38lgGvVYk6wUcMXGh698kYg,5053
|
|
288
289
|
rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFSkuTIqLvho--Yt0litb4,850
|
|
289
290
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
|
|
290
|
-
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=
|
|
291
|
+
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=MA2cWls1Q3hAdLA5ybgqZ7kkG-P5PVeUjg18q8ZdVfY,6403
|
|
291
292
|
rasa/core/channels/voice_stream/util.py,sha256=d0Tl0tGAnVj3SgGovsUMHx-QL44nrPI29OTYKYleH0U,1987
|
|
292
|
-
rasa/core/channels/voice_stream/voice_channel.py,sha256=
|
|
293
|
+
rasa/core/channels/voice_stream/voice_channel.py,sha256=4Jfj0_j_ND9n3Eu0PVv4pzPtLj5kiIKOCepnOJ32mJY,16440
|
|
293
294
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
294
295
|
rasa/core/concurrent_lock_store.py,sha256=ycd-aeJJWXIokMRimCdQFHdwuMfl512hZSUHE8oSd2c,7722
|
|
295
296
|
rasa/core/constants.py,sha256=TqXFvenIWNf_7D0U462q0ltRD4MKzUGXiTWjHvxpFPs,3974
|
|
@@ -330,7 +331,7 @@ rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256
|
|
|
330
331
|
rasa/core/policies/flow_policy.py,sha256=597G62hrLF_CAMCvu-TPRldFnjMP2XEIkhcIaPWcQAc,7489
|
|
331
332
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
333
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
333
|
-
rasa/core/policies/flows/flow_executor.py,sha256=
|
|
334
|
+
rasa/core/policies/flows/flow_executor.py,sha256=3TzoilFVubY5zMvPlEU8gy2ffaLVODLymDeUUBPO9qI,26661
|
|
334
335
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
335
336
|
rasa/core/policies/intentless_policy.py,sha256=p9e54sSjTOGAFxLbPdF0jspQNETmtBvg-RXQNPviIbE,37898
|
|
336
337
|
rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
|
|
@@ -340,7 +341,7 @@ rasa/core/policies/rule_policy.py,sha256=EItfUn07JIBLRIbriPKDprsvWq_-xzZTGrlTS2e
|
|
|
340
341
|
rasa/core/policies/ted_policy.py,sha256=0RzIuyrtt4PxLcqQ-bfaExkZvU-TnsMbgmDcwh2SakY,87710
|
|
341
342
|
rasa/core/policies/unexpected_intent_policy.py,sha256=ZXvbswf2NDy00kHmBQcyXa1OVYFyc79HQKrFkQ4gCfM,39609
|
|
342
343
|
rasa/core/processor.py,sha256=ZF0T1GLl2AblIPkSuvFlluj58al5Znc02LEzS4XDE80,56737
|
|
343
|
-
rasa/core/run.py,sha256=
|
|
344
|
+
rasa/core/run.py,sha256=5qq1Z-GiIrFejsthOnnkhQtNiqccuYHYf8ixP49PSHk,11484
|
|
344
345
|
rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
346
|
rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
|
|
346
347
|
rasa/core/secrets_manager/endpoints.py,sha256=4b7KXB9amdF23eYGsx8215bOjE5-TQ73qD2hdI8Sm9c,12662
|
|
@@ -390,22 +391,22 @@ rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1
|
|
|
390
391
|
rasa/dialogue_understanding/commands/utils.py,sha256=vz3fNF31cCIUoWQ6HP6_nI4E30MBFIfacCZb6QKx634,1748
|
|
391
392
|
rasa/dialogue_understanding/constants.py,sha256=_kB0edGV23uvhujlF193N2jk6YG0R6LC599YDX5B5vo,129
|
|
392
393
|
rasa/dialogue_understanding/generator/__init__.py,sha256=Ykeb2wQ1DuiUWAWO0hLIPSTK1_Ktiq9DZXF6D3ugN78,764
|
|
393
|
-
rasa/dialogue_understanding/generator/command_generator.py,sha256=
|
|
394
|
+
rasa/dialogue_understanding/generator/command_generator.py,sha256=QvYHF3w_WgyItMySUtf0B2Qmb_7SEOLONmQXdLseIt8,13184
|
|
394
395
|
rasa/dialogue_understanding/generator/command_parser.py,sha256=HWLKJoXBOQVByk__rVbReJJ8u7au9Wit0MXvuHEAZHg,6422
|
|
395
396
|
rasa/dialogue_understanding/generator/constants.py,sha256=ntP5xmTlS3b_6uVT7LKvWzxbmf5_9tWZ5eFY1RLBtqU,716
|
|
396
397
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
397
398
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=wlGnMj17-X1-siQmdSvOd7K61sRzBf82MQEL2pqDQMI,17891
|
|
398
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
399
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=6FlWAGSB6ux4C2U5-rLMPisaxUuW50sJzk8I0JOaPoI,21710
|
|
399
400
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=QpNXhjB9ugtPV8XAHmKjbJtOiI1yE9rC2osbsI_A4ZY,2529
|
|
400
401
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
402
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
402
403
|
rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2,sha256=8l93_QBKBYnqLICVdiTu5ejZDE8F36BU8-qwba0px44,1927
|
|
403
|
-
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=
|
|
404
|
-
rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=
|
|
404
|
+
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=5BAld7XPOTxOEe3Big-BUoEJw6CI8YQtPkzd_rKBF8o,31386
|
|
405
|
+
rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=28QdoZ330DL5X-SdUQASjsmyf9KIY3GGHbrl2xEeZMU,10868
|
|
405
406
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
406
407
|
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=
|
|
408
|
-
rasa/dialogue_understanding/generator/utils.py,sha256=
|
|
408
|
+
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=QWEDzH6ZhX7jBmzzDy6m5AC9LcDe46_7kVeUxtakyIU,15445
|
|
409
|
+
rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
|
|
409
410
|
rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
411
|
rasa/dialogue_understanding/patterns/cancel.py,sha256=8D66Q7lPD6xcHoiTR90eU2DW6EFtRWFoItIMY9WYHig,3869
|
|
411
412
|
rasa/dialogue_understanding/patterns/cannot_handle.py,sha256=xLzz2tBmLZ7N9rvSOyl_gxDJPLu5qSjWBYEvmkXJxek,1407
|
|
@@ -427,7 +428,7 @@ rasa/dialogue_understanding/patterns/session_start.py,sha256=wKeCgrskRTxpafOASvo
|
|
|
427
428
|
rasa/dialogue_understanding/patterns/skip_question.py,sha256=fJ1MC0WEEtS-BpnGJEfJR31bg5XYIu5DFLM9DRs9PeQ,1215
|
|
428
429
|
rasa/dialogue_understanding/patterns/user_silence.py,sha256=xP-QMnd-MsybH5z4g01hBv4OLOHcw6m3rc26LQfe2zo,1140
|
|
429
430
|
rasa/dialogue_understanding/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
|
-
rasa/dialogue_understanding/processor/command_processor.py,sha256=
|
|
431
|
+
rasa/dialogue_understanding/processor/command_processor.py,sha256=dBNsFFm3fasHdlO_bMTuXkcnUKTMRO9kGyPHe7SgSDs,29119
|
|
431
432
|
rasa/dialogue_understanding/processor/command_processor_component.py,sha256=9NWJxMibKeaOBLDRT9lcylJr0ki5sQ0hJRtLlKHIlnI,1526
|
|
432
433
|
rasa/dialogue_understanding/stack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
433
434
|
rasa/dialogue_understanding/stack/dialogue_stack.py,sha256=cYV6aQeh0EuOJHODDqK3biqXozYTX8baPgLwHhPxFqs,5244
|
|
@@ -439,7 +440,7 @@ rasa/dialogue_understanding/stack/frames/pattern_frame.py,sha256=EVrYWv5dCP7XTvN
|
|
|
439
440
|
rasa/dialogue_understanding/stack/frames/search_frame.py,sha256=Eo6tSSbJpslKcs6DLu250NmtoKMe4bDHC8_ebx5sJ60,759
|
|
440
441
|
rasa/dialogue_understanding/stack/utils.py,sha256=FRdsnfHB-6ydCMGs7e6E9v-raOJSL4cy3FcenXK9GEU,7672
|
|
441
442
|
rasa/dialogue_understanding/utils.py,sha256=s3Y-REFv2HKYGpPS8nCgISQh86SnQgaRA8KukeFSf9Y,5445
|
|
442
|
-
rasa/dialogue_understanding_test/README.md,sha256=
|
|
443
|
+
rasa/dialogue_understanding_test/README.md,sha256=klUCq_FYd0MkIeyxlwYCfsB9EEsSmXUpTTDTxdR7EPc,17764
|
|
443
444
|
rasa/dialogue_understanding_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
445
|
rasa/dialogue_understanding_test/command_comparison.py,sha256=LvCZGgZVFpKjWqaZE5OqPClM5xDNdFZQ4FslvNerB7s,1812
|
|
445
446
|
rasa/dialogue_understanding_test/command_metric_calculation.py,sha256=ys1BobRxqEhsfKk5Op9OB_IXUIsGGSiK6ox8246W-9E,3889
|
|
@@ -451,7 +452,7 @@ rasa/dialogue_understanding_test/du_test_schema.yml,sha256=zgIhb6PE8LnoigVmv4NbU
|
|
|
451
452
|
rasa/dialogue_understanding_test/io.py,sha256=nXmauJp14yMPvKTCHbSnIgvd1u8B_piSCXwxYpfSvWQ,14656
|
|
452
453
|
rasa/dialogue_understanding_test/test_case_simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
453
454
|
rasa/dialogue_understanding_test/test_case_simulation/exception.py,sha256=RJV8CfoGKmfpC3d28y7IBKfmcAZSm2Vs6p0GkiCHlcc,1034
|
|
454
|
-
rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py,sha256=
|
|
455
|
+
rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py,sha256=ypRPY3ua5wRrIDfXF1hSBsJzAXpu8qlQP9fR9Neb3jY,12965
|
|
455
456
|
rasa/dialogue_understanding_test/utils.py,sha256=YxaYvxlrMOBeS4PcpvVy5NIuN3-Pliq1kBhyvYVnABA,2438
|
|
456
457
|
rasa/dialogue_understanding_test/validation.py,sha256=JFsDIjdB-CNPKhRjBBNKzNoNq9nfnEtRC15YhG1AUg0,2701
|
|
457
458
|
rasa/e2e_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -549,9 +550,9 @@ rasa/model_manager/studio_jwt_auth.py,sha256=uls2QiHUlUrR3fOzZssW4UaAMJMfnPMZeV1
|
|
|
549
550
|
rasa/model_manager/trainer_service.py,sha256=kz6OJlFJvfic4wLBChOKe1O0ysBx2rozL1mEALZwvg0,10320
|
|
550
551
|
rasa/model_manager/utils.py,sha256=rS0ST-rJMuZOna90r_Ioz7gOkZ8r8vm4XAhzI0iUZOA,2643
|
|
551
552
|
rasa/model_manager/warm_rasa_process.py,sha256=LkP0zMDTFzHrvP8RkbYzEW89Ri_RxE14ikWy35FBj74,5888
|
|
552
|
-
rasa/model_service.py,sha256=
|
|
553
|
+
rasa/model_service.py,sha256=rRdzQvpiJ4D6GUneEk6uGPqaIm_1RD-xCJDDLroj14I,3844
|
|
553
554
|
rasa/model_testing.py,sha256=eZw7l8Zz3HkH_ZPBurY93HzzudHdoQn8HBnDdZSysAY,14929
|
|
554
|
-
rasa/model_training.py,sha256=
|
|
555
|
+
rasa/model_training.py,sha256=0lDRZjpjKdk-Yo6LenQ34hB7V2qWgp-GfAT3lQyoTqE,21468
|
|
555
556
|
rasa/nlu/__init__.py,sha256=D0IYuTK_ZQ_F_9xsy0bXxVCAtU62Fzvp8S7J9tmfI_c,123
|
|
556
557
|
rasa/nlu/classifiers/__init__.py,sha256=Qvrf7_rfiMxm2Vt2fClb56R3QFExf7WPdFdL-AOvgsk,118
|
|
557
558
|
rasa/nlu/classifiers/classifier.py,sha256=9fm1mORuFf1vowYIXmqE9yLRKdSC4nGQW7UqNZQipKY,133
|
|
@@ -616,9 +617,9 @@ rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
616
617
|
rasa/shared/constants.py,sha256=laDUtbKmCU5hboMl1D8l2myg9-Kdcr-7c-Rw-dv7DsA,11778
|
|
617
618
|
rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
618
619
|
rasa/shared/core/command_payload_reader.py,sha256=puHYsp9xbX0YQm2L1NDBItOFmdzI7AzmfGefgcHiCc0,3871
|
|
619
|
-
rasa/shared/core/constants.py,sha256=
|
|
620
|
+
rasa/shared/core/constants.py,sha256=LoBxbDl7m1OGJ_n0XOWwekfhEZ_zqTSuFd7cykv1sUA,6528
|
|
620
621
|
rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1hG5c,1384
|
|
621
|
-
rasa/shared/core/domain.py,sha256=
|
|
622
|
+
rasa/shared/core/domain.py,sha256=ylQPC61M5TMBJ-PkRxfG403H1FLJpQ1xZj1TgsyYcvE,80918
|
|
622
623
|
rasa/shared/core/events.py,sha256=WNo5AeL9lMroIpznVfgyboBrIy9bIivYLJNxsP0POmE,84405
|
|
623
624
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
624
625
|
rasa/shared/core/flows/flow.py,sha256=ecbq-0BS7OVdIaWpDh8KIoxNZ3ZeNRiOt58tSWSvsCU,22409
|
|
@@ -645,8 +646,8 @@ rasa/shared/core/flows/utils.py,sha256=yEKFjmaaIReWgN79Djlydsj6j5X9g5-RAN6Z7SCHf
|
|
|
645
646
|
rasa/shared/core/flows/validation.py,sha256=XfyIzrT4G-zhBvmeiCt-Ug1xQ7pWddjqTt-1gUane4Q,27431
|
|
646
647
|
rasa/shared/core/flows/yaml_flows_io.py,sha256=85ln95jpkh7ZqDl1cheFa8Q21gnadLjWrW8ADmQlrUQ,14385
|
|
647
648
|
rasa/shared/core/generator.py,sha256=UAuBPu5UjUhL9djVK-PvrWZcNhRACOEgnRsTleV7eeY,35686
|
|
648
|
-
rasa/shared/core/slot_mappings.py,sha256=
|
|
649
|
-
rasa/shared/core/slots.py,sha256=
|
|
649
|
+
rasa/shared/core/slot_mappings.py,sha256=rSvyoR8MhDGNpB3HAMN3E2adxH83sjS78_kTuBBjgj0,18897
|
|
650
|
+
rasa/shared/core/slots.py,sha256=JYPxXfbfwbGiuPpZS7_lzCqPseTz89e3pA9niub631I,24678
|
|
650
651
|
rasa/shared/core/trackers.py,sha256=P9Jy8T_WnVY4m_Y1-hKHEeSPU3MKALhUuqIqXbLLgw0,42513
|
|
651
652
|
rasa/shared/core/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
652
653
|
rasa/shared/core/training_data/loading.py,sha256=RCx1uTI9iDejFI_sWg3qPzhjln7-hu78f3EDAT6K0No,2894
|
|
@@ -758,7 +759,7 @@ rasa/studio/download.py,sha256=Ap_Hq3veKKp5JxWt_qAeTJg0KLKkzowMclx2KPE1fy8,17188
|
|
|
758
759
|
rasa/studio/results_logger.py,sha256=eLBi49o_4nkXccRM0h6-sjlV1o_HxTNEVJMdNocTw_I,4963
|
|
759
760
|
rasa/studio/train.py,sha256=gfPtirITzBDo9gV4hqDNSwPYtVp_22cq8OWI6YIBgyk,4243
|
|
760
761
|
rasa/studio/upload.py,sha256=K4QJIE-GYWgA1Z6dXOJAA7n0McvlBt0wOQyiCMXtZCk,17784
|
|
761
|
-
rasa/telemetry.py,sha256=
|
|
762
|
+
rasa/telemetry.py,sha256=plRHHkCM_qTC-bzASZT-OW8EugDB3N5p7WGKacrC354,66656
|
|
762
763
|
rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
763
764
|
rasa/tracing/config.py,sha256=j5N6s-GX3idNH9FO-0z10KduVg2ovzsE-u5ve87249U,12860
|
|
764
765
|
rasa/tracing/constants.py,sha256=N_MJLStE3IkmPKQCQv42epd3jdBMJ4Ith1dVO65N5ho,2425
|
|
@@ -771,7 +772,7 @@ rasa/tracing/metric_instrument_provider.py,sha256=I1elkXfDNix9s4mqRWA_5f_PI15_yP
|
|
|
771
772
|
rasa/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
772
773
|
rasa/utils/beta.py,sha256=h2xwGagMh2SnpMuqhkEAEjL7C_CyU6b1te7sbtF-lm4,3240
|
|
773
774
|
rasa/utils/cli.py,sha256=L-DT4nPdVBWfc2m1COHrziLitVWJxazSreb6JLbTho4,865
|
|
774
|
-
rasa/utils/common.py,sha256=
|
|
775
|
+
rasa/utils/common.py,sha256=quwvvQEvSNTs3YoezDEIsfWu42EihhvXCiesBA8g-K4,20925
|
|
775
776
|
rasa/utils/converter.py,sha256=H4LHpoAK7MXMmvNZG_uSn0gbccCJvHtsA2-6Zya4u6M,1656
|
|
776
777
|
rasa/utils/endpoints.py,sha256=htalZ5AXvXxNlVeTUgk3LJ-OKzt-dr5GTgRQTyC-0-0,10073
|
|
777
778
|
rasa/utils/io.py,sha256=LIAdQQqUPA-V_mdpgeQzPDzA4rmsdZLyVKc8j_0Z70Y,7161
|
|
@@ -803,10 +804,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
|
|
|
803
804
|
rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,21259
|
|
804
805
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
805
806
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
806
|
-
rasa/validator.py,sha256=
|
|
807
|
-
rasa/version.py,sha256=
|
|
808
|
-
rasa_pro-3.12.0.
|
|
809
|
-
rasa_pro-3.12.0.
|
|
810
|
-
rasa_pro-3.12.0.
|
|
811
|
-
rasa_pro-3.12.0.
|
|
812
|
-
rasa_pro-3.12.0.
|
|
807
|
+
rasa/validator.py,sha256=sfiDoRdGPuFN7KgLJmHk4IhGLqgca1FuRXVSIoCyCWA,72903
|
|
808
|
+
rasa/version.py,sha256=cQXQ3CHfKg51tl6Y8SM3W3SFmn13KGf5k8Z95n_ltaU,123
|
|
809
|
+
rasa_pro-3.12.0.dev11.dist-info/METADATA,sha256=MOOojugfaS0vTHJPkxeHHIrDAkUn6GG4h3QWPKYi4ec,10731
|
|
810
|
+
rasa_pro-3.12.0.dev11.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
811
|
+
rasa_pro-3.12.0.dev11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
812
|
+
rasa_pro-3.12.0.dev11.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
813
|
+
rasa_pro-3.12.0.dev11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|