rasa-pro 3.12.19__py3-none-any.whl → 3.12.20__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/channels/voice_stream/asr/azure.py +9 -0
- rasa/core/channels/voice_stream/twilio_media_streams.py +7 -0
- rasa/core/channels/voice_stream/voice_channel.py +40 -9
- rasa/e2e_test/e2e_test_coverage_report.py +1 -1
- rasa/shared/core/flows/constants.py +2 -0
- rasa/shared/core/flows/flow.py +129 -13
- rasa/shared/core/flows/flows_list.py +18 -1
- rasa/shared/core/flows/steps/link.py +7 -2
- rasa/version.py +1 -1
- {rasa_pro-3.12.19.dist-info → rasa_pro-3.12.20.dist-info}/METADATA +1 -1
- {rasa_pro-3.12.19.dist-info → rasa_pro-3.12.20.dist-info}/RECORD +14 -14
- {rasa_pro-3.12.19.dist-info → rasa_pro-3.12.20.dist-info}/NOTICE +0 -0
- {rasa_pro-3.12.19.dist-info → rasa_pro-3.12.20.dist-info}/WHEEL +0 -0
- {rasa_pro-3.12.19.dist-info → rasa_pro-3.12.20.dist-info}/entry_points.txt +0 -0
|
@@ -3,6 +3,8 @@ import os
|
|
|
3
3
|
from dataclasses import dataclass
|
|
4
4
|
from typing import Any, AsyncIterator, Dict, Optional
|
|
5
5
|
|
|
6
|
+
import structlog
|
|
7
|
+
|
|
6
8
|
from rasa.core.channels.voice_stream.asr.asr_engine import ASREngine, ASREngineConfig
|
|
7
9
|
from rasa.core.channels.voice_stream.asr.asr_event import (
|
|
8
10
|
ASREvent,
|
|
@@ -13,6 +15,8 @@ from rasa.core.channels.voice_stream.audio_bytes import HERTZ, RasaAudioBytes
|
|
|
13
15
|
from rasa.shared.constants import AZURE_SPEECH_API_KEY_ENV_VAR
|
|
14
16
|
from rasa.shared.exceptions import ConnectionException
|
|
15
17
|
|
|
18
|
+
logger = structlog.get_logger(__name__)
|
|
19
|
+
|
|
16
20
|
|
|
17
21
|
@dataclass
|
|
18
22
|
class AzureASRConfig(ASREngineConfig):
|
|
@@ -61,6 +65,11 @@ class AzureASR(ASREngine[AzureASRConfig]):
|
|
|
61
65
|
and self.config.speech_endpoint is None
|
|
62
66
|
):
|
|
63
67
|
self.config.speech_region = "eastus"
|
|
68
|
+
logger.warning(
|
|
69
|
+
"voice_channel.asr.azure.no_region",
|
|
70
|
+
message="No speech region configured, using 'eastus' as default",
|
|
71
|
+
region="eastus",
|
|
72
|
+
)
|
|
64
73
|
speech_config = speechsdk.SpeechConfig(
|
|
65
74
|
subscription=os.environ[AZURE_SPEECH_API_KEY_ENV_VAR],
|
|
66
75
|
region=self.config.speech_region,
|
|
@@ -135,6 +135,13 @@ class TwilioMediaStreamsInputChannel(VoiceInputChannel):
|
|
|
135
135
|
def name(cls) -> str:
|
|
136
136
|
return "twilio_media_streams"
|
|
137
137
|
|
|
138
|
+
def get_sender_id(self, call_parameters: CallParameters) -> str:
|
|
139
|
+
"""Get the sender ID for the channel.
|
|
140
|
+
|
|
141
|
+
Twilio Media Streams uses the Stream ID as Sender ID because
|
|
142
|
+
it is required in OutputChannel.send_text_message to send messages."""
|
|
143
|
+
return call_parameters.stream_id # type: ignore[return-value]
|
|
144
|
+
|
|
138
145
|
def channel_bytes_to_rasa_audio_bytes(self, input_bytes: bytes) -> RasaAudioBytes:
|
|
139
146
|
return RasaAudioBytes(base64.b64decode(input_bytes))
|
|
140
147
|
|
|
@@ -288,6 +288,17 @@ class VoiceInputChannel(InputChannel):
|
|
|
288
288
|
self.monitor_silence = monitor_silence
|
|
289
289
|
self.tts_cache = TTSCache(tts_config.get("cache_size", 1000))
|
|
290
290
|
|
|
291
|
+
logger.info(
|
|
292
|
+
"voice_channel.initialized",
|
|
293
|
+
server_url=self.server_url,
|
|
294
|
+
asr_config=self.asr_config,
|
|
295
|
+
tts_config=self.tts_config,
|
|
296
|
+
)
|
|
297
|
+
|
|
298
|
+
def get_sender_id(self, call_parameters: CallParameters) -> str:
|
|
299
|
+
"""Get the sender ID for the channel."""
|
|
300
|
+
return call_parameters.call_id
|
|
301
|
+
|
|
291
302
|
async def monitor_silence_timeout(self, asr_event_queue: asyncio.Queue) -> None:
|
|
292
303
|
timeout = call_state.silence_timeout
|
|
293
304
|
if not timeout:
|
|
@@ -334,9 +345,9 @@ class VoiceInputChannel(InputChannel):
|
|
|
334
345
|
) -> None:
|
|
335
346
|
output_channel = self.create_output_channel(channel_websocket, tts_engine)
|
|
336
347
|
message = UserMessage(
|
|
337
|
-
"/session_start",
|
|
338
|
-
output_channel,
|
|
339
|
-
call_parameters
|
|
348
|
+
text="/session_start",
|
|
349
|
+
output_channel=output_channel,
|
|
350
|
+
sender_id=self.get_sender_id(call_parameters),
|
|
340
351
|
input_channel=self.name(),
|
|
341
352
|
metadata=asdict(call_parameters),
|
|
342
353
|
)
|
|
@@ -393,6 +404,9 @@ class VoiceInputChannel(InputChannel):
|
|
|
393
404
|
await asr_engine.send_audio_chunks(channel_action.audio_bytes)
|
|
394
405
|
elif isinstance(channel_action, EndConversationAction):
|
|
395
406
|
# end stream event came from the other side
|
|
407
|
+
await self.handle_disconnect(
|
|
408
|
+
channel_websocket, on_new_message, tts_engine, call_parameters
|
|
409
|
+
)
|
|
396
410
|
break
|
|
397
411
|
|
|
398
412
|
async def receive_asr_events() -> None:
|
|
@@ -449,9 +463,9 @@ class VoiceInputChannel(InputChannel):
|
|
|
449
463
|
call_state.is_user_speaking = False # type: ignore[attr-defined]
|
|
450
464
|
output_channel = self.create_output_channel(voice_websocket, tts_engine)
|
|
451
465
|
message = UserMessage(
|
|
452
|
-
e.text,
|
|
453
|
-
output_channel,
|
|
454
|
-
call_parameters
|
|
466
|
+
text=e.text,
|
|
467
|
+
output_channel=output_channel,
|
|
468
|
+
sender_id=self.get_sender_id(call_parameters),
|
|
455
469
|
input_channel=self.name(),
|
|
456
470
|
metadata=asdict(call_parameters),
|
|
457
471
|
)
|
|
@@ -462,10 +476,27 @@ class VoiceInputChannel(InputChannel):
|
|
|
462
476
|
elif isinstance(e, UserSilence):
|
|
463
477
|
output_channel = self.create_output_channel(voice_websocket, tts_engine)
|
|
464
478
|
message = UserMessage(
|
|
465
|
-
"/silence_timeout",
|
|
466
|
-
output_channel,
|
|
467
|
-
call_parameters
|
|
479
|
+
text="/silence_timeout",
|
|
480
|
+
output_channel=output_channel,
|
|
481
|
+
sender_id=self.get_sender_id(call_parameters),
|
|
468
482
|
input_channel=self.name(),
|
|
469
483
|
metadata=asdict(call_parameters),
|
|
470
484
|
)
|
|
471
485
|
await on_new_message(message)
|
|
486
|
+
|
|
487
|
+
async def handle_disconnect(
|
|
488
|
+
self,
|
|
489
|
+
channel_websocket: Websocket,
|
|
490
|
+
on_new_message: Callable[[UserMessage], Awaitable[Any]],
|
|
491
|
+
tts_engine: TTSEngine,
|
|
492
|
+
call_parameters: CallParameters,
|
|
493
|
+
) -> None:
|
|
494
|
+
"""Handle disconnection from the channel."""
|
|
495
|
+
output_channel = self.create_output_channel(channel_websocket, tts_engine)
|
|
496
|
+
message = UserMessage(
|
|
497
|
+
text="/session_end",
|
|
498
|
+
output_channel=output_channel,
|
|
499
|
+
sender_id=self.get_sender_id(call_parameters),
|
|
500
|
+
input_channel=self.name(),
|
|
501
|
+
)
|
|
502
|
+
await on_new_message(message)
|
|
@@ -21,7 +21,7 @@ from rasa.shared.core.flows.flow_path import FlowPath, FlowPathsList, PathNode
|
|
|
21
21
|
FLOW_NAME_COL_NAME = "Flow Name"
|
|
22
22
|
NUM_STEPS_COL_NAME = "Num Steps"
|
|
23
23
|
MISSING_STEPS_COL_NAME = "Missing Steps"
|
|
24
|
-
LINE_NUMBERS_COL_NAME = "Line Numbers"
|
|
24
|
+
LINE_NUMBERS_COL_NAME = "Line Numbers for Missing Steps"
|
|
25
25
|
COVERAGE_COL_NAME = "Coverage"
|
|
26
26
|
|
|
27
27
|
FLOWS_KEY = "flows"
|
rasa/shared/core/flows/flow.py
CHANGED
|
@@ -4,7 +4,7 @@ import copy
|
|
|
4
4
|
from dataclasses import dataclass, field
|
|
5
5
|
from functools import cached_property
|
|
6
6
|
from pathlib import Path
|
|
7
|
-
from typing import Any, Dict, List, Optional, Set, Text, Union
|
|
7
|
+
from typing import Any, Dict, List, Optional, Set, Text, Tuple, Union
|
|
8
8
|
|
|
9
9
|
import structlog
|
|
10
10
|
from pydantic import BaseModel
|
|
@@ -15,10 +15,12 @@ from rasa.engine.language import Language
|
|
|
15
15
|
from rasa.shared.constants import RASA_DEFAULT_FLOW_PATTERN_PREFIX
|
|
16
16
|
from rasa.shared.core.flows.constants import (
|
|
17
17
|
KEY_ALWAYS_INCLUDE_IN_PROMPT,
|
|
18
|
+
KEY_CALLED_FLOW,
|
|
18
19
|
KEY_DESCRIPTION,
|
|
19
20
|
KEY_FILE_PATH,
|
|
20
21
|
KEY_ID,
|
|
21
22
|
KEY_IF,
|
|
23
|
+
KEY_LINKED_FLOW,
|
|
22
24
|
KEY_NAME,
|
|
23
25
|
KEY_NLU_TRIGGER,
|
|
24
26
|
KEY_PERSISTED_SLOTS,
|
|
@@ -41,6 +43,7 @@ from rasa.shared.core.flows.steps import (
|
|
|
41
43
|
CallFlowStep,
|
|
42
44
|
CollectInformationFlowStep,
|
|
43
45
|
EndFlowStep,
|
|
46
|
+
LinkFlowStep,
|
|
44
47
|
StartFlowStep,
|
|
45
48
|
)
|
|
46
49
|
from rasa.shared.core.flows.steps.constants import (
|
|
@@ -61,6 +64,8 @@ class FlowLanguageTranslation(BaseModel):
|
|
|
61
64
|
"""The human-readable name of the flow."""
|
|
62
65
|
|
|
63
66
|
class Config:
|
|
67
|
+
"""Configuration for the FlowLanguageTranslation model."""
|
|
68
|
+
|
|
64
69
|
extra = "ignore"
|
|
65
70
|
|
|
66
71
|
|
|
@@ -232,9 +237,9 @@ class Flow:
|
|
|
232
237
|
return translation.name if translation else None
|
|
233
238
|
|
|
234
239
|
def readable_name(self, language: Optional[Language] = None) -> str:
|
|
235
|
-
"""
|
|
236
|
-
|
|
237
|
-
falls back to the flow's name, and finally the flow's ID.
|
|
240
|
+
"""Returns the flow's name in the specified language if available.
|
|
241
|
+
|
|
242
|
+
Otherwise, falls back to the flow's name, and finally the flow's ID.
|
|
238
243
|
|
|
239
244
|
Args:
|
|
240
245
|
language: Preferred language code.
|
|
@@ -488,6 +493,9 @@ class Flow:
|
|
|
488
493
|
current_path: FlowPath,
|
|
489
494
|
all_paths: FlowPathsList,
|
|
490
495
|
visited_step_ids: Set[str],
|
|
496
|
+
call_stack: Optional[
|
|
497
|
+
List[Tuple[Optional[FlowStep], Optional[Flow], str]]
|
|
498
|
+
] = None,
|
|
491
499
|
) -> None:
|
|
492
500
|
"""Processes the flow steps recursively.
|
|
493
501
|
|
|
@@ -496,19 +504,25 @@ class Flow:
|
|
|
496
504
|
current_path: The current path being constructed.
|
|
497
505
|
all_paths: The list where completed paths are added.
|
|
498
506
|
visited_step_ids: A set of steps that have been visited to avoid cycles.
|
|
507
|
+
call_stack: Tuple list of (flow, path, flow_type) to track path when \
|
|
508
|
+
calling flows through call and link steps.
|
|
499
509
|
|
|
500
510
|
Returns:
|
|
501
511
|
None: This function modifies all_paths in place by appending new paths
|
|
502
512
|
as they are found.
|
|
503
513
|
"""
|
|
514
|
+
if call_stack is None:
|
|
515
|
+
call_stack = []
|
|
516
|
+
|
|
504
517
|
# Check if the step is relevant for testable_paths extraction.
|
|
505
|
-
# We only create new path nodes for
|
|
506
|
-
#
|
|
507
|
-
#
|
|
518
|
+
# We only create new path nodes for CollectInformationFlowStep,
|
|
519
|
+
# ActionFlowStep, CallFlowStep and LinkFlowStep,
|
|
520
|
+
# because these are externally visible changes
|
|
521
|
+
# in the assistant's behaviour (trackable in the e2e tests).
|
|
508
522
|
# For other flow steps, we only follow their links.
|
|
509
|
-
# We decided to ignore calls to other flows in our coverage analysis.
|
|
510
523
|
should_add_node = isinstance(
|
|
511
|
-
current_step,
|
|
524
|
+
current_step,
|
|
525
|
+
(CollectInformationFlowStep, ActionFlowStep, CallFlowStep, LinkFlowStep),
|
|
512
526
|
)
|
|
513
527
|
if should_add_node:
|
|
514
528
|
# Add current step to the current path that is being constructed.
|
|
@@ -520,10 +534,45 @@ class Flow:
|
|
|
520
534
|
)
|
|
521
535
|
)
|
|
522
536
|
|
|
537
|
+
# Check if the current step has already been visited or
|
|
538
|
+
# if the end of the path has been reached.
|
|
539
|
+
# If so, and we’re not within a called flow, we terminate the current path.
|
|
540
|
+
# This also applies for when we're inside a linked flow and reach its end.
|
|
541
|
+
# If we're inside a called flow and reach its end,
|
|
542
|
+
# continue with the next steps in its parent flow.
|
|
523
543
|
if current_step.id in visited_step_ids or self.is_end_of_path(current_step):
|
|
524
|
-
#
|
|
525
|
-
|
|
526
|
-
#
|
|
544
|
+
# Shallow copy is sufficient, since we only pop from the list and
|
|
545
|
+
# don't mutate the objects inside the tuples.
|
|
546
|
+
# The state of FlowStep and Flow does not change during the traversal.
|
|
547
|
+
call_stack_copy = call_stack.copy()
|
|
548
|
+
# parent_flow_type could be any of: None, i.e. main flow,
|
|
549
|
+
# KEY_CALLED_FLOW(=called_flow) or KEY_LINKED_FLOW(=linked_flow)
|
|
550
|
+
parent_step, parent_flow, parent_flow_type = (
|
|
551
|
+
call_stack_copy.pop() if call_stack_copy else (None, None, None)
|
|
552
|
+
)
|
|
553
|
+
|
|
554
|
+
# Check if within a called flow.
|
|
555
|
+
# If within linked flow, stop the traversal as this takes precedence.
|
|
556
|
+
if parent_step and parent_flow_type == KEY_CALLED_FLOW:
|
|
557
|
+
# As we have reached the END step of a called flow, we need to
|
|
558
|
+
# continue with the next links of the parent step.
|
|
559
|
+
if parent_flow is not None:
|
|
560
|
+
for link in parent_step.next.links:
|
|
561
|
+
parent_flow._handle_link(
|
|
562
|
+
current_path,
|
|
563
|
+
all_paths,
|
|
564
|
+
visited_step_ids,
|
|
565
|
+
link,
|
|
566
|
+
call_stack_copy,
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
else:
|
|
570
|
+
# Found a cycle, or reached an end step, do not proceed further.
|
|
571
|
+
all_paths.paths.append(copy.deepcopy(current_path))
|
|
572
|
+
|
|
573
|
+
# Backtrack: remove the last node after reaching a terminal step.
|
|
574
|
+
# Ensures the path is correctly backtracked, after a path ends or
|
|
575
|
+
# a cycle is detected.
|
|
527
576
|
if should_add_node:
|
|
528
577
|
current_path.nodes.pop()
|
|
529
578
|
return
|
|
@@ -531,6 +580,62 @@ class Flow:
|
|
|
531
580
|
# Mark current step as visited in this path.
|
|
532
581
|
visited_step_ids.add(current_step.id)
|
|
533
582
|
|
|
583
|
+
# If the current step is a call step, we need to resolve the call
|
|
584
|
+
# and continue with the steps of the called flow.
|
|
585
|
+
if isinstance(current_step, CallFlowStep):
|
|
586
|
+
# Get the steps of the called flow and continue with them.
|
|
587
|
+
called_flow = current_step.called_flow_reference
|
|
588
|
+
if called_flow and (
|
|
589
|
+
start_step_in_called_flow := called_flow.first_step_in_flow()
|
|
590
|
+
):
|
|
591
|
+
call_stack.append((current_step, self, KEY_CALLED_FLOW))
|
|
592
|
+
called_flow._go_over_steps(
|
|
593
|
+
start_step_in_called_flow,
|
|
594
|
+
current_path,
|
|
595
|
+
all_paths,
|
|
596
|
+
visited_step_ids,
|
|
597
|
+
call_stack,
|
|
598
|
+
)
|
|
599
|
+
|
|
600
|
+
# After processing the steps of the called (child) flow,
|
|
601
|
+
# remove them from the visited steps
|
|
602
|
+
# to allow the calling (parent) flow to revisit them later.
|
|
603
|
+
visited_step_ids.remove(current_step.id)
|
|
604
|
+
call_stack.pop()
|
|
605
|
+
|
|
606
|
+
# Backtrack: remove the last node
|
|
607
|
+
# after returning from a called (child) flow.
|
|
608
|
+
# Ensures the parent flow can continue exploring other branches.
|
|
609
|
+
if should_add_node:
|
|
610
|
+
current_path.nodes.pop()
|
|
611
|
+
return
|
|
612
|
+
|
|
613
|
+
# If the current step is a LinkFlowStep, step into the linked flow,
|
|
614
|
+
# process its links, and do not return from that flow anymore.
|
|
615
|
+
if isinstance(current_step, LinkFlowStep):
|
|
616
|
+
# Get the steps of the linked flow and continue with them.
|
|
617
|
+
linked_flow = current_step.linked_flow_reference
|
|
618
|
+
if linked_flow and (
|
|
619
|
+
start_step_in_linked_flow := linked_flow.first_step_in_flow()
|
|
620
|
+
):
|
|
621
|
+
call_stack.append((current_step, self, KEY_LINKED_FLOW))
|
|
622
|
+
linked_flow._go_over_steps(
|
|
623
|
+
start_step_in_linked_flow,
|
|
624
|
+
current_path,
|
|
625
|
+
all_paths,
|
|
626
|
+
visited_step_ids,
|
|
627
|
+
call_stack,
|
|
628
|
+
)
|
|
629
|
+
visited_step_ids.remove(current_step.id)
|
|
630
|
+
call_stack.pop()
|
|
631
|
+
|
|
632
|
+
# Backtrack: remove the last node
|
|
633
|
+
# after returning from a linked (child) flow.
|
|
634
|
+
# Ensures the parent can continue after the linked flow is processed.
|
|
635
|
+
if should_add_node:
|
|
636
|
+
current_path.nodes.pop()
|
|
637
|
+
return
|
|
638
|
+
|
|
534
639
|
# Iterate over all links of the current step.
|
|
535
640
|
for link in current_step.next.links:
|
|
536
641
|
self._handle_link(
|
|
@@ -538,12 +643,15 @@ class Flow:
|
|
|
538
643
|
all_paths,
|
|
539
644
|
visited_step_ids,
|
|
540
645
|
link,
|
|
646
|
+
call_stack,
|
|
541
647
|
)
|
|
542
648
|
|
|
543
649
|
# Backtrack the current step and remove it from the path.
|
|
544
650
|
visited_step_ids.remove(current_step.id)
|
|
545
651
|
|
|
546
|
-
#
|
|
652
|
+
# Backtrack: remove the last node
|
|
653
|
+
# after processing all links of the current step.
|
|
654
|
+
# Ensures the next recursion can start once all links are explored.
|
|
547
655
|
if should_add_node:
|
|
548
656
|
current_path.nodes.pop()
|
|
549
657
|
|
|
@@ -553,6 +661,9 @@ class Flow:
|
|
|
553
661
|
all_paths: FlowPathsList,
|
|
554
662
|
visited_step_ids: Set[str],
|
|
555
663
|
link: FlowStepLink,
|
|
664
|
+
call_stack: Optional[
|
|
665
|
+
List[Tuple[Optional[FlowStep], Optional[Flow], str]]
|
|
666
|
+
] = None,
|
|
556
667
|
) -> None:
|
|
557
668
|
"""Handles the next step in a flow.
|
|
558
669
|
|
|
@@ -561,6 +672,8 @@ class Flow:
|
|
|
561
672
|
all_paths: The list where completed paths are added.
|
|
562
673
|
visited_step_ids: A set of steps that have been visited to avoid cycles.
|
|
563
674
|
link: The link to be followed.
|
|
675
|
+
call_stack: Tuple list of (flow, path, flow_type) to track path when \
|
|
676
|
+
calling flows through call and link steps..
|
|
564
677
|
|
|
565
678
|
Returns:
|
|
566
679
|
None: This function modifies all_paths in place by appending new paths
|
|
@@ -575,6 +688,7 @@ class Flow:
|
|
|
575
688
|
current_path,
|
|
576
689
|
all_paths,
|
|
577
690
|
visited_step_ids,
|
|
691
|
+
call_stack,
|
|
578
692
|
)
|
|
579
693
|
return
|
|
580
694
|
# IfFlowStepLink and ElseFlowStepLink are conditional links.
|
|
@@ -588,6 +702,7 @@ class Flow:
|
|
|
588
702
|
current_path,
|
|
589
703
|
all_paths,
|
|
590
704
|
visited_step_ids,
|
|
705
|
+
call_stack,
|
|
591
706
|
)
|
|
592
707
|
return
|
|
593
708
|
else:
|
|
@@ -598,6 +713,7 @@ class Flow:
|
|
|
598
713
|
current_path,
|
|
599
714
|
all_paths,
|
|
600
715
|
visited_step_ids,
|
|
716
|
+
call_stack,
|
|
601
717
|
)
|
|
602
718
|
return
|
|
603
719
|
|
|
@@ -36,6 +36,7 @@ class FlowsList:
|
|
|
36
36
|
def __post_init__(self) -> None:
|
|
37
37
|
"""Initializes the FlowsList object."""
|
|
38
38
|
self._resolve_called_flows()
|
|
39
|
+
self._resolve_linked_flows()
|
|
39
40
|
|
|
40
41
|
def __iter__(self) -> Generator[Flow, None, None]:
|
|
41
42
|
"""Iterates over the flows."""
|
|
@@ -103,7 +104,10 @@ class FlowsList:
|
|
|
103
104
|
)
|
|
104
105
|
|
|
105
106
|
def _resolve_called_flows(self) -> None:
|
|
106
|
-
"""Resolves the called flows.
|
|
107
|
+
"""Resolves the called flows.
|
|
108
|
+
|
|
109
|
+
`Resolving` here means connecting the step to the actual `Flow` object.
|
|
110
|
+
"""
|
|
107
111
|
from rasa.shared.core.flows.steps import CallFlowStep
|
|
108
112
|
|
|
109
113
|
for flow in self.underlying_flows:
|
|
@@ -112,6 +116,19 @@ class FlowsList:
|
|
|
112
116
|
# only resolve the reference, if it isn't already resolved
|
|
113
117
|
step.called_flow_reference = self.flow_by_id(step.call)
|
|
114
118
|
|
|
119
|
+
def _resolve_linked_flows(self) -> None:
|
|
120
|
+
"""Resolves the linked flows.
|
|
121
|
+
|
|
122
|
+
`Resolving` here means connecting the step to the actual `Flow` object.
|
|
123
|
+
"""
|
|
124
|
+
from rasa.shared.core.flows.steps import LinkFlowStep
|
|
125
|
+
|
|
126
|
+
for flow in self.underlying_flows:
|
|
127
|
+
for step in flow.steps:
|
|
128
|
+
if isinstance(step, LinkFlowStep) and not step.linked_flow_reference:
|
|
129
|
+
# only resolve the reference, if it isn't already resolved
|
|
130
|
+
step.linked_flow_reference = self.flow_by_id(step.link)
|
|
131
|
+
|
|
115
132
|
def as_json_list(self) -> List[Dict[Text, Any]]:
|
|
116
133
|
"""Serialize the FlowsList object to list format and not to the original dict.
|
|
117
134
|
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
3
|
from dataclasses import dataclass
|
|
4
|
-
from typing import Any, Dict, Text
|
|
4
|
+
from typing import TYPE_CHECKING, Any, Dict, Text
|
|
5
5
|
|
|
6
|
-
from rasa.shared.core.flows.flow_step import FlowStep
|
|
6
|
+
from rasa.shared.core.flows.flow_step import FlowStep, Optional
|
|
7
|
+
|
|
8
|
+
if TYPE_CHECKING:
|
|
9
|
+
from rasa.shared.core.flows.flow import Flow
|
|
7
10
|
|
|
8
11
|
|
|
9
12
|
@dataclass
|
|
@@ -12,6 +15,8 @@ class LinkFlowStep(FlowStep):
|
|
|
12
15
|
|
|
13
16
|
link: Text
|
|
14
17
|
"""The id of the flow that should be started subsequently."""
|
|
18
|
+
linked_flow_reference: Optional["Flow"] = None
|
|
19
|
+
"""The flow that is linked to by this step."""
|
|
15
20
|
|
|
16
21
|
def does_allow_for_next_step(self) -> bool:
|
|
17
22
|
"""Returns whether this step allows for following steps.
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.12.
|
|
3
|
+
Version: 3.12.20
|
|
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
|
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
6
6
|
Author: Rasa Technologies GmbH
|
|
@@ -277,7 +277,7 @@ rasa/core/channels/voice_stream/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
277
277
|
rasa/core/channels/voice_stream/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
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=skPwrkRrcsptmeWXu9q68i4B-ZbvambCFFLtQ0TIgMo,297
|
|
280
|
-
rasa/core/channels/voice_stream/asr/azure.py,sha256=
|
|
280
|
+
rasa/core/channels/voice_stream/asr/azure.py,sha256=dUFxtNVVwGM2D1VyqQ5FWeSpKwUQekMXUxWZv6tPJ7w,6114
|
|
281
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
283
|
rasa/core/channels/voice_stream/audiocodes.py,sha256=WVAd5ksO97y7a6Wvv6PqQKQVgS1_IdRXeDIjnl6IAkY,12498
|
|
@@ -289,9 +289,9 @@ rasa/core/channels/voice_stream/tts/azure.py,sha256=RIS8wBpnX8yWM17UxUo5ko4QrxEx
|
|
|
289
289
|
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=cH2eHicZ_NCWtDH-cn9Chq8SSm-1agJRy-ieDJCVlD4,5407
|
|
290
290
|
rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFSkuTIqLvho--Yt0litb4,850
|
|
291
291
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
|
|
292
|
-
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=
|
|
292
|
+
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=cM09rwGpbyFD9lCfmWBjHE1XS-F4ufpSbvwJACHpVmI,9094
|
|
293
293
|
rasa/core/channels/voice_stream/util.py,sha256=d0Tl0tGAnVj3SgGovsUMHx-QL44nrPI29OTYKYleH0U,1987
|
|
294
|
-
rasa/core/channels/voice_stream/voice_channel.py,sha256=
|
|
294
|
+
rasa/core/channels/voice_stream/voice_channel.py,sha256=5XQjDkkWCOaXV3GKmzDBPIIwYVIS0StzzApxXrBKLd4,19611
|
|
295
295
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
296
296
|
rasa/core/concurrent_lock_store.py,sha256=ycd-aeJJWXIokMRimCdQFHdwuMfl512hZSUHE8oSd2c,7722
|
|
297
297
|
rasa/core/constants.py,sha256=dEokmEf6XkOFA_xpuwjqwNtlZv-a5Tz5dLMRc7Vu4CU,4070
|
|
@@ -473,7 +473,7 @@ rasa/e2e_test/e2e_config_schema.yml,sha256=zQectcNvmNChdPMqO4O-CufqAF90AMBbP-Dmg
|
|
|
473
473
|
rasa/e2e_test/e2e_test_case.py,sha256=3fKan0GJOMKm-FKHjQaY9AVhI4ortQYuEsPh9GHwbio,20817
|
|
474
474
|
rasa/e2e_test/e2e_test_converter.py,sha256=bcSg-hWKPGvZBip6PKPvYAcgvSUCU5uXmC9D7UTmJYY,12570
|
|
475
475
|
rasa/e2e_test/e2e_test_converter_prompt.jinja2,sha256=EMy-aCd7jLARHmwAuZUGT5ABnNHjR872_pexRIMGA7c,2791
|
|
476
|
-
rasa/e2e_test/e2e_test_coverage_report.py,sha256=
|
|
476
|
+
rasa/e2e_test/e2e_test_coverage_report.py,sha256=UGQ3np2p_gtnhl17K5y886STiX9xBn95GVuN9LGIpGY,11344
|
|
477
477
|
rasa/e2e_test/e2e_test_result.py,sha256=qVurjFC4cAWIY7rOsc-A-4nIdcnnw98TaK86-bDwI7Y,1649
|
|
478
478
|
rasa/e2e_test/e2e_test_runner.py,sha256=eXV5DJ0rAVY7FAXYI9aKvYqZXdfsE92y6deEUqUvrTY,47965
|
|
479
479
|
rasa/e2e_test/e2e_test_schema.yml,sha256=0WG0I3baTRc76lff3UjQ8vGRzMUoV6qcE8r9adOAlCU,5638
|
|
@@ -633,13 +633,13 @@ rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1h
|
|
|
633
633
|
rasa/shared/core/domain.py,sha256=piJu4Kr2exC9ehC3e2oNaxPxXkeIhOYoQJQQOuzMw18,81638
|
|
634
634
|
rasa/shared/core/events.py,sha256=kTUWSpDepj3kpjjXveYXz3h2XcIQV3Sq8h7MTbx5fMw,86489
|
|
635
635
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
636
|
-
rasa/shared/core/flows/constants.py,sha256=
|
|
637
|
-
rasa/shared/core/flows/flow.py,sha256=
|
|
636
|
+
rasa/shared/core/flows/constants.py,sha256=uno5qtsWl8lxELsDe04_5tJH1tBgj6uRRr_g83s10xA,404
|
|
637
|
+
rasa/shared/core/flows/flow.py,sha256=7EY_Jlqo21dB7yYNxB0zw1uRUImy0_zZ2bYrwKR8kHk,28382
|
|
638
638
|
rasa/shared/core/flows/flow_path.py,sha256=xstwahZBU5cfMY46mREA4NoOGlKLBRAqeP_mJ3UZqOI,2283
|
|
639
639
|
rasa/shared/core/flows/flow_step.py,sha256=ZvjXz1Fs5FR1_BlGBitOEYRnLhzk-bBYv1CC2Oi6iWQ,4537
|
|
640
640
|
rasa/shared/core/flows/flow_step_links.py,sha256=U9c4MFASieJGp_-XMhR0hrxFQISCJAF4TQ0wEy4IjB0,10530
|
|
641
641
|
rasa/shared/core/flows/flow_step_sequence.py,sha256=Rcw82OccjJsNc2wKXi6IePOIAPFRBTylSVphCRJCuc4,2362
|
|
642
|
-
rasa/shared/core/flows/flows_list.py,sha256=
|
|
642
|
+
rasa/shared/core/flows/flows_list.py,sha256=9KKvkLeNSe1oTZUpXAX-EvqYOKcXe5OQdZ-anut5bQc,9415
|
|
643
643
|
rasa/shared/core/flows/flows_yaml_schema.json,sha256=lILHEH3sp9rm61uV4HcN-3V3Dxg1xakcVvYFRAs3gu8,12399
|
|
644
644
|
rasa/shared/core/flows/nlu_trigger.py,sha256=GG6m5h6Z0jaukA5rPAHscnULgZGDjYMXfufX9nYQtzA,3907
|
|
645
645
|
rasa/shared/core/flows/steps/__init__.py,sha256=jvJp02o9_Wx-rZeQ3SYiLVMpO6ulS1yKuiiKg0ld_nE,655
|
|
@@ -650,7 +650,7 @@ rasa/shared/core/flows/steps/constants.py,sha256=DCxrEUGbJciBknHm-_t4tmcnH19IZKP
|
|
|
650
650
|
rasa/shared/core/flows/steps/continuation.py,sha256=5Rzayr80FsgS4bAajuRObVvVcLqPEh9nxGbT2te85xY,1498
|
|
651
651
|
rasa/shared/core/flows/steps/end.py,sha256=0XrPlQMVBnQKVeZs0or8P9IrVqG7i6RoSNDsVrvAeDk,749
|
|
652
652
|
rasa/shared/core/flows/steps/internal.py,sha256=5Peu4ANnxe4NEMIeDd_SfK4i1JdgjncalEgD4fNgskc,1449
|
|
653
|
-
rasa/shared/core/flows/steps/link.py,sha256=
|
|
653
|
+
rasa/shared/core/flows/steps/link.py,sha256=nOY1a92OEDjf4rqoZlbGAW2lXMeGOyNZwgLIK6e7if4,1702
|
|
654
654
|
rasa/shared/core/flows/steps/no_operation.py,sha256=SKqNQ4usLZ4c-faSZOX41lpHBD8YtVe2eGDSt50H05s,1399
|
|
655
655
|
rasa/shared/core/flows/steps/set_slots.py,sha256=DudtHKXaVSNmQL_vXLvkK23_JqgTBU9RJrdQeBpC4s0,1492
|
|
656
656
|
rasa/shared/core/flows/steps/start.py,sha256=AJpKIm0S3GZYLEs3ybXW0Zrq03Pu9lvirNahiUy2I6k,1010
|
|
@@ -822,9 +822,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
|
|
|
822
822
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
823
823
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
824
824
|
rasa/validator.py,sha256=524VlFTYK0B3iXYveVD6BDC3K0j1QfpzJ9O-TAWczmc,83166
|
|
825
|
-
rasa/version.py,sha256=
|
|
826
|
-
rasa_pro-3.12.
|
|
827
|
-
rasa_pro-3.12.
|
|
828
|
-
rasa_pro-3.12.
|
|
829
|
-
rasa_pro-3.12.
|
|
830
|
-
rasa_pro-3.12.
|
|
825
|
+
rasa/version.py,sha256=Rxqvg0GxwQ7GJ1Bk3AZXfIXCMz_pbaBjJE_a9rih1Y8,118
|
|
826
|
+
rasa_pro-3.12.20.dist-info/METADATA,sha256=pedBTuBkPO6rXzgZSv3EDHKuYjfVOpNqQhKORJ2MbZg,10609
|
|
827
|
+
rasa_pro-3.12.20.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
828
|
+
rasa_pro-3.12.20.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
829
|
+
rasa_pro-3.12.20.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
830
|
+
rasa_pro-3.12.20.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|