rasa-pro 3.11.3a1.dev7__py3-none-any.whl → 3.12.0.dev2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rasa-pro might be problematic. Click here for more details.
- rasa/cli/arguments/default_arguments.py +1 -1
- rasa/cli/dialogue_understanding_test.py +251 -0
- rasa/core/actions/action.py +7 -16
- rasa/core/channels/__init__.py +0 -2
- rasa/core/channels/socketio.py +23 -1
- rasa/core/nlg/contextual_response_rephraser.py +9 -62
- rasa/core/policies/enterprise_search_policy.py +12 -77
- rasa/core/policies/flows/flow_executor.py +2 -26
- rasa/core/processor.py +8 -11
- rasa/dialogue_understanding/generator/command_generator.py +49 -43
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +5 -5
- rasa/dialogue_understanding/generator/llm_command_generator.py +1 -2
- rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +15 -34
- rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +6 -11
- rasa/dialogue_understanding/utils.py +1 -8
- rasa/dialogue_understanding_test/command_metric_calculation.py +12 -0
- rasa/dialogue_understanding_test/constants.py +2 -0
- rasa/dialogue_understanding_test/du_test_runner.py +93 -0
- rasa/dialogue_understanding_test/io.py +54 -0
- rasa/dialogue_understanding_test/validation.py +22 -0
- rasa/e2e_test/e2e_test_runner.py +9 -7
- rasa/hooks.py +9 -15
- rasa/model_manager/socket_bridge.py +2 -7
- rasa/model_manager/warm_rasa_process.py +4 -9
- rasa/plugin.py +0 -11
- rasa/shared/constants.py +2 -21
- rasa/shared/core/events.py +8 -8
- rasa/shared/nlu/constants.py +0 -3
- rasa/shared/providers/_configs/azure_entra_id_client_creds.py +40 -0
- rasa/shared/providers/_configs/azure_entra_id_config.py +533 -0
- rasa/shared/providers/_configs/azure_openai_client_config.py +131 -15
- rasa/shared/providers/_configs/client_config.py +3 -1
- rasa/shared/providers/_configs/default_litellm_client_config.py +9 -7
- rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py +13 -11
- rasa/shared/providers/_configs/litellm_router_client_config.py +12 -10
- rasa/shared/providers/_configs/model_group_config.py +11 -5
- rasa/shared/providers/_configs/oauth_config.py +33 -0
- rasa/shared/providers/_configs/openai_client_config.py +14 -12
- rasa/shared/providers/_configs/rasa_llm_client_config.py +5 -3
- rasa/shared/providers/_configs/self_hosted_llm_client_config.py +12 -11
- rasa/shared/providers/constants.py +6 -0
- rasa/shared/providers/embedding/azure_openai_embedding_client.py +30 -7
- rasa/shared/providers/embedding/litellm_router_embedding_client.py +5 -2
- rasa/shared/providers/llm/_base_litellm_client.py +6 -4
- rasa/shared/providers/llm/azure_openai_llm_client.py +88 -34
- rasa/shared/providers/llm/default_litellm_llm_client.py +4 -2
- rasa/shared/providers/llm/litellm_router_llm_client.py +23 -3
- rasa/shared/providers/llm/llm_client.py +4 -2
- rasa/shared/providers/llm/llm_response.py +1 -42
- rasa/shared/providers/llm/openai_llm_client.py +11 -5
- rasa/shared/providers/llm/rasa_llm_client.py +13 -5
- rasa/shared/providers/llm/self_hosted_llm_client.py +17 -10
- rasa/shared/providers/router/_base_litellm_router_client.py +10 -8
- rasa/shared/providers/router/router_client.py +3 -1
- rasa/shared/utils/llm.py +16 -12
- rasa/shared/utils/schemas/events.py +1 -1
- rasa/tracing/instrumentation/attribute_extractors.py +0 -2
- rasa/version.py +1 -1
- {rasa_pro-3.11.3a1.dev7.dist-info → rasa_pro-3.12.0.dev2.dist-info}/METADATA +2 -1
- {rasa_pro-3.11.3a1.dev7.dist-info → rasa_pro-3.12.0.dev2.dist-info}/RECORD +63 -56
- rasa/core/channels/studio_chat.py +0 -192
- rasa/dialogue_understanding/constants.py +0 -1
- {rasa_pro-3.11.3a1.dev7.dist-info → rasa_pro-3.12.0.dev2.dist-info}/NOTICE +0 -0
- {rasa_pro-3.11.3a1.dev7.dist-info → rasa_pro-3.12.0.dev2.dist-info}/WHEEL +0 -0
- {rasa_pro-3.11.3a1.dev7.dist-info → rasa_pro-3.12.0.dev2.dist-info}/entry_points.txt +0 -0
|
@@ -1,21 +1,28 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import logging
|
|
4
|
+
import os
|
|
1
5
|
from typing import Any, Dict, List, Optional, Union
|
|
6
|
+
|
|
7
|
+
import structlog
|
|
2
8
|
from litellm import (
|
|
3
|
-
text_completion,
|
|
4
9
|
atext_completion,
|
|
10
|
+
text_completion,
|
|
5
11
|
)
|
|
6
|
-
import logging
|
|
7
|
-
import os
|
|
8
|
-
import structlog
|
|
9
12
|
|
|
10
13
|
from rasa.shared.constants import (
|
|
11
|
-
SELF_HOSTED_VLLM_PREFIX,
|
|
12
|
-
SELF_HOSTED_VLLM_API_KEY_ENV_VAR,
|
|
13
14
|
API_KEY,
|
|
15
|
+
SELF_HOSTED_VLLM_API_KEY_ENV_VAR,
|
|
16
|
+
SELF_HOSTED_VLLM_PREFIX,
|
|
14
17
|
)
|
|
18
|
+
from rasa.shared.exceptions import ProviderClientAPIException
|
|
15
19
|
from rasa.shared.providers._configs.self_hosted_llm_client_config import (
|
|
16
20
|
SelfHostedLLMClientConfig,
|
|
17
21
|
)
|
|
18
|
-
from rasa.shared.
|
|
22
|
+
from rasa.shared.providers.constants import (
|
|
23
|
+
LITE_LLM_API_BASE_FIELD,
|
|
24
|
+
LITE_LLM_API_VERSION_FIELD,
|
|
25
|
+
)
|
|
19
26
|
from rasa.shared.providers.llm._base_litellm_client import _BaseLiteLLMClient
|
|
20
27
|
from rasa.shared.providers.llm.llm_response import LLMResponse
|
|
21
28
|
from rasa.shared.utils.io import suppress_logs
|
|
@@ -66,7 +73,7 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
66
73
|
self._apply_dummy_api_key_if_missing()
|
|
67
74
|
|
|
68
75
|
@classmethod
|
|
69
|
-
def from_config(cls, config: Dict[str, Any]) ->
|
|
76
|
+
def from_config(cls, config: Dict[str, Any]) -> SelfHostedLLMClient:
|
|
70
77
|
try:
|
|
71
78
|
client_config = SelfHostedLLMClientConfig.from_dict(config)
|
|
72
79
|
except ValueError as e:
|
|
@@ -183,8 +190,8 @@ class SelfHostedLLMClient(_BaseLiteLLMClient):
|
|
|
183
190
|
fn_args = super()._completion_fn_args
|
|
184
191
|
fn_args.update(
|
|
185
192
|
{
|
|
186
|
-
|
|
187
|
-
|
|
193
|
+
LITE_LLM_API_BASE_FIELD: self.api_base,
|
|
194
|
+
LITE_LLM_API_VERSION_FIELD: self.api_version,
|
|
188
195
|
}
|
|
189
196
|
)
|
|
190
197
|
return fn_args
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
from
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
2
3
|
import os
|
|
3
|
-
import
|
|
4
|
+
from typing import Any, Dict, List
|
|
4
5
|
|
|
6
|
+
import structlog
|
|
5
7
|
from litellm import Router
|
|
6
8
|
|
|
7
9
|
from rasa.shared.constants import (
|
|
8
|
-
|
|
10
|
+
API_KEY,
|
|
11
|
+
LITELLM_PARAMS_KEY,
|
|
12
|
+
MODEL_CONFIG_KEY,
|
|
9
13
|
MODEL_GROUP_ID_CONFIG_KEY,
|
|
14
|
+
MODEL_LIST_KEY,
|
|
10
15
|
ROUTER_CONFIG_KEY,
|
|
11
|
-
SELF_HOSTED_VLLM_PREFIX,
|
|
12
16
|
SELF_HOSTED_VLLM_API_KEY_ENV_VAR,
|
|
13
|
-
|
|
14
|
-
API_KEY,
|
|
15
|
-
MODEL_CONFIG_KEY,
|
|
17
|
+
SELF_HOSTED_VLLM_PREFIX,
|
|
16
18
|
USE_CHAT_COMPLETIONS_ENDPOINT_CONFIG_KEY,
|
|
17
19
|
)
|
|
18
20
|
from rasa.shared.exceptions import ProviderClientValidationError
|
|
@@ -93,7 +95,7 @@ class _BaseLiteLLMRouterClient:
|
|
|
93
95
|
return
|
|
94
96
|
|
|
95
97
|
@classmethod
|
|
96
|
-
def from_config(cls, config: Dict[str, Any]) ->
|
|
98
|
+
def from_config(cls, config: Dict[str, Any]) -> _BaseLiteLLMRouterClient:
|
|
97
99
|
"""Instantiates a LiteLLM Router Embedding client from a configuration dict.
|
|
98
100
|
|
|
99
101
|
Args:
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
1
3
|
from typing import Any, Dict, List, Protocol, runtime_checkable
|
|
2
4
|
|
|
3
5
|
|
|
@@ -9,7 +11,7 @@ class RouterClient(Protocol):
|
|
|
9
11
|
"""
|
|
10
12
|
|
|
11
13
|
@classmethod
|
|
12
|
-
def from_config(cls, config: dict) ->
|
|
14
|
+
def from_config(cls, config: dict) -> RouterClient:
|
|
13
15
|
"""
|
|
14
16
|
Initializes the router client with the given configuration.
|
|
15
17
|
|
rasa/shared/utils/llm.py
CHANGED
|
@@ -2,6 +2,7 @@ import json
|
|
|
2
2
|
from copy import deepcopy
|
|
3
3
|
from functools import wraps
|
|
4
4
|
from typing import (
|
|
5
|
+
TYPE_CHECKING,
|
|
5
6
|
Any,
|
|
6
7
|
Callable,
|
|
7
8
|
Dict,
|
|
@@ -9,26 +10,26 @@ from typing import (
|
|
|
9
10
|
Text,
|
|
10
11
|
Type,
|
|
11
12
|
TypeVar,
|
|
12
|
-
TYPE_CHECKING,
|
|
13
13
|
Union,
|
|
14
14
|
cast,
|
|
15
15
|
)
|
|
16
16
|
|
|
17
|
+
import litellm
|
|
17
18
|
import structlog
|
|
18
19
|
|
|
19
20
|
import rasa.shared.utils.io
|
|
20
21
|
from rasa.core.utils import AvailableEndpoints
|
|
21
22
|
from rasa.shared.constants import (
|
|
22
|
-
RASA_PATTERN_INTERNAL_ERROR_USER_INPUT_TOO_LONG,
|
|
23
|
-
RASA_PATTERN_INTERNAL_ERROR_USER_INPUT_EMPTY,
|
|
24
|
-
PROVIDER_CONFIG_KEY,
|
|
25
23
|
MODEL_GROUP_CONFIG_KEY,
|
|
26
24
|
MODEL_GROUP_ID_CONFIG_KEY,
|
|
27
25
|
MODELS_CONFIG_KEY,
|
|
26
|
+
PROVIDER_CONFIG_KEY,
|
|
27
|
+
RASA_PATTERN_INTERNAL_ERROR_USER_INPUT_EMPTY,
|
|
28
|
+
RASA_PATTERN_INTERNAL_ERROR_USER_INPUT_TOO_LONG,
|
|
28
29
|
ROUTER_CONFIG_KEY,
|
|
29
30
|
)
|
|
30
31
|
from rasa.shared.core.events import BotUttered, UserUttered
|
|
31
|
-
from rasa.shared.core.slots import
|
|
32
|
+
from rasa.shared.core.slots import BooleanSlot, CategoricalSlot, Slot
|
|
32
33
|
from rasa.shared.engine.caching import (
|
|
33
34
|
get_local_cache_location,
|
|
34
35
|
)
|
|
@@ -50,13 +51,13 @@ from rasa.shared.providers._configs.self_hosted_llm_client_config import (
|
|
|
50
51
|
from rasa.shared.providers.embedding.embedding_client import EmbeddingClient
|
|
51
52
|
from rasa.shared.providers.llm.llm_client import LLMClient
|
|
52
53
|
from rasa.shared.providers.mappings import (
|
|
53
|
-
get_llm_client_from_provider,
|
|
54
54
|
AZURE_OPENAI_PROVIDER,
|
|
55
|
+
HUGGINGFACE_LOCAL_EMBEDDING_PROVIDER,
|
|
55
56
|
OPENAI_PROVIDER,
|
|
56
57
|
SELF_HOSTED_PROVIDER,
|
|
57
|
-
get_embedding_client_from_provider,
|
|
58
|
-
HUGGINGFACE_LOCAL_EMBEDDING_PROVIDER,
|
|
59
58
|
get_client_config_class_from_provider,
|
|
59
|
+
get_embedding_client_from_provider,
|
|
60
|
+
get_llm_client_from_provider,
|
|
60
61
|
)
|
|
61
62
|
|
|
62
63
|
if TYPE_CHECKING:
|
|
@@ -103,6 +104,9 @@ _CombineConfigs_F = TypeVar(
|
|
|
103
104
|
)
|
|
104
105
|
|
|
105
106
|
|
|
107
|
+
litellm.set_verbose = True
|
|
108
|
+
|
|
109
|
+
|
|
106
110
|
def _compute_hash_for_cache_from_configs(
|
|
107
111
|
config_x: Dict[str, Any], config_y: Dict[str, Any]
|
|
108
112
|
) -> int:
|
|
@@ -355,13 +359,13 @@ def _combine_single_model_configs(
|
|
|
355
359
|
)
|
|
356
360
|
# Checks for deprecated keys, resolves aliases and returns a valid config.
|
|
357
361
|
# This is done to ensure that the custom config is valid.
|
|
358
|
-
return client_config_clazz.from_dict(custom_config).to_dict()
|
|
362
|
+
return client_config_clazz.from_dict(deepcopy(custom_config)).to_dict()
|
|
359
363
|
|
|
360
364
|
# If the provider is the same in both configs
|
|
361
365
|
# OR provider is not specified in the custom config
|
|
362
366
|
# perform MERGE by overriding the default config keys and values
|
|
363
367
|
# with custom config keys and values.
|
|
364
|
-
merged_config = {**default_config
|
|
368
|
+
merged_config = {**deepcopy(default_config), **deepcopy(custom_config)}
|
|
365
369
|
# Check for deprecated keys, resolve aliases and return a valid config.
|
|
366
370
|
# This is done to ensure that the merged config is valid.
|
|
367
371
|
default_config_clazz = get_client_config_class_from_provider(
|
|
@@ -512,7 +516,7 @@ def llm_client_factory(
|
|
|
512
516
|
Returns:
|
|
513
517
|
Instantiated LLM based on the configuration.
|
|
514
518
|
"""
|
|
515
|
-
config = combine_custom_and_default_config(custom_config, default_config)
|
|
519
|
+
config = combine_custom_and_default_config(deepcopy(custom_config), default_config)
|
|
516
520
|
|
|
517
521
|
ensure_cache()
|
|
518
522
|
|
|
@@ -641,7 +645,7 @@ def embedder_client_factory(
|
|
|
641
645
|
Returns:
|
|
642
646
|
Instantiated Embedder based on the configuration.
|
|
643
647
|
"""
|
|
644
|
-
config = combine_custom_and_default_config(custom_config, default_config)
|
|
648
|
+
config = combine_custom_and_default_config(deepcopy(custom_config), default_config)
|
|
645
649
|
|
|
646
650
|
ensure_cache()
|
|
647
651
|
|
|
@@ -161,7 +161,7 @@ FLOW_CANCELLED = {
|
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
DIALOGUE_STACK_UPDATED = {
|
|
164
|
-
"properties": {"event": {"const": "stack"}, "update": {"type": "
|
|
164
|
+
"properties": {"event": {"const": "stack"}, "update": {"type": "array"}}
|
|
165
165
|
}
|
|
166
166
|
ROUTING_SESSION_ENDED = {"properties": {"event": {"const": "routing_session_ended"}}}
|
|
167
167
|
|
|
@@ -578,7 +578,6 @@ def extract_attrs_for_run_step(
|
|
|
578
578
|
tracker: DialogueStateTracker,
|
|
579
579
|
available_actions: List[str],
|
|
580
580
|
flows: FlowsList,
|
|
581
|
-
previous_step_id: Text,
|
|
582
581
|
) -> Dict[str, Any]:
|
|
583
582
|
current_context = extract_current_context_attribute(stack)
|
|
584
583
|
|
|
@@ -587,7 +586,6 @@ def extract_attrs_for_run_step(
|
|
|
587
586
|
"step_description": step.description if step.description else "None",
|
|
588
587
|
"current_flow_id": flow.id,
|
|
589
588
|
"current_context": json.dumps(current_context),
|
|
590
|
-
"previous_step_id": previous_step_id,
|
|
591
589
|
}
|
|
592
590
|
|
|
593
591
|
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.12.0.dev2
|
|
4
4
|
Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
|
|
5
5
|
Home-page: https://rasa.com
|
|
6
6
|
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
@@ -32,6 +32,7 @@ Requires-Dist: aiogram (>=2.15,<2.26)
|
|
|
32
32
|
Requires-Dist: aiohttp (>=3.9.4,<3.10)
|
|
33
33
|
Requires-Dist: apscheduler (>=3.10,<3.11)
|
|
34
34
|
Requires-Dist: attrs (>=23.1,<23.2)
|
|
35
|
+
Requires-Dist: azure-identity (>=1.19.0,<2.0.0)
|
|
35
36
|
Requires-Dist: azure-storage-blob (>=12.16.0,<12.17.0)
|
|
36
37
|
Requires-Dist: boto3 (>=1.35.15,<1.36.0)
|
|
37
38
|
Requires-Dist: certifi (>=2024.07.04)
|
|
@@ -12,7 +12,7 @@ rasa/api.py,sha256=ZD_cbMcgGd__DfKCV9RNDt8oMkKLZGpLt81Oc3NK1SY,6108
|
|
|
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
|
|
15
|
-
rasa/cli/arguments/default_arguments.py,sha256=
|
|
15
|
+
rasa/cli/arguments/default_arguments.py,sha256=lPavjA9eRx9t96NPcUT5TGlbdphpM29W2q3XJhZbnOA,6533
|
|
16
16
|
rasa/cli/arguments/evaluate.py,sha256=0jcM-Gfst_WqTLMdwYbrIAhGmH9kZqY8kwahVfUbzlU,2199
|
|
17
17
|
rasa/cli/arguments/export.py,sha256=1wjypmlat3-2rqlL3vAAlZ2UjudR0yktIHFH-oUKil4,1499
|
|
18
18
|
rasa/cli/arguments/interactive.py,sha256=S-cY9XUOg7vzgVh_1mlQWObTmIO9pDQ0OdWVVCxG4z4,2685
|
|
@@ -23,6 +23,7 @@ rasa/cli/arguments/train.py,sha256=ZK_dRgkw4Um4iPTGgSrKlVEkJGCKMpf-zmkpdRhRFl8,8
|
|
|
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
|
+
rasa/cli/dialogue_understanding_test.py,sha256=TBNeb66YTn2hGloIyxyRotp1qtbTW-QZPSps2tKEywk,8213
|
|
26
27
|
rasa/cli/e2e_test.py,sha256=guHIeX7qPwv8db4j9zsDG7MQbfUq92xO51u0iOR3eqw,8359
|
|
27
28
|
rasa/cli/evaluate.py,sha256=_9rRUr8BqKNcd1H-l2I54cx6YCQwgr6kJyKTzN612a8,7946
|
|
28
29
|
rasa/cli/export.py,sha256=60wPKS5513J7PRKZsVeCBrUGOcSizypdjg1iYDWLCMY,8203
|
|
@@ -92,7 +93,7 @@ rasa/cli/x.py,sha256=C7dLtYXAkD-uj7hNj7Pz5YbOupp2yRcMjQbsEVqXUJ8,6825
|
|
|
92
93
|
rasa/constants.py,sha256=YrrBiJUc0cL5Xrsap6IioNbQ6dKaqDiueqHmMIYkpF0,1348
|
|
93
94
|
rasa/core/__init__.py,sha256=DYHLve7F1yQBVOZTA63efVIwLiULMuihOfdpzw1j0os,457
|
|
94
95
|
rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
rasa/core/actions/action.py,sha256=
|
|
96
|
+
rasa/core/actions/action.py,sha256=3tXb_DAKEzguq5zDuV1j04Fd5uYvwQckc4GR_EoDVYE,45286
|
|
96
97
|
rasa/core/actions/action_clean_stack.py,sha256=xUP-2ipPsPAnAiwP17c-ezmHPSrV4JSUZr-eSgPQwIs,2279
|
|
97
98
|
rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
|
|
98
99
|
rasa/core/actions/action_hangup.py,sha256=wpXunkGC71krAYZD3BbqzlHLZxNg1mIviwWz0j9Go-c,994
|
|
@@ -118,7 +119,7 @@ rasa/core/brokers/file.py,sha256=GpeDEgwJYAUNZwUUqzGFzzMHiVi-N_kX185cm8RF4BM,180
|
|
|
118
119
|
rasa/core/brokers/kafka.py,sha256=sJl1g92fo__cs-y2SKs4Uof6HJRJ-1fwHkjRuMs-cF4,12216
|
|
119
120
|
rasa/core/brokers/pika.py,sha256=HPJn4Bm1KDAD9-UCK4uBTCrFWEPEkaSO9MJldO94xok,14379
|
|
120
121
|
rasa/core/brokers/sql.py,sha256=4cDqpbwXwjcq5THbrgRptfUq38-UOnckZq7S7d9wU9o,2728
|
|
121
|
-
rasa/core/channels/__init__.py,sha256=
|
|
122
|
+
rasa/core/channels/__init__.py,sha256=WGzKxtcaoG2yvQ7Rjsh69tbZFl3DsnQj_FbXihwsnN8,2178
|
|
122
123
|
rasa/core/channels/botframework.py,sha256=xyc_n7DJ3uglqvkr0IrQ3xxPWgvaqSOLHWx9BUS0enE,11668
|
|
123
124
|
rasa/core/channels/callback.py,sha256=4LpjtJgQMAAXHwZrcVlVEUdpDTRqTe6n7XtwCusa75U,2750
|
|
124
125
|
rasa/core/channels/channel.py,sha256=0cicx4SZsm0icCSO-F-e-Qk5W08ef11ozZRSrLfFPto,15107
|
|
@@ -254,8 +255,7 @@ rasa/core/channels/rasa_chat.py,sha256=XGZ7QLyQHhB-m7EjetDNEBSjAa2mEFqU-e-FuS9z3
|
|
|
254
255
|
rasa/core/channels/rest.py,sha256=YDBnbdrlvaYL7Efy3cm2LbbSm7cBAFDhmcypojHXbog,7227
|
|
255
256
|
rasa/core/channels/rocketchat.py,sha256=HWOMxXLuwadYEYIMMP-z6RqAJzMGZDLklpgqLOipXF0,5998
|
|
256
257
|
rasa/core/channels/slack.py,sha256=3b8OZQ_gih5XBwhQ1q4BbBUC1SCAPaO9AoJEn2NaoQE,24405
|
|
257
|
-
rasa/core/channels/socketio.py,sha256=
|
|
258
|
-
rasa/core/channels/studio_chat.py,sha256=V550z0ysvbv0laXxotEtowuYHe-4gMLcNWwkoz8mKwk,6729
|
|
258
|
+
rasa/core/channels/socketio.py,sha256=LMAa_exapayvm0o6WTHQnZ4oAnGp6ofdl6fIHv8EIvE,11742
|
|
259
259
|
rasa/core/channels/telegram.py,sha256=5BrNECFM3qe9XjNpDb8Q9fbqCT5aKr5L6IH21W8sum8,10651
|
|
260
260
|
rasa/core/channels/twilio.py,sha256=GsdjfplZdBj0fRB60bSggPF1DXFZ_x18V_dlcDy5VFs,5943
|
|
261
261
|
rasa/core/channels/vier_cvg.py,sha256=PfvSluQqgJbP0JzZPFUvum3z7H55JPPeobcD-z5zCkw,13544
|
|
@@ -308,7 +308,7 @@ rasa/core/lock_store.py,sha256=fgdufUYXHEiTcD7NCCqgDAQRRtt7jrKafENHqFKOyi0,12504
|
|
|
308
308
|
rasa/core/migrate.py,sha256=XNeYdiRytBmBNubOQ8KZOT_wR1o9aOpHHfBU9PCB2eg,14626
|
|
309
309
|
rasa/core/nlg/__init__.py,sha256=0eQOZ0fB35b18oVhRFczcH30jJHgO8WXFhnbXGOxJek,240
|
|
310
310
|
rasa/core/nlg/callback.py,sha256=rFkDe7CSAETASRefpERUT6-DHWPs0UXhx8x4tZ1QE0M,5238
|
|
311
|
-
rasa/core/nlg/contextual_response_rephraser.py,sha256=
|
|
311
|
+
rasa/core/nlg/contextual_response_rephraser.py,sha256=RqYig6NFnaXcW5vkAUSb54XWoBkeVWm2WYDCsafthBY,11055
|
|
312
312
|
rasa/core/nlg/generator.py,sha256=YZ_rh--MeyzA6oXRqr_Ng-jcmPgbCmWMJJrquPmo__8,8436
|
|
313
313
|
rasa/core/nlg/interpolator.py,sha256=Dc-J2Vf6vPPUbwIgZQm3AJDGvMaFTsh9Citd4CYuA9U,5189
|
|
314
314
|
rasa/core/nlg/response.py,sha256=aHpy9BgjO7ub6v-sVPiQqutUA_7-UD1l3DJGVeQyp4k,5888
|
|
@@ -316,13 +316,13 @@ rasa/core/nlg/summarize.py,sha256=JO6VCfM_RnU0QX8Us42YkNOxC0ESKV1xcVH_sCW27ZU,21
|
|
|
316
316
|
rasa/core/persistor.py,sha256=0BZvrA1xObxVtADWLVapj4NOmvqIEen1LKoMOdtZ63s,20337
|
|
317
317
|
rasa/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
318
|
rasa/core/policies/ensemble.py,sha256=AjNOEy2Iubbe-LdKaoFUXG8ch6yPrg3bTvcTcAPmeOs,12959
|
|
319
|
-
rasa/core/policies/enterprise_search_policy.py,sha256=
|
|
319
|
+
rasa/core/policies/enterprise_search_policy.py,sha256=nG1vgZO5woxvXCZWayYXQzZkmxPemfsL0c62QkZcgcI,34126
|
|
320
320
|
rasa/core/policies/enterprise_search_prompt_template.jinja2,sha256=dCS_seyBGxMQoMsOjjvPp0dd31OSzZCJSZeev1FJK5Q,1187
|
|
321
321
|
rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256=vRQBs3q13UmvRRgqA8-DmRtM7tqZP2ngwMVJ4gy7lE0,3302
|
|
322
322
|
rasa/core/policies/flow_policy.py,sha256=wGb1l_59cGM9ZaexSIK5uXFi618739oNfLOxx2FC0_Y,7490
|
|
323
323
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
324
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
325
|
-
rasa/core/policies/flows/flow_executor.py,sha256=
|
|
325
|
+
rasa/core/policies/flows/flow_executor.py,sha256=fhjoCKixn0QjHgzWyhAZPaOOVAdgYscvaQdWpMB7S20,25915
|
|
326
326
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
327
327
|
rasa/core/policies/intentless_policy.py,sha256=-4RfqmY6iVUUr-p2JnzauW3cx1Tiu-EXCMOkOjMc5qY,37936
|
|
328
328
|
rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
|
|
@@ -331,7 +331,7 @@ rasa/core/policies/policy.py,sha256=HeVtIaV0dA1QcAG3vjdn-4g7-oUEJPL4u01ETJt78YA,
|
|
|
331
331
|
rasa/core/policies/rule_policy.py,sha256=YNDPZUZkpKFCvZwKe1kSfP6LQnDL9CQ6JU69JRwdmWw,50729
|
|
332
332
|
rasa/core/policies/ted_policy.py,sha256=_DHiDH5Upx1yFNzMXBA3SGdHBRfsitTLlr7howUHPoo,87750
|
|
333
333
|
rasa/core/policies/unexpected_intent_policy.py,sha256=5pGe9EMS-NLHIDDhqY6KCH_Kv7_TGMzSbe_GsjuKH1w,39649
|
|
334
|
-
rasa/core/processor.py,sha256=
|
|
334
|
+
rasa/core/processor.py,sha256=vB9YpzGzn74lyqPn1Y-lIAxmaJd0xfPGMHxwyqeMHkg,55571
|
|
335
335
|
rasa/core/run.py,sha256=8HG8GTDGO2RW5NX9Pz7UU9qBwDQE_rbStpoOwNcIUqc,11452
|
|
336
336
|
rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
337
|
rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
|
|
@@ -379,22 +379,21 @@ rasa/dialogue_understanding/commands/skip_question_command.py,sha256=bSrUFOHUz1o
|
|
|
379
379
|
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=a0Yk8xpBpFgC3Hkh4J8kAudz4s4ZLQWuoDq_a63lQXM,3309
|
|
380
380
|
rasa/dialogue_understanding/commands/user_silence_command.py,sha256=QtqsMU5mrbUp5dla2yGSpxXfIfi_h6Eu72mTDZQ_aTU,1724
|
|
381
381
|
rasa/dialogue_understanding/commands/utils.py,sha256=OiyLFGEsrfFSIJcvBY6lTIIXqDY9OxaikVGtcl4Kokk,1911
|
|
382
|
-
rasa/dialogue_understanding/constants.py,sha256=YcELaIss69Hnroclvn90Dl4Suk3S6e3t0UoIbUaXG2A,83
|
|
383
382
|
rasa/dialogue_understanding/generator/__init__.py,sha256=Ykeb2wQ1DuiUWAWO0hLIPSTK1_Ktiq9DZXF6D3ugN78,764
|
|
384
|
-
rasa/dialogue_understanding/generator/command_generator.py,sha256=
|
|
383
|
+
rasa/dialogue_understanding/generator/command_generator.py,sha256=Egdy-g46BGBw-iP-dKBM3sca-X-2SyBQL5NPyKTiHWw,15974
|
|
385
384
|
rasa/dialogue_understanding/generator/constants.py,sha256=9Nwjo2Qobioetr9SyyQxsGvEPSbKCVS5ZX1GGJtbA0E,716
|
|
386
385
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
387
386
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=MkwUgQA9xRlAQUdWF2cBEX2tW2PQhBsq2Jsy2vmqWY4,17891
|
|
388
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
389
|
-
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=
|
|
387
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=hzHUUMPmIZaLZkFRBgVK42l2nTUn04H4W8GpBBF1XIs,17554
|
|
388
|
+
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=yQ8aAMsTKGSARroJq0TfKVLe3ShYl8K8oklDk_KGies,2459
|
|
390
389
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
390
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
392
391
|
rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2,sha256=8l93_QBKBYnqLICVdiTu5ejZDE8F36BU8-qwba0px44,1927
|
|
393
|
-
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=
|
|
392
|
+
rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=zw1N0UyEOzYfgm3sFP8ptZ92fSLszwiACM4Vqwt8lIo,33527
|
|
394
393
|
rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=pzd1q-syU_QuqTRcfd_GsXyOJaxfApqh_LsOKuEN46g,9332
|
|
395
394
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
396
395
|
rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2,sha256=nMayu-heJYH1QmcL1cFmXb8SeiJzfdDR_9Oy5IRUXsM,3937
|
|
397
|
-
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=
|
|
396
|
+
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=hhFnxzc8lji7UZsFaVK-GTkyJ-34jaN-IhWcebDJhBI,18493
|
|
398
397
|
rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
398
|
rasa/dialogue_understanding/patterns/cancel.py,sha256=IQ4GVHNnNCqwKRLlAqBtLsgolcbPPnHsHdb3aOAFhEs,3868
|
|
400
399
|
rasa/dialogue_understanding/patterns/cannot_handle.py,sha256=pg0zJHl-hDBnl6y9IyxZzW57yuMdfD8xI8eiK6EVrG8,1406
|
|
@@ -426,11 +425,15 @@ rasa/dialogue_understanding/stack/frames/flow_stack_frame.py,sha256=W4mEmihIN5Bi
|
|
|
426
425
|
rasa/dialogue_understanding/stack/frames/pattern_frame.py,sha256=EVrYWv5dCP7XTvNV-HqtOOrseP-IkF0jD2_JacAvIYw,235
|
|
427
426
|
rasa/dialogue_understanding/stack/frames/search_frame.py,sha256=rJ9og28k_udUIjP-2Z5xeb_2T5HvCzwDCnxVG9K7lws,728
|
|
428
427
|
rasa/dialogue_understanding/stack/utils.py,sha256=ysH6-IeMwNnKbF1__uMlq6I8zaGXFdMEpw1iYdEz4kA,7650
|
|
429
|
-
rasa/dialogue_understanding/utils.py,sha256=
|
|
428
|
+
rasa/dialogue_understanding/utils.py,sha256=ENXT_1ALY1Ev6Gs8jNz3dm3TC91Y5psp2Np6_L4cHXI,332
|
|
430
429
|
rasa/dialogue_understanding_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
|
-
rasa/dialogue_understanding_test/
|
|
430
|
+
rasa/dialogue_understanding_test/command_metric_calculation.py,sha256=bzy29ffUQKKEPgxLrNFgwo74-Y_0EhfwaGiRxhOSjVA,320
|
|
431
|
+
rasa/dialogue_understanding_test/constants.py,sha256=-BoZUmw4Lh0j2Sa20iQnyrKouXUdd8EXGk9ZxEG1pUY,526
|
|
432
432
|
rasa/dialogue_understanding_test/du_test_case.py,sha256=Is3brWanixDNXKq_Kr43tcUc4PjoiN-IfJBRwKnL4hU,3656
|
|
433
433
|
rasa/dialogue_understanding_test/du_test_result.py,sha256=9pW0a7nIoULv5T0sstcMspWgoBzIx7Fgbo1hYzzKXFc,300
|
|
434
|
+
rasa/dialogue_understanding_test/du_test_runner.py,sha256=E7lX3TzJdhtZh-57tXjuo0gseRtpm-eAlQRx04akJEA,3021
|
|
435
|
+
rasa/dialogue_understanding_test/io.py,sha256=XgZ-TnS1l_qgXIyk-rApdYldqfuFZX2h9QehwKz5LhI,1557
|
|
436
|
+
rasa/dialogue_understanding_test/validation.py,sha256=MjDURzsExF9htVfza23oyCkj5nUiIrKeeyk6SG_0OSk,540
|
|
434
437
|
rasa/e2e_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
435
438
|
rasa/e2e_test/aggregate_test_stats_calculator.py,sha256=XMI7t5xEP7Mo-F8cCCZx2w5ckUKa5sDvyitl6bk6hc8,4924
|
|
436
439
|
rasa/e2e_test/assertions.py,sha256=ofn2CbnW2wR3OZ3-PPmD_07YqlGQ_tWL1TSv95vxKy0,45428
|
|
@@ -443,7 +446,7 @@ rasa/e2e_test/e2e_test_converter.py,sha256=VxIx7uk36HzLIyEumJiR6G6-CyyqkV_lYoX-X
|
|
|
443
446
|
rasa/e2e_test/e2e_test_converter_prompt.jinja2,sha256=EMy-aCd7jLARHmwAuZUGT5ABnNHjR872_pexRIMGA7c,2791
|
|
444
447
|
rasa/e2e_test/e2e_test_coverage_report.py,sha256=Cv5bMtoOC240231YMNHz10ibSqm_UD1-eskQVdjPUsw,11326
|
|
445
448
|
rasa/e2e_test/e2e_test_result.py,sha256=9LlH6vIQeK_dxDwMQ5RzlNHoxCNXpWC9S527-ch8kUA,1649
|
|
446
|
-
rasa/e2e_test/e2e_test_runner.py,sha256
|
|
449
|
+
rasa/e2e_test/e2e_test_runner.py,sha256=-XKb8hyNCIMXeCYcnJJekJNbdCT_D1fCUvpq9yR_46g,44159
|
|
447
450
|
rasa/e2e_test/e2e_test_schema.yml,sha256=0deWjuKRHNo6e_LSCnUoiw9NLIYf6dj1-zFPl_AqLYA,5632
|
|
448
451
|
rasa/e2e_test/pykwalify_extensions.py,sha256=OGYKIKYJXd2S0NrWknoQuijyBQaE-oMLkfV_eMRkGSM,1331
|
|
449
452
|
rasa/e2e_test/stub_custom_action.py,sha256=teq8c5I6IuUsFX4lPdeBLY3j0SLSMCC95KmKx7GrE8I,2369
|
|
@@ -494,7 +497,7 @@ rasa/graph_components/providers/training_tracker_provider.py,sha256=nCHyLsiC8q3B
|
|
|
494
497
|
rasa/graph_components/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
495
498
|
rasa/graph_components/validators/default_recipe_validator.py,sha256=BHrF6NTfJz42xG1LfVjkP5CdQef4NTcmiiC8xtMemaI,24457
|
|
496
499
|
rasa/graph_components/validators/finetuning_validator.py,sha256=38AcwmV8cF5TIlWhUIzh98wtZf934ix04HcczCJiWkU,12863
|
|
497
|
-
rasa/hooks.py,sha256=
|
|
500
|
+
rasa/hooks.py,sha256=lg8j3gwYbXP6gw4t07nBQtzPAzGn_8_UP3_JNS-RTwk,3810
|
|
498
501
|
rasa/jupyter.py,sha256=x_GF9PK2zMhltb48GEIV9YZ4pRhCto8nV5SioYSCljI,1782
|
|
499
502
|
rasa/llm_fine_tuning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
500
503
|
rasa/llm_fine_tuning/annotation_module.py,sha256=wFmW3d6lI5o49OWmdbYQlgr24rqHDgA0T0hLM1pSb9U,8578
|
|
@@ -518,11 +521,11 @@ rasa/model_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
518
521
|
rasa/model_manager/config.py,sha256=OzSx8c0Su8Q8wXTuCldeI7GDmB-wh43RL56Fq1-ESUM,1159
|
|
519
522
|
rasa/model_manager/model_api.py,sha256=MUqC2Tfdu857ALxOR55sgI5Tuow8JeIufjwU5slNhiw,20274
|
|
520
523
|
rasa/model_manager/runner_service.py,sha256=JaD_xu-zDfPWI6onvMlWdB9KBtH7-91KKbTf4vsKuTg,8710
|
|
521
|
-
rasa/model_manager/socket_bridge.py,sha256=
|
|
524
|
+
rasa/model_manager/socket_bridge.py,sha256=ii0usfFmwGSgi97jBLhlJPtx4RVjKAx_CUZC43gB_4s,4775
|
|
522
525
|
rasa/model_manager/studio_jwt_auth.py,sha256=eZ_srnbL2sKIKgx0OZIp29NbIrH2J8PlI8Or0lLg_Xo,2644
|
|
523
526
|
rasa/model_manager/trainer_service.py,sha256=90WYl4fclgPLcLfFgDOtai9VahZx_ikn20PIMg_eSQM,10347
|
|
524
527
|
rasa/model_manager/utils.py,sha256=tgj215CsJreqc4Ym8tAvv-hBieAC94nL0c4caPWIcZM,2643
|
|
525
|
-
rasa/model_manager/warm_rasa_process.py,sha256=
|
|
528
|
+
rasa/model_manager/warm_rasa_process.py,sha256=xFNP-ANZfUBKs_Sur2deAT2qqatWD3_XZJcUgQy2iiQ,5716
|
|
526
529
|
rasa/model_service.py,sha256=nj0wNoByYWg5WVd5GtIc5V-RhpVR_xspi-MeNQxurLE,3753
|
|
527
530
|
rasa/model_testing.py,sha256=h0QUpJu6p_TDse3aHjCfYwI6OGH47b3Iuo5Ot0HQADM,14959
|
|
528
531
|
rasa/model_training.py,sha256=gvmJ6bN6TdX6H6qnO5y14I_aYeqi_h1Dxfpavks3paU,21687
|
|
@@ -584,16 +587,16 @@ rasa/nlu/utils/hugging_face/transformers_pre_post_processors.py,sha256=U8HrRWM1p
|
|
|
584
587
|
rasa/nlu/utils/mitie_utils.py,sha256=eupFltdG1nB8NXT4sh1pGJjDp0NKvlsKfPWYid6miGM,3887
|
|
585
588
|
rasa/nlu/utils/pattern_utils.py,sha256=nSOJmvsp6bF8HCCRb2Iaty71R0GfflJiuM4X_oK5hdQ,5386
|
|
586
589
|
rasa/nlu/utils/spacy_utils.py,sha256=pBvsCVKVuZ3b2Pjn-XuOVZ6lzZu9Voc2R4N1VczwtCM,11794
|
|
587
|
-
rasa/plugin.py,sha256=
|
|
590
|
+
rasa/plugin.py,sha256=H_OZcHy_U3eAK-JHr43TSxcPqS0JEGcZkFvmumeeJEs,2670
|
|
588
591
|
rasa/server.py,sha256=eLRWFPoJrdc9_eNu0pUj9p52O8MR28zIm4ZP9_MWiH0,57899
|
|
589
592
|
rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
590
|
-
rasa/shared/constants.py,sha256=
|
|
593
|
+
rasa/shared/constants.py,sha256=ylzg4d3QH0z9tBvUTIf8jAVDfzR7CVeJwPuEcw10mhQ,11199
|
|
591
594
|
rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
592
595
|
rasa/shared/core/command_payload_reader.py,sha256=Vhiop9LWFawaEruRifBBrVmoEJ-fj1Tli1wBvsYu2_I,3563
|
|
593
596
|
rasa/shared/core/constants.py,sha256=WNFzABG-eiVREBL6aDZAmcNDiSmuSbvWuxXIMoX2Iv8,5704
|
|
594
597
|
rasa/shared/core/conversation.py,sha256=tw1fD2XB3gOdQjDI8hHo5TAAmE2JYNogQGWe3rE929w,1385
|
|
595
598
|
rasa/shared/core/domain.py,sha256=SsRLbLIEZ-coPTEwr-XxU_O-X-0mR466YLvXJJOAEpc,81247
|
|
596
|
-
rasa/shared/core/events.py,sha256=
|
|
599
|
+
rasa/shared/core/events.py,sha256=6yuOrZs8hZaR0FV1nC58l1u6qE4fegwrvL5nH1w7xY4,83719
|
|
597
600
|
rasa/shared/core/flows/__init__.py,sha256=HszhIvEARpmyxABFc1MKYvj8oy04WiZW1xmCdToakbs,181
|
|
598
601
|
rasa/shared/core/flows/flow.py,sha256=XzF9RUxLNyiGndnpvECV4pMczzc6g7UtgwokyXAoaTY,21496
|
|
599
602
|
rasa/shared/core/flows/flow_path.py,sha256=xstwahZBU5cfMY46mREA4NoOGlKLBRAqeP_mJ3UZqOI,2283
|
|
@@ -645,7 +648,7 @@ rasa/shared/importers/rasa.py,sha256=877EU8qPZSMBk5VAVAAUhfsh6vatRJrYOqWz1YGR6p8
|
|
|
645
648
|
rasa/shared/importers/remote_importer.py,sha256=fKLQskaCVPpD5cCMQ9sR71cZZlSIP-SSv3J3o2kra2w,7696
|
|
646
649
|
rasa/shared/importers/utils.py,sha256=Gi3BM5RUr-9nX_Ujf-g-tt19_bKPizmQIi6eAflDAmo,1289
|
|
647
650
|
rasa/shared/nlu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
648
|
-
rasa/shared/nlu/constants.py,sha256=
|
|
651
|
+
rasa/shared/nlu/constants.py,sha256=KUYpaGAjwBwdUV8TZupei-xWAcb8RmaqhXNF8SMVwqU,1773
|
|
649
652
|
rasa/shared/nlu/interpreter.py,sha256=eCNJp61nQYTGVf4aJi8SCWb46jxZY6-C1M1LFxMyQTM,188
|
|
650
653
|
rasa/shared/nlu/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
651
654
|
rasa/shared/nlu/training_data/entities_parser.py,sha256=fC-VIso07so6E9b6KrQXOBC-ZUGCQGvnMvzVwiAO1GQ,6729
|
|
@@ -669,42 +672,46 @@ rasa/shared/nlu/training_data/training_data.py,sha256=KY51CJD9NY6vs9Zs7e-ivtyIYJ
|
|
|
669
672
|
rasa/shared/nlu/training_data/util.py,sha256=mom7CxLKI5RfOpsJrAKL281a_b01sIcQsr04gSmEEbU,7049
|
|
670
673
|
rasa/shared/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
671
674
|
rasa/shared/providers/_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
672
|
-
rasa/shared/providers/_configs/
|
|
673
|
-
rasa/shared/providers/_configs/
|
|
674
|
-
rasa/shared/providers/_configs/
|
|
675
|
-
rasa/shared/providers/_configs/
|
|
676
|
-
rasa/shared/providers/_configs/
|
|
677
|
-
rasa/shared/providers/_configs/
|
|
678
|
-
rasa/shared/providers/_configs/
|
|
679
|
-
rasa/shared/providers/_configs/
|
|
680
|
-
rasa/shared/providers/_configs/
|
|
675
|
+
rasa/shared/providers/_configs/azure_entra_id_client_creds.py,sha256=S6slRcUERNAbkA2sp-Ykk3Y6wl6EnvnHYLY_ILsveVc,1103
|
|
676
|
+
rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=bScClwyvCW7EO0GCvgUOS77CscFG2JrkH2zsojm4L1g,18391
|
|
677
|
+
rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=01kg6TqjfjkZ6q2zASs-jp7j39adyLp6F37yi2fVpDo,10076
|
|
678
|
+
rasa/shared/providers/_configs/client_config.py,sha256=nQ469h1XI970_7Vs49hNIpBIwlAeiAg-cwV0JFp7Hg0,1618
|
|
679
|
+
rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=tViurJ1NDbiBn9b5DbzhFHO1pJM889MC-GakWhEX07E,4352
|
|
680
|
+
rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py,sha256=q8ddTFwddDhx654ZQmg9eP_yo77N3Xg77hAmfXOmzPg,8200
|
|
681
|
+
rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=OX7egiQXkGSYxIfEOFrGFwCIKFJc3IgBKrZGqdjeMVQ,7265
|
|
682
|
+
rasa/shared/providers/_configs/model_group_config.py,sha256=E1_hjP1p9b08m-28EPNNCwoFUJ1MMdkmC54Bai6JK0A,5730
|
|
683
|
+
rasa/shared/providers/_configs/oauth_config.py,sha256=OPwignGb4xGI7GCTsfVUCM57fQYNDk-_IVXkt-OHyw0,775
|
|
684
|
+
rasa/shared/providers/_configs/openai_client_config.py,sha256=tKCQSjtpVmPO_30sRmcFFDk0tNFs5bVseyI7iBU6ZOY,5839
|
|
685
|
+
rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=elpbqVNSgkAiM0Dg-0N3ayVkSi6TAERepdZG7Bv8NdI,2245
|
|
686
|
+
rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=l2JnypPXFL6KVxhftKTYvh-NqpXJ8--pjbJ-IQHoPRs,5963
|
|
681
687
|
rasa/shared/providers/_configs/utils.py,sha256=-1WxEcrV5WHv3Q6GVGTJJZcdBe_p8NU4ArVspTTa8mg,3731
|
|
682
688
|
rasa/shared/providers/_ssl_verification_utils.py,sha256=4tujCOjg0KKX2_DzOb7lZTdsUXtzRB4UkfhkC3W0jO0,4166
|
|
683
689
|
rasa/shared/providers/_utils.py,sha256=JW2A1FM4QsIWNUH3QoMo_DRiZ90UW9tiu9n9RR1Oih4,3090
|
|
690
|
+
rasa/shared/providers/constants.py,sha256=hgV8yNGxIbID_2h65OoSfSjIE4UkazrsqRg4SdkPAmI,234
|
|
684
691
|
rasa/shared/providers/embedding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
685
692
|
rasa/shared/providers/embedding/_base_litellm_embedding_client.py,sha256=EW1AdTklBDJTVDGKslBZ-IMi7WgRzBdKbLIn9BiuXX4,8796
|
|
686
693
|
rasa/shared/providers/embedding/_langchain_embedding_client_adapter.py,sha256=IR2Rb3ReJ9C9sxOoOGRXgtz8STWdMREs_4AeSMKFjl4,2135
|
|
687
|
-
rasa/shared/providers/embedding/azure_openai_embedding_client.py,sha256=
|
|
694
|
+
rasa/shared/providers/embedding/azure_openai_embedding_client.py,sha256=QvFnnu-Jmcq9ABnNbxc4sWyi1mwVz7nWtuzpjIccokI,12361
|
|
688
695
|
rasa/shared/providers/embedding/default_litellm_embedding_client.py,sha256=da17WeHjZp95Uv9jmTKxklNRcNpn-qRsRPcwDQusElg,4397
|
|
689
696
|
rasa/shared/providers/embedding/embedding_client.py,sha256=rmFBKSKSihqmzpuZ-I0zVm1BBqTjL6V-K65gefoI35o,2839
|
|
690
697
|
rasa/shared/providers/embedding/embedding_response.py,sha256=H55mSAL3LfVvDlBklaCCQ4AnNwCsQSQ1f2D0oPrx3FY,1204
|
|
691
698
|
rasa/shared/providers/embedding/huggingface_local_embedding_client.py,sha256=Zo3gyj49h4LxXV7bx39TXpIPKlernG-5xzqXczTCbig,6913
|
|
692
|
-
rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=
|
|
699
|
+
rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=eafDk6IgQtL_kiKgpa6sJs1oATyRi2NT2leUFQsED2s,4551
|
|
693
700
|
rasa/shared/providers/embedding/openai_embedding_client.py,sha256=XNRGE7apo2v3kWRrtgxE-Gq4rvNko3IiXtvgC4krDYE,5429
|
|
694
701
|
rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
695
|
-
rasa/shared/providers/llm/_base_litellm_client.py,sha256=
|
|
696
|
-
rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=
|
|
697
|
-
rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=
|
|
698
|
-
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=
|
|
699
|
-
rasa/shared/providers/llm/llm_client.py,sha256=
|
|
700
|
-
rasa/shared/providers/llm/llm_response.py,sha256=
|
|
701
|
-
rasa/shared/providers/llm/openai_llm_client.py,sha256=
|
|
702
|
-
rasa/shared/providers/llm/rasa_llm_client.py,sha256=
|
|
703
|
-
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=
|
|
702
|
+
rasa/shared/providers/llm/_base_litellm_client.py,sha256=ZoLGPfFxa2YhA7JuEk8W2E_an1m_eK5MXxdFLwj026M,10038
|
|
703
|
+
rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=59rJi3IzznDkPkFwfJX3fCGPt0veUpJMqcPdBQLF4pw,14881
|
|
704
|
+
rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=e3f-YMS7-aariB5erRot7NReD-eaVPgeD45rypF-sUw,3974
|
|
705
|
+
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=e9OIQrXH80G_JxzOn3rIATAHl4nmN-kTK2RLnWpAuGQ,7592
|
|
706
|
+
rasa/shared/providers/llm/llm_client.py,sha256=c2pYAS-0AmZKe_gLTptwmBspXFaCUDqK0qLTqo3l2Ok,2392
|
|
707
|
+
rasa/shared/providers/llm/llm_response.py,sha256=Ltmc8yk9cAqtK8QgwfZZywudM5ZQsT4y_AKAQ3q05hA,1490
|
|
708
|
+
rasa/shared/providers/llm/openai_llm_client.py,sha256=_pfuedqXm2V7C1awLF6HBHN5uFuvQ9dbSovmmWwQOeI,5011
|
|
709
|
+
rasa/shared/providers/llm/rasa_llm_client.py,sha256=N3N5h9y-Fdisxrja5e1kt2Nl-2igi0ZnAA7MO2flcn4,3568
|
|
710
|
+
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=JY1CoaGa-V7u_qDlEAIUtdB9vNCMs0RUzNo-iakVZ80,9340
|
|
704
711
|
rasa/shared/providers/mappings.py,sha256=5S9FKtL5GkwK-L93HR_2RMvXnrZo3hyhb0oebAIbjSg,3675
|
|
705
712
|
rasa/shared/providers/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
706
|
-
rasa/shared/providers/router/_base_litellm_router_client.py,sha256=
|
|
707
|
-
rasa/shared/providers/router/router_client.py,sha256=
|
|
713
|
+
rasa/shared/providers/router/_base_litellm_router_client.py,sha256=O42OHmFznH2YXeNyB8j84wsDAxDCLICkYhlC_fqiL9s,6932
|
|
714
|
+
rasa/shared/providers/router/router_client.py,sha256=5BBEg-_JtClOVxBy1hu-HceG329PsKs-2v_qbyX_vSo,2174
|
|
708
715
|
rasa/shared/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
709
716
|
rasa/shared/utils/cli.py,sha256=bJpkf0VzzmtpmBnDnIl7SgvrntnBuaJQMHBXHm2WxcA,2916
|
|
710
717
|
rasa/shared/utils/common.py,sha256=4xoO566dAlFvNzikt1tBYNHoj1Yz8k47UT46WfWUqyU,10742
|
|
@@ -714,12 +721,12 @@ rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=oJyjIFpNi
|
|
|
714
721
|
rasa/shared/utils/health_check/health_check.py,sha256=DIDoRP2278Nf_Ohqiml6lcwfc_YfZoeXZTcAOeN0S7Q,9709
|
|
715
722
|
rasa/shared/utils/health_check/llm_health_check_mixin.py,sha256=hRpO7B_vgaLot8ct3t1m94OTODyQoz9RWy9CAqpZHy4,957
|
|
716
723
|
rasa/shared/utils/io.py,sha256=KBHi0IedWdTk2nL7kqj5LQbvl_3tLc3_krXWDZtcJ74,15917
|
|
717
|
-
rasa/shared/utils/llm.py,sha256=
|
|
724
|
+
rasa/shared/utils/llm.py,sha256=MxYtBnAARG3tTH0jUXMKMbDBCDBM-18dOxsQKrmRFAU,25620
|
|
718
725
|
rasa/shared/utils/pykwalify_extensions.py,sha256=4W8gde8C6QpGCY_t9IEmaZSgjMuie1xH0F1DYyn83BM,883
|
|
719
726
|
rasa/shared/utils/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
720
727
|
rasa/shared/utils/schemas/config.yml,sha256=czxSADw9hOIZdhvFP8pVUQo810hs9_C8ZGfCPx17taM,27
|
|
721
728
|
rasa/shared/utils/schemas/domain.yml,sha256=b2k4ZYSV-QL3hGjDaRg8rfoqaTh4hbhDc_hBlMB8cuI,3409
|
|
722
|
-
rasa/shared/utils/schemas/events.py,sha256=
|
|
729
|
+
rasa/shared/utils/schemas/events.py,sha256=9sg_w4VeFMksyl-uscUht1TErf1gfKR56agyYSvl2c4,6912
|
|
723
730
|
rasa/shared/utils/schemas/model_config.yml,sha256=OravyVWalSwjiXYRarRzg0tiRnUFHe1q4-5Wj1TEeFk,811
|
|
724
731
|
rasa/shared/utils/schemas/stories.yml,sha256=DV3wAFnv1leD7kV-FH-GQihF1QX5oKHc8Eb24mxjizc,4737
|
|
725
732
|
rasa/shared/utils/yaml.py,sha256=HpG4whRyFMEJ39YEMd-X1HBJL6C2cAwvPlMGzqq74z0,37638
|
|
@@ -737,7 +744,7 @@ rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
737
744
|
rasa/tracing/config.py,sha256=kA-xEY2oAc07gw1RzGeMuNnDKd_ZrVXT_B63pxGW-uI,12860
|
|
738
745
|
rasa/tracing/constants.py,sha256=N_MJLStE3IkmPKQCQv42epd3jdBMJ4Ith1dVO65N5ho,2425
|
|
739
746
|
rasa/tracing/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
740
|
-
rasa/tracing/instrumentation/attribute_extractors.py,sha256=
|
|
747
|
+
rasa/tracing/instrumentation/attribute_extractors.py,sha256=zGbDKfULtSfdxAVUK1tM45QF4X5OoIAxV5AMKUBF50Y,26006
|
|
741
748
|
rasa/tracing/instrumentation/instrumentation.py,sha256=5g_Hp9CE7bqIKUVfLcpGan0s2SK3h5rikjumpADs4SY,51103
|
|
742
749
|
rasa/tracing/instrumentation/intentless_policy_instrumentation.py,sha256=8AdMOy_2mlKnlmt-muV8-eoT8jA52GXDzM0avejfg8A,4821
|
|
743
750
|
rasa/tracing/instrumentation/metrics.py,sha256=ByfKshoxNOqjKZwKTulqL71s5b3WugqLfjha3So0OEU,10534
|
|
@@ -778,9 +785,9 @@ rasa/utils/train_utils.py,sha256=f1NWpp5y6al0dzoQyyio4hc4Nf73DRoRSHDzEK6-C4E,212
|
|
|
778
785
|
rasa/utils/url_tools.py,sha256=JQcHL2aLqLHu82k7_d9imUoETCm2bmlHaDpOJ-dKqBc,1218
|
|
779
786
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
780
787
|
rasa/validator.py,sha256=wl5IKiyDmk6FlDcGO2Js-H-gHPeqVqUJ6hB4fgN0xjI,66796
|
|
781
|
-
rasa/version.py,sha256=
|
|
782
|
-
rasa_pro-3.
|
|
783
|
-
rasa_pro-3.
|
|
784
|
-
rasa_pro-3.
|
|
785
|
-
rasa_pro-3.
|
|
786
|
-
rasa_pro-3.
|
|
788
|
+
rasa/version.py,sha256=Qk-yx_nkp859YygvuBicHLhsbvQxDrL2J8-SMq3DiIw,121
|
|
789
|
+
rasa_pro-3.12.0.dev2.dist-info/METADATA,sha256=ugLXE3EIrVQcn9W5z_5PTSKMLm5G0N7lTh4y9wrL8nA,10844
|
|
790
|
+
rasa_pro-3.12.0.dev2.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
791
|
+
rasa_pro-3.12.0.dev2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
792
|
+
rasa_pro-3.12.0.dev2.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
793
|
+
rasa_pro-3.12.0.dev2.dist-info/RECORD,,
|