rasa-pro 3.13.13__py3-none-any.whl → 3.13.14__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/constants.py +1 -0
- rasa/core/actions/action_clean_stack.py +32 -0
- rasa/core/actions/constants.py +4 -0
- rasa/core/actions/custom_action_executor.py +70 -12
- rasa/core/actions/grpc_custom_action_executor.py +41 -2
- rasa/core/actions/http_custom_action_executor.py +49 -25
- rasa/core/channels/voice_stream/voice_channel.py +26 -16
- rasa/core/policies/flows/flow_executor.py +20 -6
- rasa/core/run.py +0 -1
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +6 -3
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +15 -8
- rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py +15 -8
- rasa/dialogue_understanding/processor/command_processor.py +12 -3
- rasa/e2e_test/e2e_config.py +4 -3
- rasa/model_manager/socket_bridge.py +1 -2
- rasa/shared/core/flows/flow.py +8 -2
- rasa/shared/core/slots.py +55 -24
- rasa/shared/providers/_configs/azure_openai_client_config.py +4 -5
- rasa/shared/providers/_configs/default_litellm_client_config.py +4 -4
- rasa/shared/providers/_configs/litellm_router_client_config.py +3 -2
- rasa/shared/providers/_configs/openai_client_config.py +5 -7
- rasa/shared/providers/_configs/rasa_llm_client_config.py +4 -4
- rasa/shared/providers/_configs/self_hosted_llm_client_config.py +4 -4
- rasa/shared/providers/llm/_base_litellm_client.py +42 -13
- rasa/shared/providers/llm/litellm_router_llm_client.py +37 -15
- rasa/shared/providers/llm/self_hosted_llm_client.py +34 -32
- rasa/shared/utils/configs.py +5 -8
- rasa/utils/common.py +9 -0
- rasa/utils/endpoints.py +6 -0
- rasa/version.py +1 -1
- {rasa_pro-3.13.13.dist-info → rasa_pro-3.13.14.dist-info}/METADATA +2 -2
- {rasa_pro-3.13.13.dist-info → rasa_pro-3.13.14.dist-info}/RECORD +35 -35
- {rasa_pro-3.13.13.dist-info → rasa_pro-3.13.14.dist-info}/NOTICE +0 -0
- {rasa_pro-3.13.13.dist-info → rasa_pro-3.13.14.dist-info}/WHEEL +0 -0
- {rasa_pro-3.13.13.dist-info → rasa_pro-3.13.14.dist-info}/entry_points.txt +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
import asyncio
|
|
3
4
|
import logging
|
|
4
5
|
import os
|
|
5
6
|
from typing import Any, Dict, List, Optional, Union
|
|
@@ -7,6 +8,7 @@ from typing import Any, Dict, List, Optional, Union
|
|
|
7
8
|
import structlog
|
|
8
9
|
from litellm import atext_completion, text_completion
|
|
9
10
|
|
|
11
|
+
from rasa.core.constants import DEFAULT_REQUEST_TIMEOUT
|
|
10
12
|
from rasa.shared.constants import (
|
|
11
13
|
API_KEY,
|
|
12
14
|
SELF_HOSTED_VLLM_API_KEY_ENV_VAR,
|
|
@@ -28,7 +30,7 @@ structlogger = structlog.get_logger()
|
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
31
|
-
"""A client for interfacing with Self Hosted LLM endpoints
|
|
33
|
+
"""A client for interfacing with Self Hosted LLM endpoints.
|
|
32
34
|
|
|
33
35
|
Parameters:
|
|
34
36
|
model (str): The model or deployment name.
|
|
@@ -95,8 +97,7 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
95
97
|
|
|
96
98
|
@property
|
|
97
99
|
def provider(self) -> str:
|
|
98
|
-
"""
|
|
99
|
-
Returns the provider name for the self hosted llm client.
|
|
100
|
+
"""Returns the provider name for the self hosted llm client.
|
|
100
101
|
|
|
101
102
|
Returns:
|
|
102
103
|
String representing the provider name.
|
|
@@ -105,8 +106,7 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
105
106
|
|
|
106
107
|
@property
|
|
107
108
|
def model(self) -> str:
|
|
108
|
-
"""
|
|
109
|
-
Returns the model name for the self hosted llm client.
|
|
109
|
+
"""Returns the model name for the self hosted llm client.
|
|
110
110
|
|
|
111
111
|
Returns:
|
|
112
112
|
String representing the model name.
|
|
@@ -115,8 +115,7 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
115
115
|
|
|
116
116
|
@property
|
|
117
117
|
def api_base(self) -> str:
|
|
118
|
-
"""
|
|
119
|
-
Returns the base URL for the API endpoint.
|
|
118
|
+
"""Returns the base URL for the API endpoint.
|
|
120
119
|
|
|
121
120
|
Returns:
|
|
122
121
|
String representing the base URL.
|
|
@@ -125,8 +124,7 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
125
124
|
|
|
126
125
|
@property
|
|
127
126
|
def api_type(self) -> Optional[str]:
|
|
128
|
-
"""
|
|
129
|
-
Returns the type of the API endpoint. Currently only OpenAI is supported.
|
|
127
|
+
"""Returns the type of the API endpoint. Currently only OpenAI is supported.
|
|
130
128
|
|
|
131
129
|
Returns:
|
|
132
130
|
String representing the API type.
|
|
@@ -135,8 +133,7 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
135
133
|
|
|
136
134
|
@property
|
|
137
135
|
def api_version(self) -> Optional[str]:
|
|
138
|
-
"""
|
|
139
|
-
Returns the version of the API endpoint.
|
|
136
|
+
"""Returns the version of the API endpoint.
|
|
140
137
|
|
|
141
138
|
Returns:
|
|
142
139
|
String representing the API version.
|
|
@@ -145,8 +142,8 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
145
142
|
|
|
146
143
|
@property
|
|
147
144
|
def config(self) -> Dict:
|
|
148
|
-
"""
|
|
149
|
-
|
|
145
|
+
"""Returns the configuration for the self hosted llm client.
|
|
146
|
+
|
|
150
147
|
Returns:
|
|
151
148
|
Dictionary containing the configuration.
|
|
152
149
|
"""
|
|
@@ -163,9 +160,9 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
163
160
|
|
|
164
161
|
@property
|
|
165
162
|
def _litellm_model_name(self) -> str:
|
|
166
|
-
"""Returns the value of LiteLLM's model parameter
|
|
167
|
-
completion/acompletion in LiteLLM format:
|
|
163
|
+
"""Returns the value of LiteLLM's model parameter.
|
|
168
164
|
|
|
165
|
+
To be used in completion/acompletion in LiteLLM format:
|
|
169
166
|
<hosted_vllm>/<model or deployment name>
|
|
170
167
|
"""
|
|
171
168
|
if self.model and f"{SELF_HOSTED_VLLM_PREFIX}/" not in self.model:
|
|
@@ -174,15 +171,17 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
174
171
|
|
|
175
172
|
@property
|
|
176
173
|
def _litellm_extra_parameters(self) -> Dict[str, Any]:
|
|
177
|
-
"""Returns optional configuration parameters
|
|
178
|
-
|
|
174
|
+
"""Returns optional configuration parameters.
|
|
175
|
+
|
|
176
|
+
Specific to the client provider and deployed model.
|
|
179
177
|
"""
|
|
180
178
|
return self._extra_parameters
|
|
181
179
|
|
|
182
180
|
@property
|
|
183
181
|
def _completion_fn_args(self) -> Dict[str, Any]:
|
|
184
|
-
"""Returns the completion arguments
|
|
185
|
-
|
|
182
|
+
"""Returns the completion arguments.
|
|
183
|
+
|
|
184
|
+
For invoking a call through LiteLLM's completion functions.
|
|
186
185
|
"""
|
|
187
186
|
fn_args = super()._completion_fn_args
|
|
188
187
|
fn_args.update(
|
|
@@ -195,13 +194,14 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
195
194
|
|
|
196
195
|
@suppress_logs(log_level=logging.WARNING)
|
|
197
196
|
def _text_completion(self, prompt: Union[List[str], str]) -> LLMResponse:
|
|
198
|
-
"""
|
|
199
|
-
Synchronously generate completions for given prompt.
|
|
197
|
+
"""Synchronously generate completions for given prompt.
|
|
200
198
|
|
|
201
199
|
Args:
|
|
202
200
|
prompt: Prompt to generate the completion for.
|
|
201
|
+
|
|
203
202
|
Returns:
|
|
204
203
|
List of message completions.
|
|
204
|
+
|
|
205
205
|
Raises:
|
|
206
206
|
ProviderClientAPIException: If the API request fails.
|
|
207
207
|
"""
|
|
@@ -213,26 +213,28 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
213
213
|
|
|
214
214
|
@suppress_logs(log_level=logging.WARNING)
|
|
215
215
|
async def _atext_completion(self, prompt: Union[List[str], str]) -> LLMResponse:
|
|
216
|
-
"""
|
|
217
|
-
Asynchronously generate completions for given prompt.
|
|
216
|
+
"""Asynchronously generate completions for given prompt.
|
|
218
217
|
|
|
219
218
|
Args:
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
with the following keys:
|
|
223
|
-
- content: The message content.
|
|
224
|
-
- role: The role of the message (e.g. user or system).
|
|
225
|
-
- a list of messages. Each message is a string and will be formatted
|
|
226
|
-
as a user message.
|
|
227
|
-
- a single message as a string which will be formatted as user message.
|
|
219
|
+
prompt: Prompt to generate the completion for.
|
|
220
|
+
|
|
228
221
|
Returns:
|
|
229
222
|
List of message completions.
|
|
223
|
+
|
|
230
224
|
Raises:
|
|
231
225
|
ProviderClientAPIException: If the API request fails.
|
|
232
226
|
"""
|
|
233
227
|
try:
|
|
234
|
-
|
|
228
|
+
timeout = self._litellm_extra_parameters.get(
|
|
229
|
+
"timeout", DEFAULT_REQUEST_TIMEOUT
|
|
230
|
+
)
|
|
231
|
+
response = await asyncio.wait_for(
|
|
232
|
+
atext_completion(prompt=prompt, **self._completion_fn_args),
|
|
233
|
+
timeout=timeout,
|
|
234
|
+
)
|
|
235
235
|
return self._format_text_completion_response(response)
|
|
236
|
+
except asyncio.TimeoutError:
|
|
237
|
+
self._handle_timeout_error()
|
|
236
238
|
except Exception as e:
|
|
237
239
|
raise ProviderClientAPIException(e)
|
|
238
240
|
|
rasa/shared/utils/configs.py
CHANGED
|
@@ -8,8 +8,7 @@ structlogger = structlog.get_logger()
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
def resolve_aliases(config: dict, deprecated_alias_mapping: dict) -> dict:
|
|
11
|
-
"""
|
|
12
|
-
Resolve aliases in the configuration to standard keys.
|
|
11
|
+
"""Resolve aliases in the configuration to standard keys.
|
|
13
12
|
|
|
14
13
|
Args:
|
|
15
14
|
config: Dictionary containing the configuration.
|
|
@@ -37,13 +36,13 @@ def raise_deprecation_warnings(
|
|
|
37
36
|
deprecated_alias_mapping: dict,
|
|
38
37
|
source: Optional[str] = None,
|
|
39
38
|
) -> None:
|
|
40
|
-
"""
|
|
41
|
-
Raises warnings for deprecated keys in the configuration.
|
|
39
|
+
"""Raises warnings for deprecated keys in the configuration.
|
|
42
40
|
|
|
43
41
|
Args:
|
|
44
42
|
config: Dictionary containing the configuration.
|
|
45
43
|
deprecated_alias_mapping: Dictionary mapping deprecated keys to
|
|
46
44
|
their standard keys.
|
|
45
|
+
source: Optional source context for the deprecation warning.
|
|
47
46
|
|
|
48
47
|
Raises:
|
|
49
48
|
DeprecationWarning: If any deprecated key is found in the config.
|
|
@@ -61,8 +60,7 @@ def raise_deprecation_warnings(
|
|
|
61
60
|
|
|
62
61
|
|
|
63
62
|
def validate_required_keys(config: dict, required_keys: list) -> None:
|
|
64
|
-
"""
|
|
65
|
-
Validates that the passed config contains all the required keys.
|
|
63
|
+
"""Validates that the passed config contains all the required keys.
|
|
66
64
|
|
|
67
65
|
Args:
|
|
68
66
|
config: Dictionary containing the configuration.
|
|
@@ -84,8 +82,7 @@ def validate_required_keys(config: dict, required_keys: list) -> None:
|
|
|
84
82
|
|
|
85
83
|
|
|
86
84
|
def validate_forbidden_keys(config: dict, forbidden_keys: list) -> None:
|
|
87
|
-
"""
|
|
88
|
-
Validates that the passed config doesn't contain any forbidden keys.
|
|
85
|
+
"""Validates that the passed config doesn't contain any forbidden keys.
|
|
89
86
|
|
|
90
87
|
Args:
|
|
91
88
|
config: Dictionary containing the configuration.
|
rasa/utils/common.py
CHANGED
|
@@ -34,6 +34,7 @@ from rasa.constants import (
|
|
|
34
34
|
ENV_LOG_LEVEL_KAFKA,
|
|
35
35
|
ENV_LOG_LEVEL_LIBRARIES,
|
|
36
36
|
ENV_LOG_LEVEL_MATPLOTLIB,
|
|
37
|
+
ENV_LOG_LEVEL_PYMONGO,
|
|
37
38
|
ENV_LOG_LEVEL_RABBITMQ,
|
|
38
39
|
)
|
|
39
40
|
from rasa.shared.constants import DEFAULT_LOG_LEVEL, ENV_LOG_LEVEL, TCP_PROTOCOL
|
|
@@ -281,6 +282,7 @@ def configure_library_logging() -> None:
|
|
|
281
282
|
update_kafka_log_level(library_log_level)
|
|
282
283
|
update_rabbitmq_log_level(library_log_level)
|
|
283
284
|
update_websockets_log_level(library_log_level)
|
|
285
|
+
update_pymongo_log_level(library_log_level)
|
|
284
286
|
|
|
285
287
|
|
|
286
288
|
def update_apscheduler_log_level() -> None:
|
|
@@ -415,6 +417,13 @@ def update_websockets_log_level(library_log_level: Text) -> None:
|
|
|
415
417
|
logging.getLogger("websockets").propagate = False
|
|
416
418
|
|
|
417
419
|
|
|
420
|
+
def update_pymongo_log_level(library_log_level: str) -> None:
|
|
421
|
+
"""Set the log level of pymongo."""
|
|
422
|
+
log_level = os.environ.get(ENV_LOG_LEVEL_PYMONGO, library_log_level)
|
|
423
|
+
logging.getLogger("pymongo").setLevel(log_level)
|
|
424
|
+
logging.getLogger("pymongo").propagate = False
|
|
425
|
+
|
|
426
|
+
|
|
418
427
|
def sort_list_of_dicts_by_first_key(dicts: List[Dict]) -> List[Dict]:
|
|
419
428
|
"""Sorts a list of dictionaries by their first key."""
|
|
420
429
|
return sorted(dicts, key=lambda d: next(iter(d.keys())))
|
rasa/utils/endpoints.py
CHANGED
|
@@ -8,6 +8,7 @@ import structlog
|
|
|
8
8
|
from aiohttp.client_exceptions import ContentTypeError
|
|
9
9
|
from sanic.request import Request
|
|
10
10
|
|
|
11
|
+
from rasa.core.actions.constants import MISSING_DOMAIN_MARKER
|
|
11
12
|
from rasa.core.constants import DEFAULT_REQUEST_TIMEOUT
|
|
12
13
|
from rasa.shared.exceptions import FileNotFoundException
|
|
13
14
|
from rasa.shared.utils.yaml import read_config_file
|
|
@@ -213,6 +214,11 @@ class EndpointConfig:
|
|
|
213
214
|
ssl=sslcontext,
|
|
214
215
|
**kwargs,
|
|
215
216
|
) as response:
|
|
217
|
+
if response.status == 449:
|
|
218
|
+
# Return a special marker that HTTPCustomActionExecutor can detect
|
|
219
|
+
# This avoids raising an exception for this expected case
|
|
220
|
+
return {MISSING_DOMAIN_MARKER: True}
|
|
221
|
+
|
|
216
222
|
if response.status >= 400:
|
|
217
223
|
raise ClientResponseError(
|
|
218
224
|
response.status,
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.13.
|
|
3
|
+
Version: 3.13.14
|
|
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
|
|
@@ -93,7 +93,7 @@ Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
|
|
|
93
93
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
94
94
|
Requires-Dist: python-engineio (>=4.12.2,<4.13.0)
|
|
95
95
|
Requires-Dist: python-keycloak (>=3.12.0,<4.0.0)
|
|
96
|
-
Requires-Dist: python-socketio (>=5.
|
|
96
|
+
Requires-Dist: python-socketio (>=5.14.2,<5.15.0)
|
|
97
97
|
Requires-Dist: pytz (>=2022.7.1,<2023.0)
|
|
98
98
|
Requires-Dist: pyyaml (>=6.0)
|
|
99
99
|
Requires-Dist: qdrant-client (>=1.9.1,<1.10.0)
|
|
@@ -76,11 +76,11 @@ rasa/cli/train.py,sha256=2XRAq1OYRrGCle_j6IqNzhMkHOCg9A0FWqhKjGj1fWA,9827
|
|
|
76
76
|
rasa/cli/utils.py,sha256=NSoKe0-9RKahthznHjckRlw-SsdquuOT2uHZx4e-J4k,17557
|
|
77
77
|
rasa/cli/visualize.py,sha256=YmRAATAfxHpgE8_PknGyM-oIujwICNzVftTzz6iLNNc,1256
|
|
78
78
|
rasa/cli/x.py,sha256=T10e6bVUx5BadZOt3JJ4T5EByiR5jJ2hv5ExXOnt9F8,6839
|
|
79
|
-
rasa/constants.py,sha256=
|
|
79
|
+
rasa/constants.py,sha256=v99VsQeVNe_I0jS4Yq97LXw3IHJJGCvy-EmG3fXWlMw,1433
|
|
80
80
|
rasa/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
81
|
rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
82
|
rasa/core/actions/action.py,sha256=Sedj_SSKgMsPgtIENeGWSpTZ6WOwdgVpT4kwRe8usKk,42787
|
|
83
|
-
rasa/core/actions/action_clean_stack.py,sha256=
|
|
83
|
+
rasa/core/actions/action_clean_stack.py,sha256=Zs3Pq9za8HamJq3H6IYTXd8dKE-NC0ThSWgdbTNmCFU,3670
|
|
84
84
|
rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
|
|
85
85
|
rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
|
|
86
86
|
rasa/core/actions/action_repeat_bot_messages.py,sha256=T7bJH0fsxFQgbkCZZ5dnPi8v18-2X9QZZLfAHmmn7WI,3466
|
|
@@ -88,13 +88,13 @@ rasa/core/actions/action_run_slot_rejections.py,sha256=RSSsPRf67kcybMdMUTd55vJt5
|
|
|
88
88
|
rasa/core/actions/action_trigger_chitchat.py,sha256=krOPqCXBihxOskqmm05A4mFEm4lj4ohvzuddy7rELVQ,1084
|
|
89
89
|
rasa/core/actions/action_trigger_flow.py,sha256=IydYAGafTtoY6XSgCX124xJQhzudUg8JAICstqsV3VA,3487
|
|
90
90
|
rasa/core/actions/action_trigger_search.py,sha256=QfYqnaGRCqRYJ4msYsLAbnVYW5ija_tqhCcKIN8aEfw,1064
|
|
91
|
-
rasa/core/actions/constants.py,sha256=
|
|
92
|
-
rasa/core/actions/custom_action_executor.py,sha256=
|
|
91
|
+
rasa/core/actions/constants.py,sha256=7ek4eYaaDzDudP40pFJ38nU2f-Kh2cnvhEff8mr3jsE,301
|
|
92
|
+
rasa/core/actions/custom_action_executor.py,sha256=mcs8xfZn9lbp5uV2JLhDFC64ivnH5J7ZzpFxaHpJ1jc,8212
|
|
93
93
|
rasa/core/actions/direct_custom_actions_executor.py,sha256=zGHI3cXVRfyzaaGSH7VePXHQxsDAvF0iAZSEcOuM-_M,4026
|
|
94
94
|
rasa/core/actions/e2e_stub_custom_action_executor.py,sha256=D-kECC1QjVLv4owNxstW2xJPPsXTGfGepvquMeWB_ec,2282
|
|
95
95
|
rasa/core/actions/forms.py,sha256=MPGxp3vg-EgFcU5UQYqWM2tycSFIuoF6vWvNSSWPhSA,26967
|
|
96
|
-
rasa/core/actions/grpc_custom_action_executor.py,sha256=
|
|
97
|
-
rasa/core/actions/http_custom_action_executor.py,sha256=
|
|
96
|
+
rasa/core/actions/grpc_custom_action_executor.py,sha256=GMzO_JaocQJjoPZ0yFvBkFHKwhl6SlFZOnt4By-1ZAI,10761
|
|
97
|
+
rasa/core/actions/http_custom_action_executor.py,sha256=GLYxCjoj-GohrVaqxjNtm9npN47kYZfHa06u15ThTBQ,6662
|
|
98
98
|
rasa/core/actions/loops.py,sha256=3-kt_Sn_Y05PLYoYMsnuIn9e5mxYp31DJIx2omqy0dU,3531
|
|
99
99
|
rasa/core/actions/two_stage_fallback.py,sha256=k8PkD25fvH3kThG9lpC6oLMK7o15kV4yEbv2E2nyans,6065
|
|
100
100
|
rasa/core/agent.py,sha256=9DEhOut37kAMikrzg3meaGZ_Q8IwTvuBTuvzBau_uB4,21755
|
|
@@ -282,7 +282,7 @@ rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFS
|
|
|
282
282
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
|
|
283
283
|
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=Tc30Z-gLB3v2PM0ibNpF2m0vTzbXP6h9B64HNwvciOE,8936
|
|
284
284
|
rasa/core/channels/voice_stream/util.py,sha256=d0Tl0tGAnVj3SgGovsUMHx-QL44nrPI29OTYKYleH0U,1987
|
|
285
|
-
rasa/core/channels/voice_stream/voice_channel.py,sha256=
|
|
285
|
+
rasa/core/channels/voice_stream/voice_channel.py,sha256=sCqfivVm-hI2IUVQiJ73q_Hr1GsMegx3zPwiCZom6pQ,21840
|
|
286
286
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
287
287
|
rasa/core/concurrent_lock_store.py,sha256=aAZDAYUVffCx2J8wbJ05vTE3Xd9bQ4Dx13RZmCy3ohw,8285
|
|
288
288
|
rasa/core/constants.py,sha256=dEokmEf6XkOFA_xpuwjqwNtlZv-a5Tz5dLMRc7Vu4CU,4070
|
|
@@ -328,7 +328,7 @@ rasa/core/policies/enterprise_search_prompt_with_relevancy_check_and_citation_te
|
|
|
328
328
|
rasa/core/policies/flow_policy.py,sha256=Rvx5MIGDHi9sVxGazf-dXs6F-hFHSi3UoVjjSP8ATik,7470
|
|
329
329
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
330
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
331
|
-
rasa/core/policies/flows/flow_executor.py,sha256=
|
|
331
|
+
rasa/core/policies/flows/flow_executor.py,sha256=HZHM1tKzEAboEF1qSMXnvCAMMoNUVul4u4MJDLPTPnY,29210
|
|
332
332
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
333
333
|
rasa/core/policies/intentless_policy.py,sha256=1A7FSkI4PQdN3t1p3GQhSImmO-m6UVCUzzEsjxz4nKc,38040
|
|
334
334
|
rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
|
|
@@ -338,7 +338,7 @@ rasa/core/policies/rule_policy.py,sha256=EItfUn07JIBLRIbriPKDprsvWq_-xzZTGrlTS2e
|
|
|
338
338
|
rasa/core/policies/ted_policy.py,sha256=0RzIuyrtt4PxLcqQ-bfaExkZvU-TnsMbgmDcwh2SakY,87710
|
|
339
339
|
rasa/core/policies/unexpected_intent_policy.py,sha256=ZXvbswf2NDy00kHmBQcyXa1OVYFyc79HQKrFkQ4gCfM,39609
|
|
340
340
|
rasa/core/processor.py,sha256=9bFLV7Thgde1XXsvkKbXqwsSz8QxaC2E88qAYmpEBuI,62314
|
|
341
|
-
rasa/core/run.py,sha256=
|
|
341
|
+
rasa/core/run.py,sha256=Zm5HGqsqIkQGepzc5gnVFqPMAeCWoWuGIcKZbyR-ik0,12123
|
|
342
342
|
rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
343
|
rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
|
|
344
344
|
rasa/core/secrets_manager/endpoints.py,sha256=4b7KXB9amdF23eYGsx8215bOjE5-TQ73qD2hdI8Sm9c,12662
|
|
@@ -402,7 +402,7 @@ rasa/dialogue_understanding/generator/command_parser_validator.py,sha256=qUIaKBR
|
|
|
402
402
|
rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
|
|
403
403
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
404
404
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=D-D6bvYt_GDLoRQzhvlTEPnmZI4ceESLJBLWrMgUyrA,18120
|
|
405
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
405
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=szH7hDWb--IgK0UgsmM0rFzPUGuRxmAc5sHp6ER6BEg,23704
|
|
406
406
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=z7jhIJ3W_5GFH-p15kVoWbigMIoY8fIJjc_j_uX7yxw,2581
|
|
407
407
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
408
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
@@ -416,8 +416,8 @@ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_
|
|
|
416
416
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_claude_3_5_sonnet_20240620_template.jinja2,sha256=r8EKbUFCWV2_x8rZIAZgebEBkusdqokGQR65fiTE5a4,4863
|
|
417
417
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_gpt_4o_2024_11_20_template.jinja2,sha256=IHoD5g3YlZjMLCAjlNtp2NmFsyyio7L1LxLlDvXrZ7Y,4862
|
|
418
418
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
|
-
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=
|
|
420
|
-
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=
|
|
419
|
+
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=x36CXl9J0R0VrxMO2V7ONcDIHNccIj-O1yDmHq2t8cg,5669
|
|
420
|
+
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=X842BVhidN9bxXKYT--NGAgmUU3MtQr5rwB0gKSO73U,5491
|
|
421
421
|
rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py,sha256=RfGtEdRB6SA2NmShq7c7dLuVCc7LiBmfguAam_2V1go,17394
|
|
422
422
|
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=_cT866aB8TuSqe6_ybPaSQVCY0l4qgX4lg6QZUUryo4,3494
|
|
423
423
|
rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
|
|
@@ -443,7 +443,7 @@ rasa/dialogue_understanding/patterns/skip_question.py,sha256=fJ1MC0WEEtS-BpnGJEf
|
|
|
443
443
|
rasa/dialogue_understanding/patterns/user_silence.py,sha256=xP-QMnd-MsybH5z4g01hBv4OLOHcw6m3rc26LQfe2zo,1140
|
|
444
444
|
rasa/dialogue_understanding/patterns/validate_slot.py,sha256=hqd5AEGT3M3HLNhMwuI9W9kZNCvgU6GyI-2xc2b4kz8,2085
|
|
445
445
|
rasa/dialogue_understanding/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
446
|
-
rasa/dialogue_understanding/processor/command_processor.py,sha256=
|
|
446
|
+
rasa/dialogue_understanding/processor/command_processor.py,sha256=BQBpTUUddNFFRZ9NzAskQyUWjKqLWMJnRbN-nbmPr_w,33874
|
|
447
447
|
rasa/dialogue_understanding/processor/command_processor_component.py,sha256=rkErI_Uo7s3LsEojUSGSRbWGyGaX7GtGOYSJn0V-TI4,1650
|
|
448
448
|
rasa/dialogue_understanding/stack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
449
449
|
rasa/dialogue_understanding/stack/dialogue_stack.py,sha256=cYV6aQeh0EuOJHODDqK3biqXozYTX8baPgLwHhPxFqs,5244
|
|
@@ -476,7 +476,7 @@ rasa/e2e_test/aggregate_test_stats_calculator.py,sha256=Ys2Zfc8OOPNN2KHtfKqRdyrW
|
|
|
476
476
|
rasa/e2e_test/assertions.py,sha256=yATtyCRQpuBeQF-2Vhd5IYf4rQAeKlo72HAX0x9gS4M,46928
|
|
477
477
|
rasa/e2e_test/assertions_schema.yml,sha256=NJ-3uuK2lHKKGn4GV3XsnNSvRRQFJznzknUSIBQZMws,3250
|
|
478
478
|
rasa/e2e_test/constants.py,sha256=5ttnfw8jWy3wVuPm3N4m-nw9LytpwQrVb3-IZo75KaI,1508
|
|
479
|
-
rasa/e2e_test/e2e_config.py,sha256=
|
|
479
|
+
rasa/e2e_test/e2e_config.py,sha256=3SC2bN1XJH6xKbHpOXh-Rp1FeQPdqddEsAYGeD4iN1U,9438
|
|
480
480
|
rasa/e2e_test/e2e_config_schema.yml,sha256=zQectcNvmNChdPMqO4O-CufqAF90AMBbP-Dmghaig_Q,837
|
|
481
481
|
rasa/e2e_test/e2e_test_case.py,sha256=3fKan0GJOMKm-FKHjQaY9AVhI4ortQYuEsPh9GHwbio,20817
|
|
482
482
|
rasa/e2e_test/e2e_test_converter.py,sha256=bcSg-hWKPGvZBip6PKPvYAcgvSUCU5uXmC9D7UTmJYY,12570
|
|
@@ -564,7 +564,7 @@ rasa/model_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
564
564
|
rasa/model_manager/config.py,sha256=8upZP4CokMBy0imiiPvINJuLW4JOQ326dPiJ041jJUI,1231
|
|
565
565
|
rasa/model_manager/model_api.py,sha256=uY8gC4xSwb7OxnMU0hcT5fx6bGgoTURA3r6bhpxNJdk,23855
|
|
566
566
|
rasa/model_manager/runner_service.py,sha256=CfvkmCqk-syCqTxb4u3N44WvzXuWFlpomR9SvgzIFKs,9514
|
|
567
|
-
rasa/model_manager/socket_bridge.py,sha256=
|
|
567
|
+
rasa/model_manager/socket_bridge.py,sha256=g_cxeFDrvl0u6a7g-Ap55hx4-G3dfxtUpxtSH4Ah9ec,5549
|
|
568
568
|
rasa/model_manager/studio_jwt_auth.py,sha256=uls2QiHUlUrR3fOzZssW4UaAMJMfnPMZeV1aDmZIT0E,2645
|
|
569
569
|
rasa/model_manager/trainer_service.py,sha256=aw3tp2736fILT5bYunkERPcWR5TjjyhThBXIktJfhqU,10628
|
|
570
570
|
rasa/model_manager/utils.py,sha256=rS0ST-rJMuZOna90r_Ioz7gOkZ8r8vm4XAhzI0iUZOA,2643
|
|
@@ -649,7 +649,7 @@ rasa/shared/core/domain.py,sha256=PTSwkm_m9E5hzuxUrIjoLVEtYTHk1gjul3ic6Q0tUg8,86
|
|
|
649
649
|
rasa/shared/core/events.py,sha256=FAWCA0JXim89u4AcWLKCt4F9A0pkYDE5NhCIyiKwWTM,89973
|
|
650
650
|
rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
|
|
651
651
|
rasa/shared/core/flows/constants.py,sha256=uno5qtsWl8lxELsDe04_5tJH1tBgj6uRRr_g83s10xA,404
|
|
652
|
-
rasa/shared/core/flows/flow.py,sha256=
|
|
652
|
+
rasa/shared/core/flows/flow.py,sha256=CbziZ4kYDiwhTS1h7UCqFE0n7GMPrR_ZznEUqpSGvBg,29792
|
|
653
653
|
rasa/shared/core/flows/flow_path.py,sha256=xstwahZBU5cfMY46mREA4NoOGlKLBRAqeP_mJ3UZqOI,2283
|
|
654
654
|
rasa/shared/core/flows/flow_step.py,sha256=b1O2b5sJJP9lyPzcAStNJITYcPQWlyIlsu2qXmTxVSQ,4989
|
|
655
655
|
rasa/shared/core/flows/flow_step_links.py,sha256=UNlE8xuhi-8R3CL2HPLEp0sAaKP_Obhv5yHSRNsiP8Q,11054
|
|
@@ -676,7 +676,7 @@ rasa/shared/core/generator.py,sha256=UAuBPu5UjUhL9djVK-PvrWZcNhRACOEgnRsTleV7eeY
|
|
|
676
676
|
rasa/shared/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
677
677
|
rasa/shared/core/policies/utils.py,sha256=rWE_-48Ovc__V7wOKCJ-2lTerVRtN3iRHV4ZvuU2b2g,3070
|
|
678
678
|
rasa/shared/core/slot_mappings.py,sha256=afWxJsnAdHPzIxpHBBG1NbK4JBBWSsua3_xq87PKEZA,26663
|
|
679
|
-
rasa/shared/core/slots.py,sha256=
|
|
679
|
+
rasa/shared/core/slots.py,sha256=2Ya_zw4e7B3OHPWCHAmpiMirQ0s67-nBsZeXxXwrsl4,30831
|
|
680
680
|
rasa/shared/core/trackers.py,sha256=LwePm-7-QySHHhCWzXkTnJgcLaqvyG0DwLhJ6EWG0NM,45583
|
|
681
681
|
rasa/shared/core/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
682
682
|
rasa/shared/core/training_data/loading.py,sha256=RCx1uTI9iDejFI_sWg3qPzhjln7-hu78f3EDAT6K0No,2894
|
|
@@ -726,16 +726,16 @@ rasa/shared/nlu/training_data/util.py,sha256=SCd97o6dDhbodasRK3JuaiAA1Xcy0faEMTj
|
|
|
726
726
|
rasa/shared/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
727
727
|
rasa/shared/providers/_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
728
728
|
rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=MnvWRlCN-nFv5wb8AtFPM1tymCr72jmhI-MQgZZphAs,19392
|
|
729
|
-
rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=
|
|
729
|
+
rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=dbqWydyDsjMqYkPNSyavFKG75Aih8KwfAxIczb2MFkA,10785
|
|
730
730
|
rasa/shared/providers/_configs/client_config.py,sha256=nQ469h1XI970_7Vs49hNIpBIwlAeiAg-cwV0JFp7Hg0,1618
|
|
731
|
-
rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=
|
|
731
|
+
rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=qIogX-S9g9bnFWwB5-FZ7WGongaR4L_YKlInhSMaYQo,4262
|
|
732
732
|
rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py,sha256=aOIN_t0bM6Nfh5IkrNZd-_l8zo8UplM3iMlWuIkuYRg,8189
|
|
733
|
-
rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=
|
|
733
|
+
rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=KsL4XeaOTzAAf3gQq9jouxj05NViB6GoXiYn2A567Vg,7266
|
|
734
734
|
rasa/shared/providers/_configs/model_group_config.py,sha256=gcvRY86StqCLqAOxLh-2sWEPxMNnwt43vR3QaviElZI,5618
|
|
735
735
|
rasa/shared/providers/_configs/oauth_config.py,sha256=eMHaXdSwiYqe4LC_UhDPJcrE7tqv3HDc8ghgkhwcYo4,791
|
|
736
|
-
rasa/shared/providers/_configs/openai_client_config.py,sha256=
|
|
737
|
-
rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=
|
|
738
|
-
rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=
|
|
736
|
+
rasa/shared/providers/_configs/openai_client_config.py,sha256=U8DP1G7OrRXJSRumTc5XS6kg2okLHNP0VXGhqXmmYZc,5956
|
|
737
|
+
rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=ob5HZfOG5kp6jqVwsVsAdgFGI6i0KqWYyIsI1k8S6Hs,2226
|
|
738
|
+
rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=HTB31Uk6nhuW98h10sO5n0bIUBqchQTGcdCOf3I1fDQ,5944
|
|
739
739
|
rasa/shared/providers/_configs/utils.py,sha256=AUnvh4qF9VfLoXpTPoZfwYQ9YsVW8HPMbWa-vG6wOHw,453
|
|
740
740
|
rasa/shared/providers/_ssl_verification_utils.py,sha256=vUnP0vocf0GQ0wG8IQpPcCet4c1C9-wQWQNckNWbDBk,4165
|
|
741
741
|
rasa/shared/providers/_utils.py,sha256=LVPsZbl6zzF4hZE6bNVwgY4BkbeIWnRD0dhEqA-kWkk,6975
|
|
@@ -751,15 +751,15 @@ rasa/shared/providers/embedding/huggingface_local_embedding_client.py,sha256=Zo3
|
|
|
751
751
|
rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=eafDk6IgQtL_kiKgpa6sJs1oATyRi2NT2leUFQsED2s,4551
|
|
752
752
|
rasa/shared/providers/embedding/openai_embedding_client.py,sha256=XNRGE7apo2v3kWRrtgxE-Gq4rvNko3IiXtvgC4krDYE,5429
|
|
753
753
|
rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
754
|
-
rasa/shared/providers/llm/_base_litellm_client.py,sha256=
|
|
754
|
+
rasa/shared/providers/llm/_base_litellm_client.py,sha256=4vAbQihXHscPHOpxIWvVqhVMyu4f2X-JZDjZGDxiaSY,12872
|
|
755
755
|
rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=ui85vothxR2P_-eLc4nLgbpjnpEKY2BXnIjLxBZoYz8,12504
|
|
756
756
|
rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=q6QoyPPq0K7V9aeD0zr08ZK69xlH4GseGFdhUxpWcG8,4210
|
|
757
|
-
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=
|
|
757
|
+
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=czIiP8X0wTrj_GJAW1izywV7TW19Uv57TUDPQVLszVg,8587
|
|
758
758
|
rasa/shared/providers/llm/llm_client.py,sha256=-hTCRsL-A3GCMRHtcyCgcCyra-9OJ8GUC-mURoRXH0k,3242
|
|
759
759
|
rasa/shared/providers/llm/llm_response.py,sha256=8mOpZdmh4-3yM7aOmNO0yEYUmRDErfoP7ZDMUuHr2Cc,3504
|
|
760
760
|
rasa/shared/providers/llm/openai_llm_client.py,sha256=rSdLj29Hl1Wm5G6Uwo77j4WqogK_3QIbTA7fyt63YAg,5013
|
|
761
761
|
rasa/shared/providers/llm/rasa_llm_client.py,sha256=44Tvtnkq4mxDIxtdrGUkwBWAvX1OLaswqmpAsyBH8e8,3504
|
|
762
|
-
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=
|
|
762
|
+
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=aPjRrwXClfcRayFLyq_grSyKrDoUvFQQzLvHELA10vM,10099
|
|
763
763
|
rasa/shared/providers/mappings.py,sha256=QSD3XWvhYCtBLNpGycN30vEnLULYIaqCsAtmfPfSZ3U,3674
|
|
764
764
|
rasa/shared/providers/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
765
765
|
rasa/shared/providers/router/_base_litellm_router_client.py,sha256=JV9lYnhIG_CWMtPB5nofjNdRO5V-Wl0DH-HyPm__eJ0,11003
|
|
@@ -767,7 +767,7 @@ rasa/shared/providers/router/router_client.py,sha256=5BBEg-_JtClOVxBy1hu-HceG329
|
|
|
767
767
|
rasa/shared/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
768
768
|
rasa/shared/utils/cli.py,sha256=Md1KOje2v_gsY9xH7T-U_aKNZaI4D2zdpyt_gehbvs8,3034
|
|
769
769
|
rasa/shared/utils/common.py,sha256=XjbvL4QNnuieU4SXye6MVPYNzN5zLY10R7GSLSjtOmM,12344
|
|
770
|
-
rasa/shared/utils/configs.py,sha256=
|
|
770
|
+
rasa/shared/utils/configs.py,sha256=ePHeYae3MGgj7vq7d6K7fpNFuHSGGpeGqmw20xVys5U,3531
|
|
771
771
|
rasa/shared/utils/constants.py,sha256=Y3lnqtSMacVXS47m_G2T3QUuBIAEoMPinmNVcbCt-R8,252
|
|
772
772
|
rasa/shared/utils/health_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
773
773
|
rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i6HlRLzee8pafejlTkUesOhY6FZb5-wAZMI,1034
|
|
@@ -813,9 +813,9 @@ rasa/tracing/metric_instrument_provider.py,sha256=FjdvAhKvJNKhvJPyFw1wWG6DWmlSyb
|
|
|
813
813
|
rasa/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
814
814
|
rasa/utils/beta.py,sha256=h2xwGagMh2SnpMuqhkEAEjL7C_CyU6b1te7sbtF-lm4,3240
|
|
815
815
|
rasa/utils/cli.py,sha256=L-DT4nPdVBWfc2m1COHrziLitVWJxazSreb6JLbTho4,865
|
|
816
|
-
rasa/utils/common.py,sha256=
|
|
816
|
+
rasa/utils/common.py,sha256=lURU47JTW46qM5YSVaeQzQQQXv5j0gPK2nv7VsXEfoo,21905
|
|
817
817
|
rasa/utils/converter.py,sha256=H4LHpoAK7MXMmvNZG_uSn0gbccCJvHtsA2-6Zya4u6M,1656
|
|
818
|
-
rasa/utils/endpoints.py,sha256=
|
|
818
|
+
rasa/utils/endpoints.py,sha256=KfzdfZupIgBCAHurBM_6RbkFzcHk-o3vbNEIEj-GPa4,11233
|
|
819
819
|
rasa/utils/io.py,sha256=LIAdQQqUPA-V_mdpgeQzPDzA4rmsdZLyVKc8j_0Z70Y,7161
|
|
820
820
|
rasa/utils/json_utils.py,sha256=SKtJzzsIRCAgNEQiBvWDDm9euMRBgJ-TyvCi2tXHH1w,1689
|
|
821
821
|
rasa/utils/licensing.py,sha256=SP_jm0S1hpwPGh9bQaJviBL0Eu4xuwToObWTZRLaouQ,20768
|
|
@@ -846,9 +846,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
|
|
|
846
846
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
847
847
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
848
848
|
rasa/validator.py,sha256=fhRlHQvuBkiup0FnNYmwRmqQwC3QpdCJt0TuvW4jMaI,83125
|
|
849
|
-
rasa/version.py,sha256=
|
|
850
|
-
rasa_pro-3.13.
|
|
851
|
-
rasa_pro-3.13.
|
|
852
|
-
rasa_pro-3.13.
|
|
853
|
-
rasa_pro-3.13.
|
|
854
|
-
rasa_pro-3.13.
|
|
849
|
+
rasa/version.py,sha256=5_5rmMdM46IHjcDYcqr5sll5lo1WNDzqhU_XfmYqcPQ,118
|
|
850
|
+
rasa_pro-3.13.14.dist-info/METADATA,sha256=bemK-EQe1qhkE2Oaf1VH_tUXcOfuY-XO0KHPVEr6FQU,10559
|
|
851
|
+
rasa_pro-3.13.14.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
852
|
+
rasa_pro-3.13.14.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
853
|
+
rasa_pro-3.13.14.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
854
|
+
rasa_pro-3.13.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|