rasa-pro 3.13.0a1.dev5__py3-none-any.whl → 3.13.0a1.dev7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rasa-pro might be problematic. Click here for more details.
- rasa/builder/README.md +120 -0
- rasa/builder/config.py +69 -0
- rasa/builder/create_openai_vector_store.py +204 -45
- rasa/builder/exceptions.py +49 -0
- rasa/builder/llm_helper_prompt.jinja2 +245 -0
- rasa/builder/llm_service.py +327 -0
- rasa/builder/logging_utils.py +51 -0
- rasa/builder/main.py +61 -0
- rasa/builder/models.py +174 -0
- rasa/builder/project_generator.py +264 -0
- rasa/builder/service.py +447 -0
- rasa/builder/{skill_to_bot_prompt.jinja → skill_to_bot_prompt.jinja2} +10 -4
- rasa/builder/training_service.py +123 -0
- rasa/builder/validation_service.py +79 -0
- rasa/cli/project_templates/finance/config.yml +17 -0
- rasa/cli/project_templates/finance/credentials.yml +33 -0
- rasa/cli/project_templates/finance/data/flows/transfer_money.yml +5 -0
- rasa/cli/project_templates/finance/data/patterns/pattern_session_start.yml +7 -0
- rasa/cli/project_templates/finance/domain.yml +7 -0
- rasa/cli/project_templates/finance/endpoints.yml +58 -0
- rasa/cli/project_templates/plain/config.yml +17 -0
- rasa/cli/project_templates/plain/credentials.yml +33 -0
- rasa/cli/project_templates/plain/data/patterns/pattern_session_start.yml +7 -0
- rasa/cli/project_templates/plain/domain.yml +5 -0
- rasa/cli/project_templates/plain/endpoints.yml +58 -0
- rasa/cli/project_templates/telecom/config.yml +17 -0
- rasa/cli/project_templates/telecom/credentials.yml +33 -0
- rasa/cli/project_templates/telecom/data/flows/upgrade_contract.yml +5 -0
- rasa/cli/project_templates/telecom/data/patterns/pattern_session_start.yml +7 -0
- rasa/cli/project_templates/telecom/domain.yml +7 -0
- rasa/cli/project_templates/telecom/endpoints.yml +58 -0
- rasa/cli/scaffold.py +19 -3
- rasa/core/actions/action.py +5 -3
- rasa/core/channels/studio_chat.py +17 -3
- rasa/model_manager/model_api.py +1 -1
- rasa/model_manager/runner_service.py +1 -1
- rasa/model_manager/trainer_service.py +1 -1
- rasa/model_manager/utils.py +1 -29
- rasa/shared/core/domain.py +62 -15
- rasa/shared/core/flows/yaml_flows_io.py +16 -8
- rasa/telemetry.py +2 -1
- rasa/utils/io.py +27 -9
- rasa/version.py +1 -1
- {rasa_pro-3.13.0a1.dev5.dist-info → rasa_pro-3.13.0a1.dev7.dist-info}/METADATA +1 -1
- {rasa_pro-3.13.0a1.dev5.dist-info → rasa_pro-3.13.0a1.dev7.dist-info}/RECORD +48 -20
- rasa/builder/prompt_to_bot.py +0 -696
- {rasa_pro-3.13.0a1.dev5.dist-info → rasa_pro-3.13.0a1.dev7.dist-info}/NOTICE +0 -0
- {rasa_pro-3.13.0a1.dev5.dist-info → rasa_pro-3.13.0a1.dev7.dist-info}/WHEEL +0 -0
- {rasa_pro-3.13.0a1.dev5.dist-info → rasa_pro-3.13.0a1.dev7.dist-info}/entry_points.txt +0 -0
rasa/shared/core/domain.py
CHANGED
|
@@ -98,6 +98,8 @@ IS_RETRIEVAL_INTENT_KEY = "is_retrieval_intent"
|
|
|
98
98
|
ENTITY_ROLES_KEY = "roles"
|
|
99
99
|
ENTITY_GROUPS_KEY = "groups"
|
|
100
100
|
ENTITY_FEATURIZATION_KEY = "influence_conversation"
|
|
101
|
+
STORE_ENTITIES_AS_SLOTS_KEY = "store_entities_as_slots"
|
|
102
|
+
DOMAIN_CONFIG_KEY = "config"
|
|
101
103
|
|
|
102
104
|
KEY_SLOTS = "slots"
|
|
103
105
|
KEY_INTENTS = "intents"
|
|
@@ -146,6 +148,8 @@ MERGE_FUNC_MAPPING: Dict[Text, Callable[..., Any]] = {
|
|
|
146
148
|
KEY_FORMS: rasa.shared.utils.common.merge_dicts,
|
|
147
149
|
}
|
|
148
150
|
|
|
151
|
+
DEFAULT_STORE_ENTITIES_AS_SLOTS = True
|
|
152
|
+
|
|
149
153
|
DICT_DATA_KEYS = [
|
|
150
154
|
key
|
|
151
155
|
for key, value in MERGE_FUNC_MAPPING.items()
|
|
@@ -318,7 +322,7 @@ class Domain:
|
|
|
318
322
|
actions = cls._collect_action_names(domain_actions)
|
|
319
323
|
|
|
320
324
|
additional_arguments = {
|
|
321
|
-
**data.get(
|
|
325
|
+
**data.get(DOMAIN_CONFIG_KEY, {}),
|
|
322
326
|
"actions_which_explicitly_need_domain": (
|
|
323
327
|
cls._collect_actions_which_explicitly_need_domain(domain_actions)
|
|
324
328
|
),
|
|
@@ -468,9 +472,9 @@ class Domain:
|
|
|
468
472
|
return domain_dict
|
|
469
473
|
|
|
470
474
|
if override:
|
|
471
|
-
config = domain_dict.get(
|
|
475
|
+
config = domain_dict.get(DOMAIN_CONFIG_KEY, {})
|
|
472
476
|
for key, val in config.items():
|
|
473
|
-
combined[
|
|
477
|
+
combined[DOMAIN_CONFIG_KEY][key] = val
|
|
474
478
|
|
|
475
479
|
if (
|
|
476
480
|
override
|
|
@@ -508,10 +512,10 @@ class Domain:
|
|
|
508
512
|
return combined
|
|
509
513
|
|
|
510
514
|
def partial_merge(self, other: Domain) -> Domain:
|
|
511
|
-
"""
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
+
"""Returns a new Domain with intersection-based merging.
|
|
516
|
+
|
|
517
|
+
For each domain section only overwrite items that already exist in self.
|
|
518
|
+
Brand-new items in `other` are ignored.
|
|
515
519
|
|
|
516
520
|
Args:
|
|
517
521
|
other: The domain to merge with.
|
|
@@ -543,9 +547,9 @@ class Domain:
|
|
|
543
547
|
return Domain.from_dict(updated_self)
|
|
544
548
|
|
|
545
549
|
def difference(self, other: Domain) -> Domain:
|
|
546
|
-
"""
|
|
547
|
-
|
|
548
|
-
|
|
550
|
+
"""Returns a new Domain containing items in `self` that are NOT in `other`.
|
|
551
|
+
|
|
552
|
+
Uses simple equality checks for dict/list items.
|
|
549
553
|
|
|
550
554
|
Args:
|
|
551
555
|
other: The domain to compare with.
|
|
@@ -598,9 +602,16 @@ class Domain:
|
|
|
598
602
|
) -> Dict:
|
|
599
603
|
# add the config, session_config and training data version defaults
|
|
600
604
|
# if not included in the original domain dict
|
|
601
|
-
if
|
|
605
|
+
if (
|
|
606
|
+
DOMAIN_CONFIG_KEY not in data
|
|
607
|
+
and store_entities_as_slots != DEFAULT_STORE_ENTITIES_AS_SLOTS
|
|
608
|
+
):
|
|
602
609
|
data.update(
|
|
603
|
-
{
|
|
610
|
+
{
|
|
611
|
+
DOMAIN_CONFIG_KEY: {
|
|
612
|
+
STORE_ENTITIES_AS_SLOTS_KEY: store_entities_as_slots
|
|
613
|
+
}
|
|
614
|
+
}
|
|
604
615
|
)
|
|
605
616
|
|
|
606
617
|
if SESSION_CONFIG_KEY not in data:
|
|
@@ -937,7 +948,7 @@ class Domain:
|
|
|
937
948
|
forms: Union[Dict[Text, Any], List[Text]],
|
|
938
949
|
data: Dict,
|
|
939
950
|
action_texts: Optional[List[Text]] = None,
|
|
940
|
-
store_entities_as_slots: bool =
|
|
951
|
+
store_entities_as_slots: bool = DEFAULT_STORE_ENTITIES_AS_SLOTS,
|
|
941
952
|
session_config: SessionConfig = SessionConfig.default(),
|
|
942
953
|
**kwargs: Any,
|
|
943
954
|
) -> None:
|
|
@@ -1711,9 +1722,45 @@ class Domain:
|
|
|
1711
1722
|
else:
|
|
1712
1723
|
return True
|
|
1713
1724
|
|
|
1714
|
-
def
|
|
1725
|
+
def _uses_custom_session_config(self) -> bool:
|
|
1726
|
+
"""Check if the domain uses a custom session config."""
|
|
1727
|
+
return self._data.get(SESSION_CONFIG_KEY) != SessionConfig.default().as_dict()
|
|
1728
|
+
|
|
1729
|
+
def _uses_custom_domain_config(self) -> bool:
|
|
1730
|
+
"""Check if the domain uses a custom domain config."""
|
|
1731
|
+
return self._data.get(DOMAIN_CONFIG_KEY) != {
|
|
1732
|
+
STORE_ENTITIES_AS_SLOTS_KEY: DEFAULT_STORE_ENTITIES_AS_SLOTS
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
def _cleaned_json_data(self) -> Dict[Text, Any]:
|
|
1736
|
+
"""Remove default values from the domain data.
|
|
1737
|
+
|
|
1738
|
+
Only retains data that was customized by the user.
|
|
1739
|
+
|
|
1740
|
+
Returns:
|
|
1741
|
+
A cleaned dictionary version of the domain.
|
|
1742
|
+
"""
|
|
1743
|
+
cleaned_data = copy.deepcopy(self._data)
|
|
1744
|
+
|
|
1745
|
+
# Remove default config if it only contains store_entities_as_slots: False
|
|
1746
|
+
if DOMAIN_CONFIG_KEY in cleaned_data and not self._uses_custom_domain_config():
|
|
1747
|
+
del cleaned_data[DOMAIN_CONFIG_KEY]
|
|
1748
|
+
|
|
1749
|
+
# Remove default session config if it matches the default values
|
|
1750
|
+
if (
|
|
1751
|
+
SESSION_CONFIG_KEY in cleaned_data
|
|
1752
|
+
and not self._uses_custom_session_config()
|
|
1753
|
+
):
|
|
1754
|
+
del cleaned_data[SESSION_CONFIG_KEY]
|
|
1755
|
+
|
|
1756
|
+
return cleaned_data
|
|
1757
|
+
|
|
1758
|
+
def as_dict(self, should_clean_json: bool = False) -> Dict[Text, Any]:
|
|
1715
1759
|
"""Return serialized `Domain`."""
|
|
1716
|
-
|
|
1760
|
+
if should_clean_json:
|
|
1761
|
+
return self._cleaned_json_data()
|
|
1762
|
+
else:
|
|
1763
|
+
return self._data
|
|
1717
1764
|
|
|
1718
1765
|
@staticmethod
|
|
1719
1766
|
def get_responses_with_multilines(
|
|
@@ -262,12 +262,9 @@ class YamlFlowsWriter:
|
|
|
262
262
|
Returns:
|
|
263
263
|
The dumped YAML.
|
|
264
264
|
"""
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
del dumped_flow["id"]
|
|
269
|
-
dump[flow.id] = dumped_flow
|
|
270
|
-
return dump_obj_as_yaml_to_string({KEY_FLOWS: dump})
|
|
265
|
+
return dump_obj_as_yaml_to_string(
|
|
266
|
+
{KEY_FLOWS: get_flows_as_json(flows, should_clean_json)}
|
|
267
|
+
)
|
|
271
268
|
|
|
272
269
|
@staticmethod
|
|
273
270
|
def dump(
|
|
@@ -424,9 +421,20 @@ def process_yaml_content(yaml_content: Dict[str, Any]) -> Dict[str, Any]:
|
|
|
424
421
|
return yaml_content
|
|
425
422
|
|
|
426
423
|
|
|
424
|
+
def get_flows_as_json(
|
|
425
|
+
flows: FlowsList, should_clean_json: bool = False
|
|
426
|
+
) -> Dict[str, Any]:
|
|
427
|
+
"""Get the flows as a JSON dictionary."""
|
|
428
|
+
dump = {}
|
|
429
|
+
for flow in flows:
|
|
430
|
+
dumped_flow = get_flow_as_json(flow, should_clean_json)
|
|
431
|
+
del dumped_flow["id"]
|
|
432
|
+
dump[flow.id] = dumped_flow
|
|
433
|
+
return dump
|
|
434
|
+
|
|
435
|
+
|
|
427
436
|
def get_flow_as_json(flow: Flow, should_clean_json: bool = False) -> Dict[str, Any]:
|
|
428
|
-
"""
|
|
429
|
-
Clean the Flow JSON by removing default values and empty fields.
|
|
437
|
+
"""Clean the Flow JSON by removing default values and empty fields.
|
|
430
438
|
|
|
431
439
|
Args:
|
|
432
440
|
flow: The Flow object to clean.
|
rasa/telemetry.py
CHANGED
|
@@ -1426,6 +1426,7 @@ def track_shell_started(model_type: Text, assistant_id: Text) -> None:
|
|
|
1426
1426
|
|
|
1427
1427
|
Args:
|
|
1428
1428
|
model_type: Type of the model, core / nlu or rasa.
|
|
1429
|
+
assistant_id: ID of the assistant being inspected.
|
|
1429
1430
|
"""
|
|
1430
1431
|
_track(
|
|
1431
1432
|
TELEMETRY_SHELL_STARTED_EVENT,
|
|
@@ -1997,7 +1998,7 @@ def _extract_stream_pii(event_broker: Optional["EventBroker"]) -> bool:
|
|
|
1997
1998
|
def track_privacy_enabled(
|
|
1998
1999
|
privacy_config: "PrivacyConfig", event_broker: Optional["EventBroker"]
|
|
1999
2000
|
) -> None:
|
|
2000
|
-
"""Track when PII management capability is enabled"""
|
|
2001
|
+
"""Track when PII management capability is enabled."""
|
|
2001
2002
|
stream_pii = _extract_stream_pii(event_broker)
|
|
2002
2003
|
privacy_properties = _extract_privacy_enabled_event_properties(
|
|
2003
2004
|
privacy_config, stream_pii
|
rasa/utils/io.py
CHANGED
|
@@ -26,6 +26,7 @@ from typing_extensions import Protocol
|
|
|
26
26
|
|
|
27
27
|
import rasa.shared.constants
|
|
28
28
|
import rasa.shared.utils.io
|
|
29
|
+
from rasa.shared.exceptions import RasaException
|
|
29
30
|
|
|
30
31
|
if TYPE_CHECKING:
|
|
31
32
|
from prompt_toolkit.validation import Validator
|
|
@@ -124,9 +125,7 @@ def create_path(file_path: Text) -> None:
|
|
|
124
125
|
def file_type_validator(
|
|
125
126
|
valid_file_types: List[Text], error_message: Text
|
|
126
127
|
) -> Type["Validator"]:
|
|
127
|
-
"""Creates a
|
|
128
|
-
file paths.
|
|
129
|
-
"""
|
|
128
|
+
"""Creates a file type validator class for the questionary package."""
|
|
130
129
|
|
|
131
130
|
def is_valid(path: Text) -> bool:
|
|
132
131
|
return path is not None and any(
|
|
@@ -137,9 +136,7 @@ def file_type_validator(
|
|
|
137
136
|
|
|
138
137
|
|
|
139
138
|
def not_empty_validator(error_message: Text) -> Type["Validator"]:
|
|
140
|
-
"""Creates a
|
|
141
|
-
that the user entered something other than whitespace.
|
|
142
|
-
"""
|
|
139
|
+
"""Creates a not empty validator class for the questionary package."""
|
|
143
140
|
|
|
144
141
|
def is_valid(input: Text) -> bool:
|
|
145
142
|
return input is not None and input.strip() != ""
|
|
@@ -150,9 +147,7 @@ def not_empty_validator(error_message: Text) -> Type["Validator"]:
|
|
|
150
147
|
def create_validator(
|
|
151
148
|
function: Callable[[Text], bool], error_message: Text
|
|
152
149
|
) -> Type["Validator"]:
|
|
153
|
-
"""Helper method to create
|
|
154
|
-
removed when questionary supports `Validator` objects.
|
|
155
|
-
"""
|
|
150
|
+
"""Helper method to create a validator class from a callable function."""
|
|
156
151
|
from prompt_toolkit.document import Document
|
|
157
152
|
from prompt_toolkit.validation import ValidationError, Validator
|
|
158
153
|
|
|
@@ -250,3 +245,26 @@ def write_yaml(
|
|
|
250
245
|
|
|
251
246
|
with Path(target).open("w", encoding="utf-8") as outfile:
|
|
252
247
|
dumper.dump(data, outfile, transform=transform)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
class InvalidPathException(RasaException):
|
|
251
|
+
"""Raised if a path is invalid - e.g. path traversal is detected."""
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
def subpath(parent: str, child: str) -> str:
|
|
255
|
+
"""Return the path to the child directory of the parent directory.
|
|
256
|
+
|
|
257
|
+
Ensures, that child doesn't navigate to parent directories. Prevents
|
|
258
|
+
path traversal. Raises an InvalidPathException if the path is invalid.
|
|
259
|
+
|
|
260
|
+
Based on Snyk's directory traversal mitigation:
|
|
261
|
+
https://learn.snyk.io/lesson/directory-traversal/
|
|
262
|
+
"""
|
|
263
|
+
safe_path = os.path.abspath(os.path.join(parent, child))
|
|
264
|
+
parent = os.path.abspath(parent)
|
|
265
|
+
|
|
266
|
+
common_base = os.path.commonpath([parent, safe_path])
|
|
267
|
+
if common_base != parent:
|
|
268
|
+
raise InvalidPathException(f"Invalid path: {safe_path}")
|
|
269
|
+
|
|
270
|
+
return safe_path
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.13.0a1.
|
|
3
|
+
Version: 3.13.0a1.dev7
|
|
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
|
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
rasa/__init__.py,sha256=YXG8RzVxiSJ__v-AewtV453YoCbmzWlHsU_4S0O2XpE,206
|
|
2
2
|
rasa/__main__.py,sha256=-PZSicdimOUsU-dkWu3x6eY1G6P8VwqZvB1ag02PoE8,6418
|
|
3
3
|
rasa/api.py,sha256=RY3SqtlOcdq4YZGgr6DOm-nUBpiA8l8uguUZOctL_7o,6320
|
|
4
|
+
rasa/builder/README.md,sha256=TnVfHKD-W4vcnHjGA53BMd9X7RJIeZQQe0cuCZXwFlo,3716
|
|
4
5
|
rasa/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
rasa/builder/
|
|
6
|
+
rasa/builder/config.py,sha256=_t01hBJMsjeOxavvRK2KQLZjER3Gqw953aLO6GyIigE,2186
|
|
7
|
+
rasa/builder/create_openai_vector_store.py,sha256=jAk1QzM4HiC0wjkn1031xBzLFGwVV4JUJMc50QZFIdw,6642
|
|
8
|
+
rasa/builder/exceptions.py,sha256=C3xJff1-zATBvFgbabI_NlZR1oNR7m2ITJHiO--n-Rs,1112
|
|
6
9
|
rasa/builder/llm-helper-schema.json,sha256=z5IJc_-2mZ9oQ-z-9WzTivOoqYsLXCAm8MIOTWy5rGs,1609
|
|
7
10
|
rasa/builder/llm_context.py,sha256=zy7htrXgS_QWJWeEj4TfseQgTI65whFJR_4GKm_iOvE,2826
|
|
8
|
-
rasa/builder/
|
|
11
|
+
rasa/builder/llm_helper_prompt.jinja2,sha256=AhfEzXYIMTmWgd2TgVmPVeCfojHA29IiuO6JhTOXXKY,9585
|
|
12
|
+
rasa/builder/llm_service.py,sha256=tFtIno9V5Fq2idJ2uJt8K9b3GeO9ic2ZWWYg3rKdufw,11480
|
|
13
|
+
rasa/builder/logging_utils.py,sha256=iPJoN2HhNlS14SKyZv0s0iIljrmP6A8s8C5btoDVOXM,1383
|
|
14
|
+
rasa/builder/main.py,sha256=M_c751NEnl14jI97WSZfL7M8BKydS1Uqzdkk20DEJsk,1587
|
|
15
|
+
rasa/builder/models.py,sha256=IFsVCTIE3cUeuwxZ0MHgB9jD8T354fPPh86bZ0QrGBg,4494
|
|
16
|
+
rasa/builder/project_generator.py,sha256=usioI683r8QGRLgz7GfSzgsL076Sej09_GhMIG58wmo,10167
|
|
9
17
|
rasa/builder/scrape_rasa_docs.py,sha256=HukkTCIh1rMCE8D_EtXGHy0aHtFBVrVTT_6Wpex3XQM,2428
|
|
10
|
-
rasa/builder/
|
|
18
|
+
rasa/builder/service.py,sha256=Gn3SIXuAGGPF6X0tmFiAcgJSQVPQgv3ts6w6JSpPONc,15898
|
|
19
|
+
rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
|
|
20
|
+
rasa/builder/training_service.py,sha256=B5miGx0rcDWFVfS_SWmrpMQBJ9fYov0BBbckznstQvM,3757
|
|
21
|
+
rasa/builder/validation_service.py,sha256=1QWGROFyblTPznYwjMnA-nRABDb8UQpDywZ11MHBThI,2292
|
|
11
22
|
rasa/cli/__init__.py,sha256=eO5vp9rFCANtbTVU-pxN3iMBKw4p9WRcgzytt9MzinY,115
|
|
12
23
|
rasa/cli/arguments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
24
|
rasa/cli/arguments/data.py,sha256=e3mYapaRIczM74P5genuXy1ORqIR4x20khQXUvy8JLA,3040
|
|
@@ -58,6 +69,23 @@ rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact.ym
|
|
|
58
69
|
rasa/cli/project_templates/default/e2e_tests/happy_paths/user_removes_contact_from_list.yml,sha256=5iMfRCbPpf08Jawog_fuXw-aR6nV0za0Cx60wiFwhhA,417
|
|
59
70
|
rasa/cli/project_templates/default/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
60
71
|
rasa/cli/project_templates/defaults.py,sha256=36XGO6Xky2SXuI3hfzNaOSPxaHzoGwsEzY1mQSpYqkI,4613
|
|
72
|
+
rasa/cli/project_templates/finance/config.yml,sha256=bmJ5X9nnuD2knwClniM9EFh11wstAbVvMvFR7nv-U2g,390
|
|
73
|
+
rasa/cli/project_templates/finance/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
74
|
+
rasa/cli/project_templates/finance/data/flows/transfer_money.yml,sha256=tHhUr17ViIpLYb_79WMI1eT7Hxs6JtcXJTcxL4D4VzA,123
|
|
75
|
+
rasa/cli/project_templates/finance/data/patterns/pattern_session_start.yml,sha256=m7Kyo738_25JeGM_HbvjOrNMQXCdGpaSlSVCicD1S28,175
|
|
76
|
+
rasa/cli/project_templates/finance/domain.yml,sha256=7AE4pREevtCLdPExhSByC7HKGnR6dyzh9ArLy9dRsRc,214
|
|
77
|
+
rasa/cli/project_templates/finance/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
78
|
+
rasa/cli/project_templates/plain/config.yml,sha256=bmJ5X9nnuD2knwClniM9EFh11wstAbVvMvFR7nv-U2g,390
|
|
79
|
+
rasa/cli/project_templates/plain/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
80
|
+
rasa/cli/project_templates/plain/data/patterns/pattern_session_start.yml,sha256=m7Kyo738_25JeGM_HbvjOrNMQXCdGpaSlSVCicD1S28,175
|
|
81
|
+
rasa/cli/project_templates/plain/domain.yml,sha256=fbHtsIff5tlBZ7bwj2NYDJ9_IAHvdKua1mKbiPIWjJE,124
|
|
82
|
+
rasa/cli/project_templates/plain/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
83
|
+
rasa/cli/project_templates/telecom/config.yml,sha256=bmJ5X9nnuD2knwClniM9EFh11wstAbVvMvFR7nv-U2g,390
|
|
84
|
+
rasa/cli/project_templates/telecom/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0uOD5J63M-my0__nvyBLYF0,1014
|
|
85
|
+
rasa/cli/project_templates/telecom/data/flows/upgrade_contract.yml,sha256=yVJOXjzvnsy5DgRFwiRLs9Rj6iYcXUFPyQyKJFF59EU,112
|
|
86
|
+
rasa/cli/project_templates/telecom/data/patterns/pattern_session_start.yml,sha256=m7Kyo738_25JeGM_HbvjOrNMQXCdGpaSlSVCicD1S28,175
|
|
87
|
+
rasa/cli/project_templates/telecom/domain.yml,sha256=yz7gk3jYdSI9OYG3KfDQneA48t6AxSi6gNdmUfMBKLI,206
|
|
88
|
+
rasa/cli/project_templates/telecom/endpoints.yml,sha256=YHMIzpxM7xyfhNOQLpZs1V-RgQvRdR8uc2SZsnKZDxg,1999
|
|
61
89
|
rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
90
|
rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
|
|
63
91
|
rasa/cli/project_templates/tutorial/config.yml,sha256=ASZCmp-2pziwZDqzzZ2SFScZp4e61BtxxDLc3fNumGM,235
|
|
@@ -67,7 +95,7 @@ rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHN
|
|
|
67
95
|
rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
|
|
68
96
|
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=HgnwIyGcWoMZGtQr9jFTzmlkAct8U9c3ueeLtshtH3I,1780
|
|
69
97
|
rasa/cli/run.py,sha256=QnmVCXORZambJzee1z3wMa3Ki8cPwSsImgQ2hbvbpuU,4632
|
|
70
|
-
rasa/cli/scaffold.py,sha256=
|
|
98
|
+
rasa/cli/scaffold.py,sha256=i_Zw7Y_ap_g2o54_Xj4FvRV3ySF7_g0w1ryMtquAq0c,8624
|
|
71
99
|
rasa/cli/shell.py,sha256=YTXn3_iDWJySY187BEJTRDxPoG-mqRtl17jqwqQ6hX4,4332
|
|
72
100
|
rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
101
|
rasa/cli/studio/download.py,sha256=YfX_HcvNuY1MoCmvjJ5sORa1vC9lxj38dNk5mmkU3N8,1840
|
|
@@ -86,7 +114,7 @@ rasa/cli/x.py,sha256=T10e6bVUx5BadZOt3JJ4T5EByiR5jJ2hv5ExXOnt9F8,6839
|
|
|
86
114
|
rasa/constants.py,sha256=ddT6MLksS96Jeav0waBMu3Z5yocBPgC695-IYE9EbXM,1389
|
|
87
115
|
rasa/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
116
|
rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
-
rasa/core/actions/action.py,sha256=
|
|
117
|
+
rasa/core/actions/action.py,sha256=s7Zdje0SoMgIz5AL0ltLUauRdoG9hLxeaAHjHWz_T60,43224
|
|
90
118
|
rasa/core/actions/action_clean_stack.py,sha256=xUP-2ipPsPAnAiwP17c-ezmHPSrV4JSUZr-eSgPQwIs,2279
|
|
91
119
|
rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
|
|
92
120
|
rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
|
|
@@ -260,7 +288,7 @@ rasa/core/channels/rest.py,sha256=LWBYBdVzOz5Vv5tZCkB1QA7LxXJFTeC87CQLAi_ZGeI,73
|
|
|
260
288
|
rasa/core/channels/rocketchat.py,sha256=hajaH6549CjEYFM5jSapw1DQKBPKTXbn7cVSuZzknmI,5999
|
|
261
289
|
rasa/core/channels/slack.py,sha256=jVsTTUu9wUjukPoIsAhbee9o0QFUMCNlQHbR8LTcMBc,24406
|
|
262
290
|
rasa/core/channels/socketio.py,sha256=ZEavmx2on9AH73cuIFSGMKn1LHJhzcQVaqrFz7SH-CE,11348
|
|
263
|
-
rasa/core/channels/studio_chat.py,sha256=
|
|
291
|
+
rasa/core/channels/studio_chat.py,sha256=b61PxuvvRNStmVsDHiz_INQ1N14KbeIY3gztt4QQi28,20007
|
|
264
292
|
rasa/core/channels/telegram.py,sha256=TKVknsk3U9tYeY1a8bzlhqkltWmZfGSOvrcmwa9qozc,12499
|
|
265
293
|
rasa/core/channels/twilio.py,sha256=2BTQpyx0b0yPpc0A2BHYfxLPgodrLGLs8nq6i3lVGAM,5906
|
|
266
294
|
rasa/core/channels/vier_cvg.py,sha256=5O4yx0TDQIMppvlCxTOzmPB60CA-vqQXqWQ7upfrTO0,13496
|
|
@@ -566,12 +594,12 @@ rasa/markers/validate.py,sha256=dZvMTcDK_sji9OP8JY4kUcjeIScLF93C3CKTWK8DplI,708
|
|
|
566
594
|
rasa/model.py,sha256=cAbQXvfZXBKHAj79Z0-mCy29hSSWp2KaroScgDeTfJw,3489
|
|
567
595
|
rasa/model_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
568
596
|
rasa/model_manager/config.py,sha256=8upZP4CokMBy0imiiPvINJuLW4JOQ326dPiJ041jJUI,1231
|
|
569
|
-
rasa/model_manager/model_api.py,sha256
|
|
570
|
-
rasa/model_manager/runner_service.py,sha256=
|
|
597
|
+
rasa/model_manager/model_api.py,sha256=8w8Jv-IofRb0UOsAFjkL4Et1HhWtK0lzQ1lVekR0wr8,23885
|
|
598
|
+
rasa/model_manager/runner_service.py,sha256=WrqtE1iqalCPx8glL-hI79li8Yg7TPZSbSKwWuTpea8,8895
|
|
571
599
|
rasa/model_manager/socket_bridge.py,sha256=wvoWqNwEEIM9sJEtdC_2AzFkMpkAG0CZpf6MA0NZ-2E,5299
|
|
572
600
|
rasa/model_manager/studio_jwt_auth.py,sha256=uls2QiHUlUrR3fOzZssW4UaAMJMfnPMZeV1aDmZIT0E,2645
|
|
573
|
-
rasa/model_manager/trainer_service.py,sha256=
|
|
574
|
-
rasa/model_manager/utils.py,sha256=
|
|
601
|
+
rasa/model_manager/trainer_service.py,sha256=qT1rFHJjJsrqRMS1CL9Fzb6bLJrWqakSJvurpsd5PFM,10542
|
|
602
|
+
rasa/model_manager/utils.py,sha256=0tYmzBcta_9h4cpbHtrH1hUqd-qzjl0xmveStTBPmGo,1695
|
|
575
603
|
rasa/model_manager/warm_rasa_process.py,sha256=2vg8gBEUvPrr6C5W-fxtWWSajksrOaT83CTk6S4KCkg,5843
|
|
576
604
|
rasa/model_service.py,sha256=XXCaiLj2xq58n05W3R1jmTIv-V8f_7PG30kVpRxf71Y,3727
|
|
577
605
|
rasa/model_testing.py,sha256=eZw7l8Zz3HkH_ZPBurY93HzzudHdoQn8HBnDdZSysAY,14929
|
|
@@ -649,7 +677,7 @@ rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
649
677
|
rasa/shared/core/command_payload_reader.py,sha256=aWmEe6NyGdGZ8qaCPxGZu1frLROv04SFbwPpZNrtj7Q,3741
|
|
650
678
|
rasa/shared/core/constants.py,sha256=SAguvSd9pzXj1QVmiFgInSj_HKOmIFAa887CLnhEMkc,6398
|
|
651
679
|
rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1hG5c,1384
|
|
652
|
-
rasa/shared/core/domain.py,sha256=
|
|
680
|
+
rasa/shared/core/domain.py,sha256=_0rYtm9m_NJGadFOoq2SsJvSGZj4F_owXxdQTXXIyI0,88498
|
|
653
681
|
rasa/shared/core/events.py,sha256=FAWCA0JXim89u4AcWLKCt4F9A0pkYDE5NhCIyiKwWTM,89973
|
|
654
682
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
655
683
|
rasa/shared/core/flows/constants.py,sha256=0HN3k-apOb_fi8E2AJtUxMxro8jwFVyXQpil-tHEzbM,340
|
|
@@ -675,7 +703,7 @@ rasa/shared/core/flows/steps/set_slots.py,sha256=NnPyHxY5gBiJ83qTbxRmgKh8BIMdi9U
|
|
|
675
703
|
rasa/shared/core/flows/steps/start.py,sha256=AJpKIm0S3GZYLEs3ybXW0Zrq03Pu9lvirNahiUy2I6k,1010
|
|
676
704
|
rasa/shared/core/flows/utils.py,sha256=wqPWuEgYcbGMTs6wuckX400Sq1_Jz8yKYd2t91p3e8U,2270
|
|
677
705
|
rasa/shared/core/flows/validation.py,sha256=-lJAnX2sAOiIcwAmcwDRafn4Yer9duHJrcvv7zYOGoE,28084
|
|
678
|
-
rasa/shared/core/flows/yaml_flows_io.py,sha256=
|
|
706
|
+
rasa/shared/core/flows/yaml_flows_io.py,sha256=Rms-ghe0DUX2Kvd7kZRIETSGaHCoGvtgw08LCmch00E,18436
|
|
679
707
|
rasa/shared/core/generator.py,sha256=UAuBPu5UjUhL9djVK-PvrWZcNhRACOEgnRsTleV7eeY,35686
|
|
680
708
|
rasa/shared/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
681
709
|
rasa/shared/core/policies/utils.py,sha256=rWE_-48Ovc__V7wOKCJ-2lTerVRtN3iRHV4ZvuU2b2g,3070
|
|
@@ -802,7 +830,7 @@ rasa/studio/push.py,sha256=TSXLkJQgNhP6nBNdhoIanetnKWLAGJTPjKlqt_sdxGk,4024
|
|
|
802
830
|
rasa/studio/results_logger.py,sha256=lwKROoQjzzJVnFoceLQ-z-5Hg35TfHo-8R4MDrMLYHY,5126
|
|
803
831
|
rasa/studio/train.py,sha256=gfPtirITzBDo9gV4hqDNSwPYtVp_22cq8OWI6YIBgyk,4243
|
|
804
832
|
rasa/studio/upload.py,sha256=tw2vlWVmOMn8s_67qBRkZuKEhYe33lKgLg2uYnzmDp4,20730
|
|
805
|
-
rasa/telemetry.py,sha256=
|
|
833
|
+
rasa/telemetry.py,sha256=hcCztZ7DU-azyGV2-jIuSUmV3pAceeiwfpkM84w8GaI,69772
|
|
806
834
|
rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
807
835
|
rasa/tracing/config.py,sha256=Ev4U0Z_P-0JMxEtyjWFgyaoSluNlAm5tTm5wBr-7F0I,13083
|
|
808
836
|
rasa/tracing/constants.py,sha256=l7RUgan0BebsZxZifLDfj9_lWIqdStJ-3Ny-44wTLrM,3690
|
|
@@ -818,7 +846,7 @@ rasa/utils/cli.py,sha256=L-DT4nPdVBWfc2m1COHrziLitVWJxazSreb6JLbTho4,865
|
|
|
818
846
|
rasa/utils/common.py,sha256=bddGYVq7Bx_WhbS2rjxRWTUiHlm62XnBGYXi9IGg2s8,21120
|
|
819
847
|
rasa/utils/converter.py,sha256=H4LHpoAK7MXMmvNZG_uSn0gbccCJvHtsA2-6Zya4u6M,1656
|
|
820
848
|
rasa/utils/endpoints.py,sha256=jX9xSI_3KJ-NpzymyfaO-Zj-ISaWbA4ql2Kx3NulBvE,10905
|
|
821
|
-
rasa/utils/io.py,sha256=
|
|
849
|
+
rasa/utils/io.py,sha256=E5zl3j2k7_-o-tzXKRkW5zcXcslnj7R_cke2AYKZ14g,7800
|
|
822
850
|
rasa/utils/json_utils.py,sha256=SKtJzzsIRCAgNEQiBvWDDm9euMRBgJ-TyvCi2tXHH1w,1689
|
|
823
851
|
rasa/utils/licensing.py,sha256=_YGELCUjBF9rzVwlKoP1YfnqskszHUqyd-_qVpXr5Kw,20508
|
|
824
852
|
rasa/utils/log_utils.py,sha256=ihkghF8HQ-9nAH04OE433aaYXamSWuw8zBMBIRFewlY,5615
|
|
@@ -848,9 +876,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
|
|
|
848
876
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
849
877
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
850
878
|
rasa/validator.py,sha256=IRhLfcgCpps0wSpokOvUGNaY8t8GsmeSmPOUVRKeOeE,83087
|
|
851
|
-
rasa/version.py,sha256=
|
|
852
|
-
rasa_pro-3.13.0a1.
|
|
853
|
-
rasa_pro-3.13.0a1.
|
|
854
|
-
rasa_pro-3.13.0a1.
|
|
855
|
-
rasa_pro-3.13.0a1.
|
|
856
|
-
rasa_pro-3.13.0a1.
|
|
879
|
+
rasa/version.py,sha256=5U_MU56SO0hh8q1wMp_k6TcF-3rwdigisG6mhwdItww,124
|
|
880
|
+
rasa_pro-3.13.0a1.dev7.dist-info/METADATA,sha256=_1Q0WAyf7toGdxzYdcn_BcVcn48GKXunoXh93dPPSAw,10562
|
|
881
|
+
rasa_pro-3.13.0a1.dev7.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
882
|
+
rasa_pro-3.13.0a1.dev7.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
883
|
+
rasa_pro-3.13.0a1.dev7.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
884
|
+
rasa_pro-3.13.0a1.dev7.dist-info/RECORD,,
|