rasa-pro 3.11.0a2__py3-none-any.whl → 3.11.0a4.dev1__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.
- README.md +17 -396
- rasa/api.py +4 -0
- rasa/cli/arguments/train.py +14 -0
- rasa/cli/inspect.py +1 -1
- rasa/cli/interactive.py +1 -0
- rasa/cli/project_templates/calm/endpoints.yml +7 -2
- rasa/cli/project_templates/tutorial/endpoints.yml +7 -2
- rasa/cli/train.py +3 -0
- rasa/constants.py +2 -0
- rasa/core/actions/action.py +75 -33
- rasa/core/actions/action_repeat_bot_messages.py +72 -0
- rasa/core/actions/e2e_stub_custom_action_executor.py +5 -1
- rasa/core/actions/http_custom_action_executor.py +4 -0
- rasa/core/channels/socketio.py +5 -1
- rasa/core/channels/voice_ready/utils.py +6 -5
- rasa/core/channels/voice_stream/browser_audio.py +1 -1
- rasa/core/channels/voice_stream/twilio_media_streams.py +1 -1
- rasa/core/nlg/contextual_response_rephraser.py +19 -2
- rasa/core/persistor.py +87 -21
- rasa/core/utils.py +53 -22
- rasa/dialogue_understanding/commands/__init__.py +4 -0
- rasa/dialogue_understanding/commands/repeat_bot_messages_command.py +60 -0
- rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2 +3 -0
- rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +19 -0
- rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +5 -0
- rasa/dialogue_understanding/patterns/repeat.py +37 -0
- rasa/e2e_test/utils/io.py +2 -0
- rasa/model_manager/__init__.py +0 -0
- rasa/model_manager/config.py +18 -0
- rasa/model_manager/model_api.py +469 -0
- rasa/model_manager/runner_service.py +279 -0
- rasa/model_manager/socket_bridge.py +143 -0
- rasa/model_manager/studio_jwt_auth.py +86 -0
- rasa/model_manager/trainer_service.py +332 -0
- rasa/model_manager/utils.py +66 -0
- rasa/model_service.py +109 -0
- rasa/model_training.py +25 -7
- rasa/shared/constants.py +6 -0
- rasa/shared/core/constants.py +2 -0
- rasa/shared/providers/llm/self_hosted_llm_client.py +15 -3
- rasa/shared/utils/yaml.py +10 -1
- rasa/utils/endpoints.py +27 -1
- rasa/version.py +1 -1
- rasa_pro-3.11.0a4.dev1.dist-info/METADATA +197 -0
- {rasa_pro-3.11.0a2.dist-info → rasa_pro-3.11.0a4.dev1.dist-info}/RECORD +48 -38
- rasa/keys +0 -1
- rasa/llm_fine_tuning/notebooks/unsloth_finetuning.ipynb +0 -407
- rasa_pro-3.11.0a2.dist-info/METADATA +0 -576
- {rasa_pro-3.11.0a2.dist-info → rasa_pro-3.11.0a4.dev1.dist-info}/NOTICE +0 -0
- {rasa_pro-3.11.0a2.dist-info → rasa_pro-3.11.0a4.dev1.dist-info}/WHEEL +0 -0
- {rasa_pro-3.11.0a2.dist-info → rasa_pro-3.11.0a4.dev1.dist-info}/entry_points.txt +0 -0
|
@@ -4,9 +4,13 @@ from litellm import (
|
|
|
4
4
|
atext_completion,
|
|
5
5
|
)
|
|
6
6
|
import logging
|
|
7
|
+
import os
|
|
7
8
|
import structlog
|
|
8
9
|
|
|
9
|
-
from rasa.shared.constants import
|
|
10
|
+
from rasa.shared.constants import (
|
|
11
|
+
SELF_HOSTED_VLLM_PREFIX,
|
|
12
|
+
SELF_HOSTED_VLLM_API_KEY_ENV_VAR,
|
|
13
|
+
)
|
|
10
14
|
from rasa.shared.providers._configs.self_hosted_llm_client_config import (
|
|
11
15
|
SelfHostedLLMClientConfig,
|
|
12
16
|
)
|
|
@@ -57,6 +61,7 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
57
61
|
self._api_version = api_version
|
|
58
62
|
self._use_chat_completions_endpoint = use_chat_completions_endpoint
|
|
59
63
|
self._extra_parameters = kwargs or {}
|
|
64
|
+
self._apply_dummy_api_key_if_missing()
|
|
60
65
|
|
|
61
66
|
@classmethod
|
|
62
67
|
def from_config(cls, config: Dict[str, Any]) -> "SelfHostedLLMClient":
|
|
@@ -157,8 +162,8 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
157
162
|
|
|
158
163
|
<openai>/<model or deployment name>
|
|
159
164
|
"""
|
|
160
|
-
if self.model and f"{
|
|
161
|
-
return f"{
|
|
165
|
+
if self.model and f"{SELF_HOSTED_VLLM_PREFIX}/" not in self.model:
|
|
166
|
+
return f"{SELF_HOSTED_VLLM_PREFIX}/{self.model}"
|
|
162
167
|
return self.model
|
|
163
168
|
|
|
164
169
|
@property
|
|
@@ -279,3 +284,10 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
279
284
|
formatted_response=formatted_response.to_dict(),
|
|
280
285
|
)
|
|
281
286
|
return formatted_response
|
|
287
|
+
|
|
288
|
+
@staticmethod
|
|
289
|
+
def _apply_dummy_api_key_if_missing() -> None:
|
|
290
|
+
if not os.getenv(SELF_HOSTED_VLLM_API_KEY_ENV_VAR):
|
|
291
|
+
os.environ[SELF_HOSTED_VLLM_API_KEY_ENV_VAR] = (
|
|
292
|
+
"dummy_self_hosted_llm_api_key"
|
|
293
|
+
)
|
rasa/shared/utils/yaml.py
CHANGED
|
@@ -31,6 +31,8 @@ from rasa.shared.constants import (
|
|
|
31
31
|
LATEST_TRAINING_DATA_FORMAT_VERSION,
|
|
32
32
|
SCHEMA_EXTENSIONS_FILE,
|
|
33
33
|
RESPONSES_SCHEMA_FILE,
|
|
34
|
+
ORIGINAL_VALUE,
|
|
35
|
+
RESOLVED_VALUE,
|
|
34
36
|
)
|
|
35
37
|
from rasa.shared.exceptions import (
|
|
36
38
|
YamlException,
|
|
@@ -84,7 +86,9 @@ def replace_environment_variables() -> None:
|
|
|
84
86
|
env_var_pattern = re.compile(r"^(.*)\$\{(.*)\}(.*)$")
|
|
85
87
|
yaml.Resolver.add_implicit_resolver("!env_var", env_var_pattern, None)
|
|
86
88
|
|
|
87
|
-
def env_var_constructor(
|
|
89
|
+
def env_var_constructor(
|
|
90
|
+
loader: BaseConstructor, node: ScalarNode
|
|
91
|
+
) -> Union[dict, str]:
|
|
88
92
|
"""Process environment variables found in the YAML."""
|
|
89
93
|
value = loader.construct_scalar(node)
|
|
90
94
|
expanded_vars = os.path.expandvars(value)
|
|
@@ -98,6 +102,11 @@ def replace_environment_variables() -> None:
|
|
|
98
102
|
f"Please make sure to also set these "
|
|
99
103
|
f"environment variables: '{not_expanded}'."
|
|
100
104
|
)
|
|
105
|
+
if expanded_vars:
|
|
106
|
+
# if the environment variable is referenced using the ${} syntax
|
|
107
|
+
# then we return a dictionary with the original value and the resolved,
|
|
108
|
+
# value. So that the graph components can use the original value.
|
|
109
|
+
return {ORIGINAL_VALUE: value, RESOLVED_VALUE: expanded_vars}
|
|
101
110
|
return expanded_vars
|
|
102
111
|
|
|
103
112
|
yaml.SafeConstructor.add_constructor("!env_var", env_var_constructor)
|
rasa/utils/endpoints.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import ssl
|
|
3
3
|
from types import ModuleType
|
|
4
|
-
from typing import Any, Optional, Text, Dict, Union
|
|
4
|
+
from typing import Any, List, Optional, Text, Dict, Union
|
|
5
5
|
|
|
6
6
|
import aiohttp
|
|
7
7
|
import structlog
|
|
@@ -41,6 +41,32 @@ def read_endpoint_config(
|
|
|
41
41
|
return None
|
|
42
42
|
|
|
43
43
|
|
|
44
|
+
def read_property_config_from_endpoints_file(
|
|
45
|
+
filename: str, property_name: str
|
|
46
|
+
) -> Optional[Union[Dict[str, Any], List]]:
|
|
47
|
+
"""Read a property from an endpoint configuration file."""
|
|
48
|
+
if not filename:
|
|
49
|
+
return None
|
|
50
|
+
|
|
51
|
+
try:
|
|
52
|
+
content = read_config_file(filename)
|
|
53
|
+
|
|
54
|
+
if content.get(property_name) is None:
|
|
55
|
+
return None
|
|
56
|
+
|
|
57
|
+
return content[property_name]
|
|
58
|
+
except FileNotFoundError:
|
|
59
|
+
structlogger.error(
|
|
60
|
+
"endpoint.read.failed_no_such_file",
|
|
61
|
+
filename=os.path.abspath(filename),
|
|
62
|
+
event_info=(
|
|
63
|
+
"Failed to read endpoint configuration file - "
|
|
64
|
+
"the file was not found."
|
|
65
|
+
),
|
|
66
|
+
)
|
|
67
|
+
return None
|
|
68
|
+
|
|
69
|
+
|
|
44
70
|
def concat_url(base: Text, subpath: Optional[Text]) -> Text:
|
|
45
71
|
"""Append a subpath to a base url.
|
|
46
72
|
|
rasa/version.py
CHANGED
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: rasa-pro
|
|
3
|
+
Version: 3.11.0a4.dev1
|
|
4
|
+
Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
|
|
5
|
+
Home-page: https://rasa.com
|
|
6
|
+
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
7
|
+
Author: Rasa Technologies GmbH
|
|
8
|
+
Author-email: hi@rasa.com
|
|
9
|
+
Maintainer: Tom Bocklisch
|
|
10
|
+
Maintainer-email: tom@rasa.com
|
|
11
|
+
Requires-Python: >=3.9,<3.12
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
19
|
+
Provides-Extra: full
|
|
20
|
+
Provides-Extra: gh-release-notes
|
|
21
|
+
Provides-Extra: jieba
|
|
22
|
+
Provides-Extra: metal
|
|
23
|
+
Provides-Extra: mlflow
|
|
24
|
+
Provides-Extra: spacy
|
|
25
|
+
Provides-Extra: transformers
|
|
26
|
+
Requires-Dist: CacheControl (>=0.14.0,<0.15.0)
|
|
27
|
+
Requires-Dist: PyJWT[crypto] (>=2.8.0,<3.0.0)
|
|
28
|
+
Requires-Dist: SQLAlchemy (>=2.0.22,<2.1.0)
|
|
29
|
+
Requires-Dist: absl-py (>=2.0,<2.1)
|
|
30
|
+
Requires-Dist: aio-pika (>=8.2.3,<9.4.4)
|
|
31
|
+
Requires-Dist: aiogram (>=2.15,<2.26)
|
|
32
|
+
Requires-Dist: aiohttp (>=3.9.4,<3.10)
|
|
33
|
+
Requires-Dist: apscheduler (>=3.10,<3.11)
|
|
34
|
+
Requires-Dist: attrs (>=23.1,<23.2)
|
|
35
|
+
Requires-Dist: azure-storage-blob (>=12.16.0,<12.17.0)
|
|
36
|
+
Requires-Dist: boto3 (>=1.35.15,<1.36.0)
|
|
37
|
+
Requires-Dist: certifi (>=2024.07.04)
|
|
38
|
+
Requires-Dist: cloudpickle (>=2.2.1,<3.1)
|
|
39
|
+
Requires-Dist: colorama (>=0.4.6,<0.5.0) ; sys_platform == "win32"
|
|
40
|
+
Requires-Dist: colorclass (>=2.2,<2.3)
|
|
41
|
+
Requires-Dist: coloredlogs (>=15,<16)
|
|
42
|
+
Requires-Dist: colorhash (>=2.0,<2.1.0)
|
|
43
|
+
Requires-Dist: confluent-kafka (>=2.3.0,<3.0.0)
|
|
44
|
+
Requires-Dist: cryptography (>=42.0.5)
|
|
45
|
+
Requires-Dist: cvg-python-sdk (>=0.5.1,<0.6.0)
|
|
46
|
+
Requires-Dist: dask (>=2024.7.0,<2024.8.0)
|
|
47
|
+
Requires-Dist: diskcache (>=5.6.3,<5.7.0)
|
|
48
|
+
Requires-Dist: dnspython (==2.6.1)
|
|
49
|
+
Requires-Dist: faiss-cpu (>=1.7.4,<2.0.0)
|
|
50
|
+
Requires-Dist: faker (>=26.0.0,<27.0.0)
|
|
51
|
+
Requires-Dist: fbmessenger (>=6.0.0,<6.1.0)
|
|
52
|
+
Requires-Dist: github3.py (>=3.2.0,<3.3.0) ; extra == "gh-release-notes"
|
|
53
|
+
Requires-Dist: gitpython (>=3.1.41,<3.2.0) ; extra == "full"
|
|
54
|
+
Requires-Dist: google-auth (>=2.23.4,<3)
|
|
55
|
+
Requires-Dist: google-cloud-storage (>=2.14.0,<3.0.0)
|
|
56
|
+
Requires-Dist: hvac (>=1.2.1,<2.0.0)
|
|
57
|
+
Requires-Dist: importlib-metadata (>=8.5.0,<8.6.0)
|
|
58
|
+
Requires-Dist: importlib-resources (==6.1.3)
|
|
59
|
+
Requires-Dist: jieba (>=0.42.1,<0.43) ; extra == "jieba" or extra == "full"
|
|
60
|
+
Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
|
|
61
|
+
Requires-Dist: joblib (>=1.2.0,<1.3.0)
|
|
62
|
+
Requires-Dist: jsonpatch (>=1.33,<2.0)
|
|
63
|
+
Requires-Dist: jsonpickle (>=3.0,<3.1)
|
|
64
|
+
Requires-Dist: jsonschema (>=4.22)
|
|
65
|
+
Requires-Dist: keras (==2.14.0)
|
|
66
|
+
Requires-Dist: langchain (>=0.2.0,<0.3.0)
|
|
67
|
+
Requires-Dist: langchain-community (>=0.2.0,<0.3.0)
|
|
68
|
+
Requires-Dist: litellm (>=1.50.0,<1.51.0)
|
|
69
|
+
Requires-Dist: matplotlib (>=3.7,<3.8)
|
|
70
|
+
Requires-Dist: mattermostwrapper (>=2.2,<2.3)
|
|
71
|
+
Requires-Dist: mlflow (>=2.15.1,<3.0.0) ; extra == "mlflow"
|
|
72
|
+
Requires-Dist: networkx (>=3.1,<3.2)
|
|
73
|
+
Requires-Dist: numpy (>=1.23.5,<1.25.0) ; python_version >= "3.9" and python_version < "3.11"
|
|
74
|
+
Requires-Dist: openai (>=1.52.0,<1.53.0)
|
|
75
|
+
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
|
|
76
|
+
Requires-Dist: opentelemetry-api (>=1.16.0,<1.17.0)
|
|
77
|
+
Requires-Dist: opentelemetry-exporter-jaeger (>=1.16.0,<1.17.0)
|
|
78
|
+
Requires-Dist: opentelemetry-exporter-otlp (>=1.16.0,<1.17.0)
|
|
79
|
+
Requires-Dist: opentelemetry-sdk (>=1.16.0,<1.17.0)
|
|
80
|
+
Requires-Dist: packaging (>=23.2,<23.3)
|
|
81
|
+
Requires-Dist: pep440-version-utils (>=1.1.0,<1.2.0)
|
|
82
|
+
Requires-Dist: pluggy (>=1.2.0,<2.0.0)
|
|
83
|
+
Requires-Dist: portalocker (>=2.7.0,<3.0.0)
|
|
84
|
+
Requires-Dist: presidio-analyzer (>=2.2.33,<2.2.34)
|
|
85
|
+
Requires-Dist: presidio-anonymizer (>=2.2.354,<3.0.0)
|
|
86
|
+
Requires-Dist: prompt-toolkit (>=3.0.28,<3.0.29)
|
|
87
|
+
Requires-Dist: protobuf (>=4.23.3,<4.25.4)
|
|
88
|
+
Requires-Dist: psutil (>=5.9.5,<6.0.0)
|
|
89
|
+
Requires-Dist: psycopg2-binary (>=2.9.9,<2.10.0)
|
|
90
|
+
Requires-Dist: pycountry (>=22.3.5,<23.0.0)
|
|
91
|
+
Requires-Dist: pydantic (>=2.0,<3.0)
|
|
92
|
+
Requires-Dist: pydot (>=1.4,<1.5)
|
|
93
|
+
Requires-Dist: pykwalify (>=1.8,<1.9)
|
|
94
|
+
Requires-Dist: pymilvus (<2.4.2)
|
|
95
|
+
Requires-Dist: pymongo (>=4.10.1,<4.11.0)
|
|
96
|
+
Requires-Dist: pypred (>=0.4.0,<0.5.0)
|
|
97
|
+
Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
|
|
98
|
+
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
99
|
+
Requires-Dist: python-engineio (>=4.5.1,<6,!=5.0.0)
|
|
100
|
+
Requires-Dist: python-keycloak (>=3.12.0,<4.0.0)
|
|
101
|
+
Requires-Dist: python-socketio (>=5.8,<6)
|
|
102
|
+
Requires-Dist: pytz (>=2022.7.1,<2023.0)
|
|
103
|
+
Requires-Dist: pyyaml (>=6.0)
|
|
104
|
+
Requires-Dist: qdrant-client (>=1.9.0,<2.0.0)
|
|
105
|
+
Requires-Dist: questionary (>=1.10.0,<2.1.0)
|
|
106
|
+
Requires-Dist: randomname (>=0.2.1,<0.3.0)
|
|
107
|
+
Requires-Dist: rasa-sdk (==3.11.0.dev1)
|
|
108
|
+
Requires-Dist: redis (>=4.6.0,<6.0)
|
|
109
|
+
Requires-Dist: regex (>=2022.10.31,<2022.11)
|
|
110
|
+
Requires-Dist: requests (>=2.31.0,<2.32.0)
|
|
111
|
+
Requires-Dist: rich (>=13.4.2,<14.0.0)
|
|
112
|
+
Requires-Dist: rocketchat_API (>=1.30.0,<1.31.0)
|
|
113
|
+
Requires-Dist: ruamel.yaml (>=0.17.21,<0.17.22)
|
|
114
|
+
Requires-Dist: sanic (>=22.12,<22.13)
|
|
115
|
+
Requires-Dist: sanic-cors (>=2.2.0,<2.3.0)
|
|
116
|
+
Requires-Dist: sanic-jwt (>=1.8.0,<2.0.0)
|
|
117
|
+
Requires-Dist: sanic-routing (>=22.8.0,<23.0.0)
|
|
118
|
+
Requires-Dist: scikit-learn (>=1.1.3,<1.2) ; python_version >= "3.9" and python_version < "3.11"
|
|
119
|
+
Requires-Dist: scipy (>=1.10.1,<1.11.0) ; python_version >= "3.9" and python_version < "3.11"
|
|
120
|
+
Requires-Dist: sentencepiece[sentencepiece] (>=0.1.99,<0.2.0) ; extra == "transformers" or extra == "full"
|
|
121
|
+
Requires-Dist: sentry-sdk (>=1.14.0,<1.15.0)
|
|
122
|
+
Requires-Dist: setuptools (>=70.0.0,<70.1.0)
|
|
123
|
+
Requires-Dist: sklearn-crfsuite (>=0.3.6,<0.4.0)
|
|
124
|
+
Requires-Dist: slack-sdk (>=3.27.1,<4.0.0)
|
|
125
|
+
Requires-Dist: spacy (>=3.5.4,<4.0.0) ; extra == "spacy" or extra == "full"
|
|
126
|
+
Requires-Dist: structlog (>=23.1.0,<23.2.0)
|
|
127
|
+
Requires-Dist: structlog-sentry (>=2.0.3,<3.0.0)
|
|
128
|
+
Requires-Dist: tarsafe (>=0.0.5,<0.0.6)
|
|
129
|
+
Requires-Dist: tenacity (>=8.4.1,<8.5.0)
|
|
130
|
+
Requires-Dist: tensorflow (==2.14.1) ; sys_platform != "darwin" or platform_machine != "arm64"
|
|
131
|
+
Requires-Dist: tensorflow-cpu-aws (==2.14.1) ; sys_platform == "linux" and (platform_machine == "arm64" or platform_machine == "aarch64")
|
|
132
|
+
Requires-Dist: tensorflow-intel (==2.14.1) ; sys_platform == "win32"
|
|
133
|
+
Requires-Dist: tensorflow-io-gcs-filesystem (==0.31) ; sys_platform == "win32"
|
|
134
|
+
Requires-Dist: tensorflow-io-gcs-filesystem (==0.34) ; sys_platform == "darwin" and platform_machine != "arm64"
|
|
135
|
+
Requires-Dist: tensorflow-io-gcs-filesystem (==0.34) ; sys_platform == "linux"
|
|
136
|
+
Requires-Dist: tensorflow-macos (==2.14.1) ; sys_platform == "darwin" and platform_machine == "arm64"
|
|
137
|
+
Requires-Dist: tensorflow-metal (==1.1.0) ; (sys_platform == "darwin" and platform_machine == "arm64") and (extra == "metal")
|
|
138
|
+
Requires-Dist: tensorflow-text (==2.14.0) ; sys_platform != "win32" and (platform_machine != "arm64" and platform_machine != "aarch64")
|
|
139
|
+
Requires-Dist: tensorflow_hub (>=0.13.0,<0.14.0)
|
|
140
|
+
Requires-Dist: terminaltables (>=3.1.10,<3.2.0)
|
|
141
|
+
Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
|
|
142
|
+
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
143
|
+
Requires-Dist: transformers (>=4.36.2,<4.37.0) ; extra == "transformers" or extra == "full"
|
|
144
|
+
Requires-Dist: twilio (>=8.4,<8.5)
|
|
145
|
+
Requires-Dist: types-protobuf (==4.25.0.20240417)
|
|
146
|
+
Requires-Dist: typing-extensions (>=4.7.1,<5.0.0)
|
|
147
|
+
Requires-Dist: typing-utils (>=0.1.0,<0.2.0)
|
|
148
|
+
Requires-Dist: ujson (>=5.8,<6.0)
|
|
149
|
+
Requires-Dist: webexteamssdk (>=1.6.1,<1.7.0)
|
|
150
|
+
Requires-Dist: websockets (>=10.4,<11.0)
|
|
151
|
+
Requires-Dist: wheel (>=0.40.0)
|
|
152
|
+
Project-URL: Documentation, https://rasa.com/docs
|
|
153
|
+
Project-URL: Repository, https://github.com/rasahq/rasa
|
|
154
|
+
Description-Content-Type: text/markdown
|
|
155
|
+
|
|
156
|
+
<h1 align="center">Rasa Pro</h1>
|
|
157
|
+
|
|
158
|
+
<div align="center">
|
|
159
|
+
|
|
160
|
+
[](https://github.com/RasaHQ/rasa-private/actions)
|
|
161
|
+
[](https://sonarcloud.io/summary/new_code?id=RasaHQ_rasa)
|
|
162
|
+
[](https://rasa.com/docs/rasa-pro/)
|
|
163
|
+
|
|
164
|
+
</div>
|
|
165
|
+
|
|
166
|
+
<hr />
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
Rasa Pro is a framework for building scalable, dynamic conversational AI assistants that integrate large language models (LLMs) to enable more contextually aware and agentic interactions. Whether you’re new to conversational AI or an experienced developer, Rasa Pro offers enhanced flexibility, control, and performance for mission-critical applications.
|
|
170
|
+
|
|
171
|
+
Building on the foundation of Rasa Open Source, Rasa Pro adds advanced features like CALM (Conversational AI with Language Models) and Dialogue Understanding (DU), which enable developers to shift from traditional intent-driven systems to LLM-based agents. This allows for more robust, responsive interactions that adhere strictly to business logic, while reducing risks like prompt injection and minimizing hallucinations.
|
|
172
|
+
|
|
173
|
+
**Key Features:**
|
|
174
|
+
|
|
175
|
+
- **Flows for Business Logic:** Easily define business logic through Flows, a simplified way to describe how your AI assistant should handle conversations. Flows help streamline the development process, focusing on key tasks and reducing the complexity involved in managing conversations.
|
|
176
|
+
- **Automatic Conversation Repair:** Ensure seamless interactions by automatically handling interruptions or unexpected inputs. Developers have full control to customize these repairs based on specific use cases.
|
|
177
|
+
- **Customizable and Open:** Fully customizable code that allows developers to modify Rasa Pro to meet specific requirements, ensuring flexibility and adaptability to various conversational AI needs.
|
|
178
|
+
- **Robustness and Control:** Maintain strict adherence to business logic, preventing unwanted behaviors like prompt injection and hallucinations, leading to more reliable responses and secure interactions.
|
|
179
|
+
- **Built-in Security:** Safeguard sensitive data, control access, and ensure secure deployment, essential for production environments that demand high levels of security and compliance.
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
A [free developer license](https://rasa.com/docs/rasa-pro/developer-edition/) is available so you can explore and get to know Rasa Pro. For small production deployments, the Extended Developer License allows you to take your assistant live in a limited capacity. A paid license is required for larger-scale production use, but all code is visible and can be customized as needed.
|
|
184
|
+
|
|
185
|
+
To get started right now, you can
|
|
186
|
+
|
|
187
|
+
`pip install rasa-pro`
|
|
188
|
+
|
|
189
|
+
Check out our
|
|
190
|
+
|
|
191
|
+
- [Rasa-pro Quickstart](https://rasa.com/docs/rasa-pro/installation/quickstart/),
|
|
192
|
+
- [Conversational AI with Language Models (CALM) conceptual rundown](https://rasa.com/docs/rasa-pro/calm/),
|
|
193
|
+
- [Rasa Pro / CALM tutorial](https://rasa.com/docs/rasa-pro/tutorial), and
|
|
194
|
+
- [Rasa pro changelog](https://rasa.com/docs/rasa/rasa-pro-changelog/)
|
|
195
|
+
|
|
196
|
+
for more. Also feel free to reach out to us on the [Rasa forum](https://forum.rasa.com/).
|
|
197
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
README.md,sha256=
|
|
1
|
+
README.md,sha256=hu3oA1lnwNcUZbeb3AlbNJidVy64MCYzXIqai8rPORY,3298
|
|
2
2
|
rasa/__init__.py,sha256=YXG8RzVxiSJ__v-AewtV453YoCbmzWlHsU_4S0O2XpE,206
|
|
3
3
|
rasa/__main__.py,sha256=s0wac5PWbCVu7lJyKUCLylKvE-K7UA6QzVfKUY-46-g,5825
|
|
4
4
|
rasa/anonymization/__init__.py,sha256=Z-ZUW2ofZGfI6ysjYIS7U0JL4JSzDNOkHiiXK488Zik,86
|
|
@@ -8,7 +8,7 @@ rasa/anonymization/anonymization_rule_executor.py,sha256=itRjw5xFjXadSYNX9YRyC9e
|
|
|
8
8
|
rasa/anonymization/anonymization_rule_orchestrator.py,sha256=YJdkk4jVjy6PcCEpJMxUdU3sUoNPFvGe7BpVCvAFMPg,4116
|
|
9
9
|
rasa/anonymization/schemas/config.yml,sha256=EP_af8HctyRT2f6Ywv9khpO58ZdP5_LkPItrXQgdNaU,1158
|
|
10
10
|
rasa/anonymization/utils.py,sha256=y9i2tnlyG5ofNrNYGSCWl17wBYvEmTgw2zgoQ--p-vA,3623
|
|
11
|
-
rasa/api.py,sha256=
|
|
11
|
+
rasa/api.py,sha256=bv9v7x2RdPg9pAgdapne_xAHjR5C-yaqRi7YAcdCS88,6110
|
|
12
12
|
rasa/cli/__init__.py,sha256=eO5vp9rFCANtbTVU-pxN3iMBKw4p9WRcgzytt9MzinY,115
|
|
13
13
|
rasa/cli/arguments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
rasa/cli/arguments/data.py,sha256=iINyxiRNVNhoNoY1V5jRMHXIrorW_d3k-K94Iw8a52g,3040
|
|
@@ -19,15 +19,15 @@ rasa/cli/arguments/interactive.py,sha256=S-cY9XUOg7vzgVh_1mlQWObTmIO9pDQ0OdWVVCx
|
|
|
19
19
|
rasa/cli/arguments/run.py,sha256=iVsM5bd2_pQVDNqf4U2k2Zzw0XayRDzmldEtnUDwqlM,6765
|
|
20
20
|
rasa/cli/arguments/shell.py,sha256=Vyt3XizJPxKAMo4NIcpdSOs73rD-q-yjWH1Qzc15xCs,367
|
|
21
21
|
rasa/cli/arguments/test.py,sha256=2g6OvwkTlwCK85_nxYvKiFUMICBUMjfttd6Qif2Hme8,6854
|
|
22
|
-
rasa/cli/arguments/train.py,sha256=
|
|
22
|
+
rasa/cli/arguments/train.py,sha256=ZK_dRgkw4Um4iPTGgSrKlVEkJGCKMpf-zmkpdRhRFl8,8883
|
|
23
23
|
rasa/cli/arguments/visualize.py,sha256=Su0qyXv4bEx5mrteRqEyf-K3JGQ1t2WCXOYlCpGYfAk,861
|
|
24
24
|
rasa/cli/arguments/x.py,sha256=FQkarKvNBtzZ5xrPBhHWk-ZKPgEHvgE5ItwRL1TNR3I,1027
|
|
25
25
|
rasa/cli/data.py,sha256=M33oHv3PCqDx4Gc5ifGmcZoEc6h2_uP8pRIygimjT8w,12695
|
|
26
26
|
rasa/cli/e2e_test.py,sha256=eVNK8vMkPXBhDyxr8d9zTbQo42adbvyLMupVrNwGhWg,8361
|
|
27
27
|
rasa/cli/evaluate.py,sha256=Lm311k47sJ7IFE9wSBudFAyVxTRsAAMdeRUWRCPVVug,7948
|
|
28
28
|
rasa/cli/export.py,sha256=60wPKS5513J7PRKZsVeCBrUGOcSizypdjg1iYDWLCMY,8203
|
|
29
|
-
rasa/cli/inspect.py,sha256=
|
|
30
|
-
rasa/cli/interactive.py,sha256=
|
|
29
|
+
rasa/cli/inspect.py,sha256=nEEONqKPonU8VlBAE0vaS6GVTFTD4_bNSWnRloo_2OE,2580
|
|
30
|
+
rasa/cli/interactive.py,sha256=f6ui3KR6il__Mh3ppo3ao7wnQl7NbSCPPEudheCaAPU,6013
|
|
31
31
|
rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
|
|
32
32
|
rasa/cli/llm_fine_tuning.py,sha256=e6z36tFoi00uARWiPeGWhWxH05UdSgaTuJGXoJrcMiU,13215
|
|
33
33
|
rasa/cli/markers.py,sha256=KN0tA69FqwfBGMU82gfoh8mtyTH3LSmuz0V5N4poRcE,2485
|
|
@@ -56,7 +56,7 @@ rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_adds_contact_to_their
|
|
|
56
56
|
rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_lists_contacts.yml,sha256=ElneItKq7jTGz_ZijSsth0zOKNtfJXKAVhq747EIv7I,140
|
|
57
57
|
rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact.yml,sha256=ECFzm1e39KV82G2zr2AhdzcUy86sYVcMibd-v1jUSGg,353
|
|
58
58
|
rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact_from_list.yml,sha256=oG4T4rHlSQGamRpoqWGUP3--ZNY9CnXEI3XrWqOqBLQ,418
|
|
59
|
-
rasa/cli/project_templates/calm/endpoints.yml,sha256=
|
|
59
|
+
rasa/cli/project_templates/calm/endpoints.yml,sha256=X0E3WUpmWvFRP5otlKcDAbz8SlFMuoudQTUcXtas9ME,1841
|
|
60
60
|
rasa/cli/project_templates/default/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
61
|
rasa/cli/project_templates/default/actions/actions.py,sha256=BoiGE6tHbUl4WAEpf1sYTsQRV4_aZiTk4cLFEpk6QVY,755
|
|
62
62
|
rasa/cli/project_templates/default/config.yml,sha256=AcOSLRTw2symvJ0Uiwj71M84iaEkd_Ax2To6KwivysI,1630
|
|
@@ -74,7 +74,7 @@ rasa/cli/project_templates/tutorial/credentials.yml,sha256=h_hZQaVP_GqG58xAbXtQ0
|
|
|
74
74
|
rasa/cli/project_templates/tutorial/data/flows.yml,sha256=9C23uQYm_JVguQJ7u51U4kq66asw1iEGGyMa2NvtR8k,253
|
|
75
75
|
rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=rIO8yjg6QU_l35pjQKFaqsOLpaWDMv4q1FS5O7VCV1Q,304
|
|
76
76
|
rasa/cli/project_templates/tutorial/domain.yml,sha256=DFnifO_0cD6PYKMsF011FoIDN_spaWbnuR7mhsF7dNk,402
|
|
77
|
-
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=
|
|
77
|
+
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=X0E3WUpmWvFRP5otlKcDAbz8SlFMuoudQTUcXtas9ME,1841
|
|
78
78
|
rasa/cli/run.py,sha256=vLYMMoBvMKGa6wKMHz8WO2Ch8ny3RpNM7OiZnuWhnFo,4519
|
|
79
79
|
rasa/cli/scaffold.py,sha256=Eqv44T7b5cOd2FKLU1tSrAVPKwMfoiUIjc43PtaxJGg,7988
|
|
80
80
|
rasa/cli/shell.py,sha256=wymYOj6jdUON0y7pe-rpRqarWDGaDquU7PRp8knxqHk,4264
|
|
@@ -85,17 +85,18 @@ rasa/cli/studio/train.py,sha256=ruXA5UkaRbO3femk8w3I2cXKs06-34FYtB_9MKdP6hw,1572
|
|
|
85
85
|
rasa/cli/studio/upload.py,sha256=kdHqrVGsEbbqH5fz_HusWwJEycB31SHaPlXer8lXAE0,2069
|
|
86
86
|
rasa/cli/telemetry.py,sha256=ZywhlOpp0l2Yz9oEcOGA2ej3SEkSTisKPpBhn_fS7tc,3538
|
|
87
87
|
rasa/cli/test.py,sha256=Ub7Cm9rFQ_tkB310jPYzVwU0Di88Z7IE0nLi1o-aYbA,8901
|
|
88
|
-
rasa/cli/train.py,sha256=
|
|
88
|
+
rasa/cli/train.py,sha256=cg4u-mUX9XTUS9O0YdObEKl3QD3Yzau6BKxPpK0OZRk,8789
|
|
89
89
|
rasa/cli/utils.py,sha256=FrViXSyKauMRWvDUQQSl7C73JoxQuwPHeuq7WQADxCw,15653
|
|
90
90
|
rasa/cli/visualize.py,sha256=YmRAATAfxHpgE8_PknGyM-oIujwICNzVftTzz6iLNNc,1256
|
|
91
91
|
rasa/cli/x.py,sha256=1w-H6kb_3OG3zVPJ1isX67BTb_T-x2MJo4OGffCD4Vc,6827
|
|
92
|
-
rasa/constants.py,sha256=
|
|
92
|
+
rasa/constants.py,sha256=nvEdeanXtEfnacgXaoe2-ZOY8g5ZNu5i3phl27R5xTE,1348
|
|
93
93
|
rasa/core/__init__.py,sha256=DYHLve7F1yQBVOZTA63efVIwLiULMuihOfdpzw1j0os,457
|
|
94
94
|
rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
rasa/core/actions/action.py,sha256=
|
|
95
|
+
rasa/core/actions/action.py,sha256=3tXb_DAKEzguq5zDuV1j04Fd5uYvwQckc4GR_EoDVYE,45286
|
|
96
96
|
rasa/core/actions/action_clean_stack.py,sha256=xUP-2ipPsPAnAiwP17c-ezmHPSrV4JSUZr-eSgPQwIs,2279
|
|
97
97
|
rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
|
|
98
98
|
rasa/core/actions/action_hangup.py,sha256=wpXunkGC71krAYZD3BbqzlHLZxNg1mIviwWz0j9Go-c,994
|
|
99
|
+
rasa/core/actions/action_repeat_bot_messages.py,sha256=4ciMA_reCN8Ap5KDVlnowCRGgQKtn5kEeDt8XjaAt4g,2783
|
|
99
100
|
rasa/core/actions/action_run_slot_rejections.py,sha256=F16a9aMJAw27Rh9wUJu0KYSAPzs7bqcSFY5H-H6PDR0,6872
|
|
100
101
|
rasa/core/actions/action_trigger_chitchat.py,sha256=cJcLg_RhfZx-JyomcBOJabnliuj8Fs1nLvONwPCIbpI,1084
|
|
101
102
|
rasa/core/actions/action_trigger_flow.py,sha256=7pye_4iR_9xedyTntS9l49uEmTf5UXjE0hEFgOodfyw,3487
|
|
@@ -103,10 +104,10 @@ rasa/core/actions/action_trigger_search.py,sha256=xKzSHZIi1bcadgzXJwtP_ZLWKz-ehm
|
|
|
103
104
|
rasa/core/actions/constants.py,sha256=gfgdWmj-OJ5xTcTAS1OcXQ3dgcTiHO98NC-SGyKlTjs,161
|
|
104
105
|
rasa/core/actions/custom_action_executor.py,sha256=SWsy35tsWZTSTvYyXdSqSV8efz_f3OA-dYOh_I_QXy0,6169
|
|
105
106
|
rasa/core/actions/direct_custom_actions_executor.py,sha256=tTmMk5UMYbriArpYdWF8otmEsDbEbJZ8unP19UwM4A4,2657
|
|
106
|
-
rasa/core/actions/e2e_stub_custom_action_executor.py,sha256=
|
|
107
|
+
rasa/core/actions/e2e_stub_custom_action_executor.py,sha256=D-kECC1QjVLv4owNxstW2xJPPsXTGfGepvquMeWB_ec,2282
|
|
107
108
|
rasa/core/actions/forms.py,sha256=mGNwjXaVtOY2SFCWMDGW-cMkqIKhqsQSb7LToyUeVEk,26846
|
|
108
109
|
rasa/core/actions/grpc_custom_action_executor.py,sha256=EDxdSIDA4H4Mu-QZk-pPGV2N41ZsbY8W9laV6l1WlDQ,9103
|
|
109
|
-
rasa/core/actions/http_custom_action_executor.py,sha256=
|
|
110
|
+
rasa/core/actions/http_custom_action_executor.py,sha256=BmUySHjtJUF0IfphbzJ3p764DJs1YvfcND9mGZLKEOs,5146
|
|
110
111
|
rasa/core/actions/loops.py,sha256=eXW-hsQy84qLAt6FLCUS45yPPwPUAKhXkcHO9BZAzGE,3531
|
|
111
112
|
rasa/core/actions/two_stage_fallback.py,sha256=7BOTKmbCLDihtuhMSHfh8NyfPXhtwdD9XK7cOoy6UBE,6065
|
|
112
113
|
rasa/core/agent.py,sha256=NX3qqrzi2Qi5isJw5yR7dyN4hIZnhmaV1GoVySX9Omk,20750
|
|
@@ -253,7 +254,7 @@ rasa/core/channels/rasa_chat.py,sha256=XGZ7QLyQHhB-m7EjetDNEBSjAa2mEFqU-e-FuS9z3
|
|
|
253
254
|
rasa/core/channels/rest.py,sha256=YDBnbdrlvaYL7Efy3cm2LbbSm7cBAFDhmcypojHXbog,7227
|
|
254
255
|
rasa/core/channels/rocketchat.py,sha256=HWOMxXLuwadYEYIMMP-z6RqAJzMGZDLklpgqLOipXF0,5998
|
|
255
256
|
rasa/core/channels/slack.py,sha256=3b8OZQ_gih5XBwhQ1q4BbBUC1SCAPaO9AoJEn2NaoQE,24405
|
|
256
|
-
rasa/core/channels/socketio.py,sha256=
|
|
257
|
+
rasa/core/channels/socketio.py,sha256=KTOFWIfhJ3jrxSvtlMpxzrANfrWpt6dA4xUdMykfsuw,11684
|
|
257
258
|
rasa/core/channels/telegram.py,sha256=XvzU7KAgjmRcu2vUJ-5L2eYAAuYBqtcYlhq1Jo6kLns,10649
|
|
258
259
|
rasa/core/channels/twilio.py,sha256=c63uFLVKaK4Fj8MAn9BSQtxiV_Ezq4POezHo8zWIoiw,5938
|
|
259
260
|
rasa/core/channels/vier_cvg.py,sha256=PfvSluQqgJbP0JzZPFUvum3z7H55JPPeobcD-z5zCkw,13544
|
|
@@ -262,20 +263,20 @@ rasa/core/channels/voice_ready/audiocodes.py,sha256=6pp_ngo08SFBp1y5Te38lETXiGUA
|
|
|
262
263
|
rasa/core/channels/voice_ready/jambonz.py,sha256=CawsYnE2AdqAwGV75mEuIEZhedg9BxvfWAcqPLvWRMg,3753
|
|
263
264
|
rasa/core/channels/voice_ready/jambonz_protocol.py,sha256=cVbp1wpAzl3c-CR_QEcGWrLROEhJKzRB68AXtf7DRQE,12998
|
|
264
265
|
rasa/core/channels/voice_ready/twilio_voice.py,sha256=CBYTEGpfyKCw7I0ggL4SSkefA8x4P-xMkevyFYLNVhU,15086
|
|
265
|
-
rasa/core/channels/voice_ready/utils.py,sha256=
|
|
266
|
+
rasa/core/channels/voice_ready/utils.py,sha256=e46Qo4v2KOvpHizS1WGT4olAsYKmWl-fiFHu1kPsClM,970
|
|
266
267
|
rasa/core/channels/voice_stream/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
268
|
rasa/core/channels/voice_stream/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
269
|
rasa/core/channels/voice_stream/asr/asr_engine.py,sha256=D2sAW4orUzkh2fWGMA8gsTT6ilzNM33l7FPLuWacNFk,2694
|
|
269
270
|
rasa/core/channels/voice_stream/asr/asr_event.py,sha256=tHVSuABwocmhh9NeraSXpaedaY3CXbwqX4d0MKebydw,192
|
|
270
271
|
rasa/core/channels/voice_stream/asr/deepgram.py,sha256=X_B_tYBvBLJglWquW4smEbu9B5wNuVT3kBE1zkWd0iw,2910
|
|
271
272
|
rasa/core/channels/voice_stream/audio_bytes.py,sha256=dP9VKUXrGlf0EVswTI-okoKQGQ1_c_By7pXKLvhdiX8,327
|
|
272
|
-
rasa/core/channels/voice_stream/browser_audio.py,sha256=
|
|
273
|
+
rasa/core/channels/voice_stream/browser_audio.py,sha256=3M5sACa8CKBtAS_VNEyJwu7NGpVgblTq_-t7zy6Jyq8,2654
|
|
273
274
|
rasa/core/channels/voice_stream/tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
275
|
rasa/core/channels/voice_stream/tts/azure.py,sha256=hkk3lPKxc3JKeuQSUDlZbXHuWE9a4A4PBozSEcObaOk,3622
|
|
275
276
|
rasa/core/channels/voice_stream/tts/cartesia.py,sha256=NSmZlxSqHltAvu6IRUYgQkKFTN7xjwNkyt47ecItcp8,4125
|
|
276
277
|
rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=dKYEMkIVuT2n4pJ-JMI2n1diGvFOAOvOXMt7uIiSQtc,849
|
|
277
278
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=a_VFkLCzqB6jkuisTwDCimX0BvGcwN3OY4Fa6xKXzCA,1459
|
|
278
|
-
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=
|
|
279
|
+
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=J-KxBnPVHwBlED8N_qjbu-Ka1ddgmfumRWlWkWCXJh4,5877
|
|
279
280
|
rasa/core/channels/voice_stream/util.py,sha256=rSWy2mFjw1Vu5-IpfL9SSG4LDRi13ovYoAamn6CG9mI,1977
|
|
280
281
|
rasa/core/channels/voice_stream/voice_channel.py,sha256=eY0RZW4AU--44v_Y3uhckEpEUT2ap07xm8Qn2hQLkMU,8833
|
|
281
282
|
rasa/core/channels/webexteams.py,sha256=yEdONmgIhZBV4TEOM5xwXEmuqP_RvFmQbHCw1JB2Y-0,4843
|
|
@@ -304,12 +305,12 @@ rasa/core/lock_store.py,sha256=fgdufUYXHEiTcD7NCCqgDAQRRtt7jrKafENHqFKOyi0,12504
|
|
|
304
305
|
rasa/core/migrate.py,sha256=XNeYdiRytBmBNubOQ8KZOT_wR1o9aOpHHfBU9PCB2eg,14626
|
|
305
306
|
rasa/core/nlg/__init__.py,sha256=0eQOZ0fB35b18oVhRFczcH30jJHgO8WXFhnbXGOxJek,240
|
|
306
307
|
rasa/core/nlg/callback.py,sha256=rFkDe7CSAETASRefpERUT6-DHWPs0UXhx8x4tZ1QE0M,5238
|
|
307
|
-
rasa/core/nlg/contextual_response_rephraser.py,sha256=
|
|
308
|
+
rasa/core/nlg/contextual_response_rephraser.py,sha256=xWXt9xYUGH4uRk02rtlgA8vfvFK_hKI7VPUlDtR6MBk,10791
|
|
308
309
|
rasa/core/nlg/generator.py,sha256=YZ_rh--MeyzA6oXRqr_Ng-jcmPgbCmWMJJrquPmo__8,8436
|
|
309
310
|
rasa/core/nlg/interpolator.py,sha256=Dc-J2Vf6vPPUbwIgZQm3AJDGvMaFTsh9Citd4CYuA9U,5189
|
|
310
311
|
rasa/core/nlg/response.py,sha256=aHpy9BgjO7ub6v-sVPiQqutUA_7-UD1l3DJGVeQyp4k,5888
|
|
311
312
|
rasa/core/nlg/summarize.py,sha256=JO6VCfM_RnU0QX8Us42YkNOxC0ESKV1xcVH_sCW27ZU,2108
|
|
312
|
-
rasa/core/persistor.py,sha256=
|
|
313
|
+
rasa/core/persistor.py,sha256=Gf0zVkqGGBXbMGEP8zF2bqcouZUZXVLvf8mPaESb7QM,16603
|
|
313
314
|
rasa/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
315
|
rasa/core/policies/ensemble.py,sha256=AjNOEy2Iubbe-LdKaoFUXG8ch6yPrg3bTvcTcAPmeOs,12959
|
|
315
316
|
rasa/core/policies/enterprise_search_policy.py,sha256=HtUU7X2iU0g7OUhunMu9rWmh9LvUQGz3oBpOvMfjHCI,31552
|
|
@@ -344,7 +345,7 @@ rasa/core/training/converters/responses_prefix_converter.py,sha256=5daXmnDAGjNvG
|
|
|
344
345
|
rasa/core/training/interactive.py,sha256=vVKi40z8z-nhPWogpcg9HWLaeYf_CPQyi0faZEXhxaA,60345
|
|
345
346
|
rasa/core/training/story_conflict.py,sha256=34Sj-GlhVTWva7a_Mk-wdm7zfEw_rlCcPHE35r1dGIc,13593
|
|
346
347
|
rasa/core/training/training.py,sha256=Ci5s2DXiz4-j7ldLVpHRCKPnMBAJOhvc2t4ofUxhbqA,3067
|
|
347
|
-
rasa/core/utils.py,sha256=
|
|
348
|
+
rasa/core/utils.py,sha256=ho5HSKh7RTCmoLCd5RJfJ9mby0AP8BC-wTtK9S7qbZI,12157
|
|
348
349
|
rasa/core/visualize.py,sha256=rCtg9I1T2RsJRAoQI7czIwT7fH_P-jO5LliNu_FjsQE,2125
|
|
349
350
|
rasa/dialogue_understanding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
351
|
rasa/dialogue_understanding/coexistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -352,7 +353,7 @@ rasa/dialogue_understanding/coexistence/constants.py,sha256=RpgLKMG4s7AgII0fRV0s
|
|
|
352
353
|
rasa/dialogue_understanding/coexistence/intent_based_router.py,sha256=3Pf7ZpmQnJWlaehAVZBSR9B1oWoR0NK7Ll0pLMCovDc,7609
|
|
353
354
|
rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=xqQ9s4IUB2ypYRZhfeqFyXzDCsh8EZW_yR6KdqnM-XE,10331
|
|
354
355
|
rasa/dialogue_understanding/coexistence/router_template.jinja2,sha256=CHWFreN0sv1EbPh-hf5AlCt3zxy2_llX1Pdn9Q11Y18,357
|
|
355
|
-
rasa/dialogue_understanding/commands/__init__.py,sha256=
|
|
356
|
+
rasa/dialogue_understanding/commands/__init__.py,sha256=hzlP15s6Qpr5acSWbS2svWvCNfY7GY2HFqtpVUhHjx4,2259
|
|
356
357
|
rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=2sNnIo1jZ2UEadkBdEWmDasm2tBES59lzvFcf0iY51U,2235
|
|
357
358
|
rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=z1TmONIPQkYvPm2ZIULfBIXpgn5v6-VIsqInQnW3NH0,4275
|
|
358
359
|
rasa/dialogue_understanding/commands/change_flow_command.py,sha256=PrmBa__Rz4NTqaGzqecZuny9zLVHuPxDoHTGzZScnGg,1175
|
|
@@ -366,6 +367,7 @@ rasa/dialogue_understanding/commands/handle_code_change_command.py,sha256=pKaj8E
|
|
|
366
367
|
rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=viSzL3Zmudm2WEjWmOS2s0zfOTXNsWoVU2pS-JXDFlU,1928
|
|
367
368
|
rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=JPiWQC5qWJmryE7DgApDlf9AdGVMazuU9TXx44gc78w,1773
|
|
368
369
|
rasa/dialogue_understanding/commands/noop_command.py,sha256=302wi-pPXnraqclTDXug6_IYucEZCwDtP032OhPv1JY,1476
|
|
370
|
+
rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=9hbDrTruhe2NogR8Xtt0SVcJUAlN2sQTzmynCaB_-ns,1858
|
|
369
371
|
rasa/dialogue_understanding/commands/restart_command.py,sha256=lUGO8iAyHH6esuWi7sKZQzZIfzYipx4Vo58-B9U20gg,1678
|
|
370
372
|
rasa/dialogue_understanding/commands/session_end_command.py,sha256=xMVOZJv7J3WAShGzJywQPcd5w263w6K_eYSROwpHUsk,1808
|
|
371
373
|
rasa/dialogue_understanding/commands/session_start_command.py,sha256=k5cGcE4Usxwfua1sE-KY-qWdwHlHZKgVx5XPDt_-RFY,1742
|
|
@@ -386,8 +388,8 @@ rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2,sha2
|
|
|
386
388
|
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=JjNvD3Zp5_riFYdUuk4oerT9WDSm8uPKky8qeklJyyw,30818
|
|
387
389
|
rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=-oc3lxAdQEcX25f4IalxOhEw9XhA_6HxGpItlY1RUvY,8412
|
|
388
390
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
|
-
rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2,sha256=
|
|
390
|
-
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=
|
|
391
|
+
rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2,sha256=nMayu-heJYH1QmcL1cFmXb8SeiJzfdDR_9Oy5IRUXsM,3937
|
|
392
|
+
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=k8f9wKr0ZjR9za99c6x8G5sUw2IfnfzrWziKHpVe31Y,15694
|
|
391
393
|
rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
392
394
|
rasa/dialogue_understanding/patterns/cancel.py,sha256=IQ4GVHNnNCqwKRLlAqBtLsgolcbPPnHsHdb3aOAFhEs,3868
|
|
393
395
|
rasa/dialogue_understanding/patterns/cannot_handle.py,sha256=pg0zJHl-hDBnl6y9IyxZzW57yuMdfD8xI8eiK6EVrG8,1406
|
|
@@ -398,9 +400,10 @@ rasa/dialogue_understanding/patterns/collect_information.py,sha256=nfzAtvjIyP67C
|
|
|
398
400
|
rasa/dialogue_understanding/patterns/completed.py,sha256=NqVaS_5-62UetGRXjR1eOGG3o6EPaIAQxbbkkNVEa9s,1278
|
|
399
401
|
rasa/dialogue_understanding/patterns/continue_interrupted.py,sha256=4UCFxCReL1wR8ALU4B0LzpC9izdtKrp2nJ6chS_jVng,1355
|
|
400
402
|
rasa/dialogue_understanding/patterns/correction.py,sha256=ZfSGzvgLvmbebEuisYP0Ke0lQEZziuDvq1oB4wMSFr4,11001
|
|
401
|
-
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=
|
|
403
|
+
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=FxllfkD2FK45QfeN_TBUlhxEcGE3klu6E_0kth7Gem4,8481
|
|
402
404
|
rasa/dialogue_understanding/patterns/human_handoff.py,sha256=ocGrnLLRW-_aiXjmSUG9nReUGQbBUxFFt4FTBWSXARM,1132
|
|
403
405
|
rasa/dialogue_understanding/patterns/internal_error.py,sha256=L8kEC6-TOZecugWtA2dm8lNG9gUevffyT5RotWeJIzM,1608
|
|
406
|
+
rasa/dialogue_understanding/patterns/repeat.py,sha256=K7Ok3DGsB2mivA2AwaKfmDyagupSSySOo4oARx2eXm8,1152
|
|
404
407
|
rasa/dialogue_understanding/patterns/restart.py,sha256=6SfXf9QCiTG7kBtPpbxKbdEjgtGXbQ4CGAVp3UkvWes,1114
|
|
405
408
|
rasa/dialogue_understanding/patterns/search.py,sha256=X7HaMyFwS8gPprKFSOJvCoC6NgZQUTHvqtYxazFdgYc,1105
|
|
406
409
|
rasa/dialogue_understanding/patterns/session_start.py,sha256=yglhIEkkquRf0YppZ4Cuv2eHlA5qscGoVXr0d-2bV-E,1153
|
|
@@ -435,7 +438,7 @@ rasa/e2e_test/pykwalify_extensions.py,sha256=OGYKIKYJXd2S0NrWknoQuijyBQaE-oMLkfV
|
|
|
435
438
|
rasa/e2e_test/stub_custom_action.py,sha256=teq8c5I6IuUsFX4lPdeBLY3j0SLSMCC95KmKx7GrE8I,2369
|
|
436
439
|
rasa/e2e_test/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
440
|
rasa/e2e_test/utils/e2e_yaml_utils.py,sha256=_3yxv18fUkmO8tvOcXzBzVVBhRdV-d9o2YAlrmCAZcE,1603
|
|
438
|
-
rasa/e2e_test/utils/io.py,sha256=
|
|
441
|
+
rasa/e2e_test/utils/io.py,sha256=te_jrsyo6TaawBgR9eLttOBaRRDSdrIWtSH94qjKzK8,19000
|
|
439
442
|
rasa/e2e_test/utils/validation.py,sha256=BRjTg3KOAlvGtfZJApOKW29V__cX6hJIG8A5RjzoW54,2348
|
|
440
443
|
rasa/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
444
|
rasa/engine/caching.py,sha256=Uu-0yn_eQGysmW7nsub-tb3gD8QNz6TNssNd-GIthuI,16451
|
|
@@ -482,12 +485,10 @@ rasa/graph_components/validators/default_recipe_validator.py,sha256=BHrF6NTfJz42
|
|
|
482
485
|
rasa/graph_components/validators/finetuning_validator.py,sha256=38AcwmV8cF5TIlWhUIzh98wtZf934ix04HcczCJiWkU,12863
|
|
483
486
|
rasa/hooks.py,sha256=3nsfCA142V56mBQ7ktBXhD_RyaSrfj7fY3t7HnsD4Pc,3709
|
|
484
487
|
rasa/jupyter.py,sha256=x_GF9PK2zMhltb48GEIV9YZ4pRhCto8nV5SioYSCljI,1782
|
|
485
|
-
rasa/keys,sha256=2Stg1fstgJ203cOoW1B2gGMY29fhEnjIfTVxKv_fqPo,101
|
|
486
488
|
rasa/llm_fine_tuning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
489
|
rasa/llm_fine_tuning/annotation_module.py,sha256=wFmW3d6lI5o49OWmdbYQlgr24rqHDgA0T0hLM1pSb9U,8578
|
|
488
490
|
rasa/llm_fine_tuning/conversations.py,sha256=QvsgoL8wes5Pad22J1LFOKqtl90SCnjZ1HvawbxZ5tw,5197
|
|
489
491
|
rasa/llm_fine_tuning/llm_data_preparation_module.py,sha256=t-EjZmM7MOfpo422wNuf7ZsnTGOaD5TTroYqd-Hwh6U,6082
|
|
490
|
-
rasa/llm_fine_tuning/notebooks/unsloth_finetuning.ipynb,sha256=7-hD4am9_WZmu3SIJXu1utJz0i4k5Xi-c75WhQjQarM,18784
|
|
491
492
|
rasa/llm_fine_tuning/paraphrasing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
492
493
|
rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py,sha256=JPvGXdk36yQ23L86FXWiJMTcoBse9tSnhjTnoFvt8Q0,9945
|
|
493
494
|
rasa/llm_fine_tuning/paraphrasing/default_rephrase_prompt_template.jina2,sha256=sOHiE0WYEp7v7U6FUwHdlG7dAYDCDIWWPEP3eAj6elE,1340
|
|
@@ -502,8 +503,17 @@ rasa/markers/marker_base.py,sha256=lzPIFHlakWUKzh1UTddDmRgy4gQ-u6WdrXyJWz1FJ1U,3
|
|
|
502
503
|
rasa/markers/upload.py,sha256=Ot1s_O-CEIB9c4CKUlfOldiJo92pdqxFUHOPCU7E_NU,2518
|
|
503
504
|
rasa/markers/validate.py,sha256=YypXKRS87xxrMMEz9HpAQzYJUwg0OPbczMXBRNjlJq4,709
|
|
504
505
|
rasa/model.py,sha256=GH1-N6Po3gL3nwfa9eGoN2bMRNMrn4f3mi17-osW3T0,3491
|
|
506
|
+
rasa/model_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
507
|
+
rasa/model_manager/config.py,sha256=7UQgLHlbOSq8NpOlhoVGaL4zS96g5GPOe-DvPDeTmVc,595
|
|
508
|
+
rasa/model_manager/model_api.py,sha256=xu49REVw9ZbsHIq7uH_d_mDUJy2EawcoNZq1uMsocGQ,16474
|
|
509
|
+
rasa/model_manager/runner_service.py,sha256=9rfgfxYYTb032x-KquYauPtWz4ndQbIMI_toZI2X2ow,8231
|
|
510
|
+
rasa/model_manager/socket_bridge.py,sha256=2Rm3dYJma7Axf_ns8C87iY2GgJKnJRLt8v2g-Q9ppm4,4685
|
|
511
|
+
rasa/model_manager/studio_jwt_auth.py,sha256=eZ_srnbL2sKIKgx0OZIp29NbIrH2J8PlI8Or0lLg_Xo,2644
|
|
512
|
+
rasa/model_manager/trainer_service.py,sha256=1wzXif1zwVSkVF-iv_0Tza2eEEWz1asKQwAAZnZn384,10404
|
|
513
|
+
rasa/model_manager/utils.py,sha256=OgxhKm4T9Iv_Qd8G9E74c-oNsBy4CD5cD0wPHFuKE3w,1918
|
|
514
|
+
rasa/model_service.py,sha256=tMujeptSFbWdxarRg6gd_Y8RXDgloEZ96Q6Bh5mc1fQ,3539
|
|
505
515
|
rasa/model_testing.py,sha256=h0QUpJu6p_TDse3aHjCfYwI6OGH47b3Iuo5Ot0HQADM,14959
|
|
506
|
-
rasa/model_training.py,sha256=
|
|
516
|
+
rasa/model_training.py,sha256=TCGQgmYym3AM4NDGpzaSVQabvBeS74nPt3DhCIC5mqg,21444
|
|
507
517
|
rasa/nlu/__init__.py,sha256=D0IYuTK_ZQ_F_9xsy0bXxVCAtU62Fzvp8S7J9tmfI_c,123
|
|
508
518
|
rasa/nlu/classifiers/__init__.py,sha256=Qvrf7_rfiMxm2Vt2fClb56R3QFExf7WPdFdL-AOvgsk,118
|
|
509
519
|
rasa/nlu/classifiers/classifier.py,sha256=9fm1mORuFf1vowYIXmqE9yLRKdSC4nGQW7UqNZQipKY,133
|
|
@@ -565,10 +575,10 @@ rasa/nlu/utils/spacy_utils.py,sha256=pBvsCVKVuZ3b2Pjn-XuOVZ6lzZu9Voc2R4N1VczwtCM
|
|
|
565
575
|
rasa/plugin.py,sha256=H_OZcHy_U3eAK-JHr43TSxcPqS0JEGcZkFvmumeeJEs,2670
|
|
566
576
|
rasa/server.py,sha256=CyMjsXRWS3MgS0NhUr8JLE0Yb-VX8ApXCiFu46lqJDM,57776
|
|
567
577
|
rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
568
|
-
rasa/shared/constants.py,sha256=
|
|
578
|
+
rasa/shared/constants.py,sha256=AzHYrwKA1kefGAEHGppMfZfzSWKZUwuRvQl9iPXG5No,9390
|
|
569
579
|
rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
570
580
|
rasa/shared/core/command_payload_reader.py,sha256=Vhiop9LWFawaEruRifBBrVmoEJ-fj1Tli1wBvsYu2_I,3563
|
|
571
|
-
rasa/shared/core/constants.py,sha256=
|
|
581
|
+
rasa/shared/core/constants.py,sha256=DYTDgx-3FmwYT9ajRvDpHiMNWJJxlnNc-DYWIZy4-KI,5379
|
|
572
582
|
rasa/shared/core/conversation.py,sha256=tw1fD2XB3gOdQjDI8hHo5TAAmE2JYNogQGWe3rE929w,1385
|
|
573
583
|
rasa/shared/core/domain.py,sha256=mttMcqbAabnOBPY2hvdg8K9pg57M7qlw7okPOu-4Kt8,81056
|
|
574
584
|
rasa/shared/core/events.py,sha256=6yuOrZs8hZaR0FV1nC58l1u6qE4fegwrvL5nH1w7xY4,83719
|
|
@@ -670,7 +680,7 @@ rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=yvqd4ARoGSi9iqfE2
|
|
|
670
680
|
rasa/shared/providers/llm/llm_client.py,sha256=6-gMsEJqquhUPGXzNiq_ybM_McLWxAJ_QhbmWcLnb_Q,2358
|
|
671
681
|
rasa/shared/providers/llm/llm_response.py,sha256=Ltmc8yk9cAqtK8QgwfZZywudM5ZQsT4y_AKAQ3q05hA,1490
|
|
672
682
|
rasa/shared/providers/llm/openai_llm_client.py,sha256=uDdcugBcO3sfxbduc00eqaZdrJP0VFX5dkBd2Dem47M,4844
|
|
673
|
-
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=
|
|
683
|
+
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=tZ9O0D3wjPnHsuBSKuGoVh0wecDsJxeZQFIheMQyCr0,10146
|
|
674
684
|
rasa/shared/providers/mappings.py,sha256=xg-KpfiqotGScmLywg7Ywu10orAPhOTQ4FZPv_JqhEo,2988
|
|
675
685
|
rasa/shared/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
676
686
|
rasa/shared/utils/cli.py,sha256=bJpkf0VzzmtpmBnDnIl7SgvrntnBuaJQMHBXHm2WxcA,2916
|
|
@@ -685,7 +695,7 @@ rasa/shared/utils/schemas/domain.yml,sha256=b2k4ZYSV-QL3hGjDaRg8rfoqaTh4hbhDc_hB
|
|
|
685
695
|
rasa/shared/utils/schemas/events.py,sha256=9sg_w4VeFMksyl-uscUht1TErf1gfKR56agyYSvl2c4,6912
|
|
686
696
|
rasa/shared/utils/schemas/model_config.yml,sha256=OravyVWalSwjiXYRarRzg0tiRnUFHe1q4-5Wj1TEeFk,811
|
|
687
697
|
rasa/shared/utils/schemas/stories.yml,sha256=DV3wAFnv1leD7kV-FH-GQihF1QX5oKHc8Eb24mxjizc,4737
|
|
688
|
-
rasa/shared/utils/yaml.py,sha256=
|
|
698
|
+
rasa/shared/utils/yaml.py,sha256=CwqosjCdjBQfWhfUFg2GPXiBISVb6bzN6Q2ifn8OtZ0,32998
|
|
689
699
|
rasa/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
690
700
|
rasa/studio/auth.py,sha256=6Hk6aHpNNrFXpGygWVIF2V5FFyVpqEOyMX5fVU8bqxU,9673
|
|
691
701
|
rasa/studio/config.py,sha256=wqjvg_hARKG-6cV3JrhnP_ptZIq0VSFbdv-aWrH0u_Q,4091
|
|
@@ -710,7 +720,7 @@ rasa/utils/beta.py,sha256=h2xwGagMh2SnpMuqhkEAEjL7C_CyU6b1te7sbtF-lm4,3240
|
|
|
710
720
|
rasa/utils/cli.py,sha256=L-DT4nPdVBWfc2m1COHrziLitVWJxazSreb6JLbTho4,865
|
|
711
721
|
rasa/utils/common.py,sha256=1ETnOFB_nNexSqHL0EhsMtg8M1k9-2laAy2jsugxnIk,21079
|
|
712
722
|
rasa/utils/converter.py,sha256=H4LHpoAK7MXMmvNZG_uSn0gbccCJvHtsA2-6Zya4u6M,1656
|
|
713
|
-
rasa/utils/endpoints.py,sha256=
|
|
723
|
+
rasa/utils/endpoints.py,sha256=IhFE8cRKFhIbuZ_RGcMfB5GMGN8QT8apwRpgoJKmkjM,10073
|
|
714
724
|
rasa/utils/io.py,sha256=4Wl5_5I6fnBWOJxbKwIPPMcdeoA5dZevcHuoo30sd3E,9305
|
|
715
725
|
rasa/utils/json_utils.py,sha256=SKtJzzsIRCAgNEQiBvWDDm9euMRBgJ-TyvCi2tXHH1w,1689
|
|
716
726
|
rasa/utils/licensing.py,sha256=JyqusmuufnTwlKFHOa8sdDZe5lG7YxeDQbrXnvsxQZw,20491
|
|
@@ -739,9 +749,9 @@ rasa/utils/train_utils.py,sha256=f1NWpp5y6al0dzoQyyio4hc4Nf73DRoRSHDzEK6-C4E,212
|
|
|
739
749
|
rasa/utils/url_tools.py,sha256=JQcHL2aLqLHu82k7_d9imUoETCm2bmlHaDpOJ-dKqBc,1218
|
|
740
750
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
741
751
|
rasa/validator.py,sha256=ToRaa4dS859CJO3H2VGqS943O5qWOg45ypbDfFMKECU,62699
|
|
742
|
-
rasa/version.py,sha256=
|
|
743
|
-
rasa_pro-3.11.
|
|
744
|
-
rasa_pro-3.11.
|
|
745
|
-
rasa_pro-3.11.
|
|
746
|
-
rasa_pro-3.11.
|
|
747
|
-
rasa_pro-3.11.
|
|
752
|
+
rasa/version.py,sha256=PNcN1YT7_I7sa5gEJy4BWEPw3AGIvrdb4eVD9-j-GhM,124
|
|
753
|
+
rasa_pro-3.11.0a4.dev1.dist-info/METADATA,sha256=rmoaiD4WCKfqfp6yIShe-1u7rbADGeojmyeBvhGRMHc,10920
|
|
754
|
+
rasa_pro-3.11.0a4.dev1.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
755
|
+
rasa_pro-3.11.0a4.dev1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
756
|
+
rasa_pro-3.11.0a4.dev1.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
757
|
+
rasa_pro-3.11.0a4.dev1.dist-info/RECORD,,
|