rasa-pro 3.14.0rc1__py3-none-any.whl → 3.14.0rc3__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/agents/protocol/a2a/a2a_agent.py +50 -42
- rasa/agents/utils.py +27 -5
- rasa/agents/validation.py +7 -9
- rasa/api.py +1 -2
- rasa/builder/copilot/constants.py +4 -1
- rasa/builder/copilot/copilot.py +191 -79
- rasa/builder/copilot/models.py +306 -116
- rasa/builder/copilot/prompts/copilot_system_prompt.jinja2 +33 -12
- rasa/builder/copilot/prompts/copilot_training_error_handler_prompt.jinja2 +53 -0
- rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2 +59 -29
- rasa/builder/copilot/telemetry.py +8 -0
- rasa/builder/guardrails/policy_checker.py +1 -1
- rasa/builder/jobs.py +182 -12
- rasa/builder/models.py +12 -3
- rasa/builder/service.py +16 -2
- rasa/cli/dialogue_understanding_test.py +1 -0
- rasa/cli/e2e_test.py +1 -0
- rasa/cli/inspect.py +1 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/feedback.yml +46 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/goodbye.yml +9 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/help.yml +8 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/human_handoff.yml +41 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/patterns.yml +32 -0
- rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/show_faqs.yml +8 -0
- rasa/cli/project_templates/finance/domain/general/help.yml +0 -0
- rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml +2 -2
- rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml +1 -2
- rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_not_slow.yml +33 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_slow.yml +47 -0
- rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/hello.yml +8 -0
- rasa/cli/run.py +1 -5
- rasa/cli/shell.py +1 -0
- rasa/cli/train.py +1 -0
- rasa/cli/validation/bot_config.py +7 -2
- rasa/core/available_agents.py +65 -55
- rasa/core/brokers/kafka.py +5 -1
- rasa/core/concurrent_lock_store.py +38 -21
- rasa/core/config/available_endpoints.py +0 -3
- rasa/core/config/configuration.py +36 -1
- rasa/core/constants.py +6 -0
- rasa/core/iam_credentials_providers/aws_iam_credentials_providers.py +69 -4
- rasa/core/iam_credentials_providers/credentials_provider_protocol.py +2 -1
- rasa/core/lock_store.py +4 -0
- rasa/core/policies/flows/agent_executor.py +16 -8
- rasa/core/redis_connection_factory.py +7 -2
- rasa/core/tracker_stores/redis_tracker_store.py +4 -0
- rasa/core/tracker_stores/sql_tracker_store.py +3 -1
- rasa/dialogue_understanding/commands/start_flow_command.py +10 -3
- rasa/dialogue_understanding/commands/utils.py +15 -4
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +4 -2
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +4 -4
- rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py +4 -4
- rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py +2 -2
- rasa/dialogue_understanding_test/du_test_runner.py +2 -2
- rasa/e2e_test/e2e_test_runner.py +2 -2
- rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py +10 -4
- rasa/shared/agents/auth/constants.py +1 -0
- rasa/shared/core/flows/steps/call.py +2 -2
- rasa/telemetry.py +3 -3
- rasa/validator.py +37 -0
- rasa/version.py +1 -1
- {rasa_pro-3.14.0rc1.dist-info → rasa_pro-3.14.0rc3.dist-info}/METADATA +14 -2
- {rasa_pro-3.14.0rc1.dist-info → rasa_pro-3.14.0rc3.dist-info}/RECORD +83 -73
- rasa/cli/project_templates/telco/tests/e2e_test_cases/network/solve_internet_issue.yml +0 -57
- /rasa/cli/project_templates/{finance/tests/e2e_test_cases → basic/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/check_balance.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/download_statements.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{cards → without_stub/cards}/block_card.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
- /rasa/cli/project_templates/{telco/tests/e2e_test_cases → finance/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
- /rasa/cli/project_templates/finance/tests/e2e_test_cases/{transfers → without_stub/transfers}/transfer_money.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{billing → without_stub/billing}/understand_bill.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
- /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
- {rasa_pro-3.14.0rc1.dist-info → rasa_pro-3.14.0rc3.dist-info}/NOTICE +0 -0
- {rasa_pro-3.14.0rc1.dist-info → rasa_pro-3.14.0rc3.dist-info}/WHEEL +0 -0
- {rasa_pro-3.14.0rc1.dist-info → rasa_pro-3.14.0rc3.dist-info}/entry_points.txt +0 -0
|
@@ -8,6 +8,7 @@ import httpx
|
|
|
8
8
|
|
|
9
9
|
from rasa.shared.agents.auth.auth_strategy import AgentAuthStrategy
|
|
10
10
|
from rasa.shared.agents.auth.constants import (
|
|
11
|
+
CONFIG_AUDIENCE_KEY,
|
|
11
12
|
CONFIG_CLIENT_ID_KEY,
|
|
12
13
|
CONFIG_CLIENT_SECRET_KEY,
|
|
13
14
|
CONFIG_OAUTH_KEY,
|
|
@@ -35,12 +36,14 @@ class OAuth2AuthStrategy(AgentAuthStrategy):
|
|
|
35
36
|
token_url: str,
|
|
36
37
|
client_id: str,
|
|
37
38
|
client_secret: str,
|
|
38
|
-
|
|
39
|
+
audience: Optional[str] = None,
|
|
40
|
+
scope: Optional[str] = None,
|
|
39
41
|
timeout: Optional[int] = None,
|
|
40
42
|
):
|
|
41
43
|
self.token_url = token_url
|
|
42
44
|
self.client_id = client_id
|
|
43
45
|
self.client_secret = client_secret
|
|
46
|
+
self.audience = audience
|
|
44
47
|
self.scope = scope
|
|
45
48
|
self.timeout = timeout or self.DEFAULT_ACCESS_TOKEN_TIMEOUT
|
|
46
49
|
|
|
@@ -65,6 +68,7 @@ class OAuth2AuthStrategy(AgentAuthStrategy):
|
|
|
65
68
|
token_url = oauth_config.get(CONFIG_TOKEN_URL_KEY)
|
|
66
69
|
client_id = oauth_config.get(CONFIG_CLIENT_ID_KEY)
|
|
67
70
|
client_secret = oauth_config.get(CONFIG_CLIENT_SECRET_KEY)
|
|
71
|
+
audience = oauth_config.get(CONFIG_AUDIENCE_KEY)
|
|
68
72
|
scope = oauth_config.get(CONFIG_SCOPE_KEY)
|
|
69
73
|
timeout = (
|
|
70
74
|
oauth_config.get(CONFIG_TIMEOUT_KEY) or cls.DEFAULT_ACCESS_TOKEN_TIMEOUT
|
|
@@ -76,13 +80,12 @@ class OAuth2AuthStrategy(AgentAuthStrategy):
|
|
|
76
80
|
raise ValueError("Client ID is required for OAuth2 authentication")
|
|
77
81
|
if not client_secret:
|
|
78
82
|
raise ValueError("Client secret is required for OAuth2 authentication")
|
|
79
|
-
if not scope:
|
|
80
|
-
raise ValueError("Scope is required for OAuth2 authentication")
|
|
81
83
|
|
|
82
84
|
return cls(
|
|
83
85
|
token_url=token_url,
|
|
84
86
|
client_id=client_id,
|
|
85
87
|
client_secret=client_secret,
|
|
88
|
+
audience=audience,
|
|
86
89
|
scope=scope,
|
|
87
90
|
timeout=timeout,
|
|
88
91
|
)
|
|
@@ -118,8 +121,11 @@ class OAuth2AuthStrategy(AgentAuthStrategy):
|
|
|
118
121
|
"grant_type": self._grant_type,
|
|
119
122
|
"client_id": self.client_id,
|
|
120
123
|
"client_secret": self.client_secret,
|
|
121
|
-
"scope": self.scope,
|
|
122
124
|
}
|
|
125
|
+
if self.scope:
|
|
126
|
+
data["scope"] = self.scope
|
|
127
|
+
if self.audience:
|
|
128
|
+
data["audience"] = self.audience
|
|
123
129
|
|
|
124
130
|
# Resolve environment variables in data.
|
|
125
131
|
resolved_data = resolve_environment_variables(data)
|
|
@@ -7,6 +7,7 @@ CONFIG_CLIENT_ID_KEY = "client_id"
|
|
|
7
7
|
CONFIG_CLIENT_SECRET_KEY = "client_secret"
|
|
8
8
|
CONFIG_TOKEN_URL_KEY = "token_url"
|
|
9
9
|
CONFIG_SCOPE_KEY = "scope"
|
|
10
|
+
CONFIG_AUDIENCE_KEY = "audience"
|
|
10
11
|
CONFIG_GRANT_TYPE_KEY = "grant_type"
|
|
11
12
|
CONFIG_TIMEOUT_KEY = "timeout"
|
|
12
13
|
CONFIG_MODULE_KEY = "module"
|
|
@@ -3,7 +3,7 @@ from __future__ import annotations
|
|
|
3
3
|
from dataclasses import dataclass
|
|
4
4
|
from typing import TYPE_CHECKING, Any, Dict, Generator, List, Optional, Text
|
|
5
5
|
|
|
6
|
-
from rasa.core.
|
|
6
|
+
from rasa.core.config.configuration import Configuration
|
|
7
7
|
from rasa.shared.core.flows.flow_step import FlowStep
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
@@ -102,7 +102,7 @@ class CallFlowStep(FlowStep):
|
|
|
102
102
|
|
|
103
103
|
def is_calling_agent(self) -> bool:
|
|
104
104
|
"""Returns True if the call references an agent."""
|
|
105
|
-
return self.call in
|
|
105
|
+
return self.call in Configuration.get_instance().available_agents.agents
|
|
106
106
|
|
|
107
107
|
@property
|
|
108
108
|
def default_id_postfix(self) -> str:
|
rasa/telemetry.py
CHANGED
|
@@ -1129,11 +1129,11 @@ def track_model_training(
|
|
|
1129
1129
|
def _collect_agent_configuration(flows: FlowsList) -> Dict[str, Any]:
|
|
1130
1130
|
agent_data: Dict[str, Any] = {}
|
|
1131
1131
|
|
|
1132
|
-
from rasa.core.available_agents import AvailableAgents
|
|
1133
1132
|
from rasa.core.config.configuration import Configuration
|
|
1134
1133
|
|
|
1135
|
-
|
|
1136
|
-
|
|
1134
|
+
configuration = Configuration.get_instance()
|
|
1135
|
+
agents = configuration.available_agents.agents
|
|
1136
|
+
mcp_servers = configuration.endpoints.mcp_servers
|
|
1137
1137
|
|
|
1138
1138
|
if not agents and not mcp_servers:
|
|
1139
1139
|
return agent_data
|
rasa/validator.py
CHANGED
|
@@ -12,7 +12,9 @@ import rasa.core.training.story_conflict
|
|
|
12
12
|
import rasa.shared.nlu.constants
|
|
13
13
|
import rasa.shared.utils.cli
|
|
14
14
|
import rasa.shared.utils.io
|
|
15
|
+
from rasa.agents.validation import validate_agent_names_not_conflicting_with_flows
|
|
15
16
|
from rasa.core.channels import UserMessage
|
|
17
|
+
from rasa.core.config.configuration import Configuration
|
|
16
18
|
from rasa.dialogue_understanding.stack.frames import PatternFlowStackFrame
|
|
17
19
|
from rasa.engine.language import Language
|
|
18
20
|
from rasa.exceptions import ValidationError
|
|
@@ -1288,6 +1290,41 @@ class Validator:
|
|
|
1288
1290
|
|
|
1289
1291
|
return all_good
|
|
1290
1292
|
|
|
1293
|
+
def validate_agent_flow_conflicts(self, sub_agents_path: str) -> bool:
|
|
1294
|
+
"""Validates that agent names don't conflict with flow names.
|
|
1295
|
+
|
|
1296
|
+
Args:
|
|
1297
|
+
sub_agents_path: Path to the sub-agents directory.
|
|
1298
|
+
|
|
1299
|
+
Returns:
|
|
1300
|
+
True if validation passes, False otherwise.
|
|
1301
|
+
"""
|
|
1302
|
+
if self.flows.is_empty():
|
|
1303
|
+
return True
|
|
1304
|
+
|
|
1305
|
+
try:
|
|
1306
|
+
configuration = Configuration.get_instance()
|
|
1307
|
+
available_agents = configuration.available_agents
|
|
1308
|
+
flow_names = {flow.id for flow in self.flows.underlying_flows}
|
|
1309
|
+
|
|
1310
|
+
structlogger.debug(
|
|
1311
|
+
"validator.agent_flow_conflicts.debug",
|
|
1312
|
+
event_info="Checking conflicts between agents and flows",
|
|
1313
|
+
)
|
|
1314
|
+
|
|
1315
|
+
validate_agent_names_not_conflicting_with_flows(
|
|
1316
|
+
available_agents.agents, flow_names
|
|
1317
|
+
)
|
|
1318
|
+
return True
|
|
1319
|
+
except Exception as e:
|
|
1320
|
+
structlogger.error(
|
|
1321
|
+
"validator.agent_flow_conflicts",
|
|
1322
|
+
sub_agents_path=sub_agents_path,
|
|
1323
|
+
error=str(e),
|
|
1324
|
+
event_info=f"Agent-flow name conflict validation failed: {e}",
|
|
1325
|
+
)
|
|
1326
|
+
return False
|
|
1327
|
+
|
|
1291
1328
|
def _get_response_translation_warnings(self) -> list:
|
|
1292
1329
|
"""Collect warnings for responses missing translations.
|
|
1293
1330
|
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.14.
|
|
3
|
+
Version: 3.14.0rc3
|
|
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
|
|
@@ -154,6 +154,7 @@ Requires-Dist: typing-utils (>=0.1.0,<0.2.0)
|
|
|
154
154
|
Requires-Dist: ujson (>=5.8,<6.0)
|
|
155
155
|
Requires-Dist: webexteamssdk (>=1.6.1,<1.7.0) ; extra == "full" or extra == "channels"
|
|
156
156
|
Requires-Dist: websockets (>=10.4,<11.0)
|
|
157
|
+
Requires-Dist: werkzeug (>=3.1.3,<4.0.0)
|
|
157
158
|
Requires-Dist: wheel (>=0.40.0)
|
|
158
159
|
Project-URL: Documentation, https://rasa.com/docs
|
|
159
160
|
Project-URL: Homepage, https://rasa.com
|
|
@@ -180,7 +181,7 @@ Rasa is a framework for building scalable, dynamic conversational AI assistants
|
|
|
180
181
|
- **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.
|
|
181
182
|
- **Customizable and Open:** Fully customizable code that allows developers to modify Rasa to meet specific requirements, ensuring flexibility and adaptability to various conversational AI needs.
|
|
182
183
|
- **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.
|
|
183
|
-
- **Built-in Security:** Safeguard sensitive data, control access, and ensure secure deployment, essential for production environments that demand high levels of security and compliance.
|
|
184
|
+
- **Built-in Security:** Safeguard sensitive data, control access, and ensure secure deployment, essential for production environments that demand high levels of security and compliance. Secrets are managed through Pulumi's built-in secrets management system and can be integrated with HashiCorp Vault for enterprise-grade secret management.
|
|
184
185
|
|
|
185
186
|
A [free developer license](https://rasa.com/docs/pro/intro/#who-rasa-pro-is-for) is available so you can explore and get to know Rasa. It allows you to take your assistant live in production a limited capacity. A paid license is required for larger-scale production use, but all code is visible and can be customized as needed.
|
|
186
187
|
|
|
@@ -197,3 +198,14 @@ Check out our
|
|
|
197
198
|
|
|
198
199
|
for more. Also feel free to reach out to us on the [Rasa forum](https://forum.rasa.com/).
|
|
199
200
|
|
|
201
|
+
## Secrets Management
|
|
202
|
+
|
|
203
|
+
This project uses a multi-layered approach to secrets management:
|
|
204
|
+
|
|
205
|
+
- **Pulumi Secrets**: Primary secrets management through Pulumi's built-in configuration system (`pulumi.Config()`)
|
|
206
|
+
- **Kubernetes Secrets**: Application secrets are stored as Kubernetes secrets in the cluster
|
|
207
|
+
- **Vault Integration**: Optional HashiCorp Vault support for enterprise-grade secret management
|
|
208
|
+
- **AWS Secrets Manager**: Used selectively for specific services (e.g., database credentials in integration tests)
|
|
209
|
+
|
|
210
|
+
For infrastructure deployment, secrets are managed through Pulumi configuration files and environment variables, providing secure and flexible secret management across different deployment environments.
|
|
211
|
+
|
|
@@ -10,7 +10,7 @@ rasa/agents/core/types.py,sha256=ccnEfdh5UnHgcJJdRa-x6X2YrdwExxKsT0yFB40Bvt8,245
|
|
|
10
10
|
rasa/agents/exceptions.py,sha256=gde7ty-InaeVRIXSbuJoxCFZK6DZSCqGcDBBrxtEVfo,1214
|
|
11
11
|
rasa/agents/protocol/__init__.py,sha256=rDR_QdaWuHvkHTKF1MmgzjIk7T8m__KJIK9wtjQnGQ8,242
|
|
12
12
|
rasa/agents/protocol/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
rasa/agents/protocol/a2a/a2a_agent.py,sha256=
|
|
13
|
+
rasa/agents/protocol/a2a/a2a_agent.py,sha256=ErxmCNlZuqEEK0t0Js2LJlJC5zC2ho4-_DAD4pBWy8M,35157
|
|
14
14
|
rasa/agents/protocol/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
rasa/agents/protocol/mcp/mcp_base_agent.py,sha256=GOD835Wv0ijz56zauldVMOq84i6k0Wb9jz5VrE2qnwo,28826
|
|
16
16
|
rasa/agents/protocol/mcp/mcp_open_agent.py,sha256=2lcGoNl_Qpqot-iw22MetH4GjAts8F9LHRt9uTdQZKY,13362
|
|
@@ -23,25 +23,26 @@ rasa/agents/schemas/agent_tool_schema.py,sha256=VEB-xVKFqtwhkR0KgH1a3tj1Z_X27Cwg
|
|
|
23
23
|
rasa/agents/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
rasa/agents/templates/mcp_open_agent_prompt_template.jinja2,sha256=hXv01NsnF5P1vsoGxJZdRRCqqUx2TCbL29lgBWGaPy4,1318
|
|
25
25
|
rasa/agents/templates/mcp_task_agent_prompt_template.jinja2,sha256=KBSVV-_SdirRi1xz0PXUvOb9Ahd5KSWeJkIVFaZZkHI,1056
|
|
26
|
-
rasa/agents/utils.py,sha256=
|
|
27
|
-
rasa/agents/validation.py,sha256=
|
|
28
|
-
rasa/api.py,sha256=
|
|
26
|
+
rasa/agents/utils.py,sha256=j3Rljc7txMJ4cyQnJ6F65in7iRVdIb3n3DPw3Yb4kqU,7667
|
|
27
|
+
rasa/agents/validation.py,sha256=wLqDvdmt4yraYWMHXbYFpijue-iz1H9HNLfRP8cN3gc,17482
|
|
28
|
+
rasa/api.py,sha256=q5L8HRN577Xug3AqOtfHCRqoRUDnQ2FPA-uXu2wmUAY,6749
|
|
29
29
|
rasa/builder/README.md,sha256=7WYioSzBHFY25h1QCFellv7bIOW9VLH7Gf7dwQEc1k0,3715
|
|
30
30
|
rasa/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
rasa/builder/auth.py,sha256=naswg4P1o_zB1GQDybqySbhnY0OPIp7cH2Ze98Uhwgc,5436
|
|
32
32
|
rasa/builder/config.py,sha256=XtaRBoT3aYlrnfuRcSmtShAwcH6mzXqFNJyY9LHvsfA,3809
|
|
33
33
|
rasa/builder/copilot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
rasa/builder/copilot/constants.py,sha256=
|
|
35
|
-
rasa/builder/copilot/copilot.py,sha256=
|
|
34
|
+
rasa/builder/copilot/constants.py,sha256=zpNNW33ojunKVK0qq62C9WvSBsxih3yoVc1dRpFumyE,1339
|
|
35
|
+
rasa/builder/copilot/copilot.py,sha256=Q8vqBYeyZcSw2LJznjZAn86qPq3poyB4iTJYmYte44A,21106
|
|
36
36
|
rasa/builder/copilot/copilot_response_handler.py,sha256=teozaZFKR-XADdK2Nvkqu3wp48Bg1iqB7VT8rn5HcI4,20257
|
|
37
37
|
rasa/builder/copilot/copilot_templated_message_provider.py,sha256=eY8S7rVad6kX1-luyGpUT_2MNnIzfL4Fd1ZdLTTqM0g,1676
|
|
38
38
|
rasa/builder/copilot/exceptions.py,sha256=6alRMH8pyyXyjfKjtfSdjP1LunztC_c6Xu1OtlaUC2E,663
|
|
39
|
-
rasa/builder/copilot/models.py,sha256=
|
|
39
|
+
rasa/builder/copilot/models.py,sha256=XbmXZt0S45bJBRNK7jo4Tc4IX8esTNbSBCUGbpa3fjM,23175
|
|
40
40
|
rasa/builder/copilot/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
rasa/builder/copilot/prompts/copilot_system_prompt.jinja2,sha256=
|
|
42
|
-
rasa/builder/copilot/prompts/
|
|
41
|
+
rasa/builder/copilot/prompts/copilot_system_prompt.jinja2,sha256=b-ztkMwDu1xGO1BaQNxJoOZpMTf7UDP-MTl5c9Gkps4,31647
|
|
42
|
+
rasa/builder/copilot/prompts/copilot_training_error_handler_prompt.jinja2,sha256=mo2Il7jd0bYcorceejqQSmHtK8-Y_PhFl_zFLCrJBa4,1833
|
|
43
|
+
rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2,sha256=vunStm6gCpAr41IE7awmKSl0CQL-U2E3csCacnzpTRE,2670
|
|
43
44
|
rasa/builder/copilot/signing.py,sha256=z_eAGFMM1Mk009ambXA-mjJpM8KQRPaNHECpH2A2f-U,10011
|
|
44
|
-
rasa/builder/copilot/telemetry.py,sha256=
|
|
45
|
+
rasa/builder/copilot/telemetry.py,sha256=hzZX6H-3a9OojTWqsDpckb37b_BvXa0JLJ1S7OVF2IE,8676
|
|
45
46
|
rasa/builder/copilot/templated_messages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
47
|
rasa/builder/copilot/templated_messages/copilot_internal_messages_templates.yml,sha256=dqKDO-25_srbDAVBoq0asdnPD95o8xcQ3eWIGyf0D2I,746
|
|
47
48
|
rasa/builder/copilot/templated_messages/copilot_templated_responses.yml,sha256=i6Nja6Gv_NtymUEFoXWNq5pMIXIyLjiMvtrhyYyl2OU,1935
|
|
@@ -57,18 +58,18 @@ rasa/builder/guardrails/clients.py,sha256=csjdVtMk2q-S39fnp74JPaE9lI3CcFm8ldQXRE
|
|
|
57
58
|
rasa/builder/guardrails/constants.py,sha256=i0zZPNPlqI7QuOJMG_eDANng8myz7f4SXruqmuxwQqo,371
|
|
58
59
|
rasa/builder/guardrails/exceptions.py,sha256=z91rWucAWtONC0Esna5P_a7hp9Z5zp6ffz2fG8fg6L8,93
|
|
59
60
|
rasa/builder/guardrails/models.py,sha256=08pC7QbUajoyOXwbCWbZDtVGzpOeq1bBPEMQSoiJhr0,9217
|
|
60
|
-
rasa/builder/guardrails/policy_checker.py,sha256=
|
|
61
|
+
rasa/builder/guardrails/policy_checker.py,sha256=06zIeI5z4gMlRxsp6iazk05L4r2ZSRCA3DzJKS_uWaE,11985
|
|
61
62
|
rasa/builder/guardrails/store.py,sha256=-mJdsCnHgSI08uPnPwZRObIyRV9u98zcpQ5QkeHdVK0,7660
|
|
62
63
|
rasa/builder/guardrails/utils.py,sha256=3B-ybAkIYhpx7G1HSEnMKW8NW_bY4UCg3w73e7aYogw,3027
|
|
63
64
|
rasa/builder/job_manager.py,sha256=eQ5HRff-U4Cj3joHKqpjDcfCMWj4nz4D_oQmoozpwPM,2507
|
|
64
|
-
rasa/builder/jobs.py,sha256=
|
|
65
|
+
rasa/builder/jobs.py,sha256=H5kpqIJeoX-EpbCvLIhUXrI5f34dN2EDNvlahiCK-hk,15434
|
|
65
66
|
rasa/builder/llm_service.py,sha256=5yN4d7W1DYJIk4XLNz7Uvj2ZPp6RzdHoZ7tGh4H9ZVY,9974
|
|
66
67
|
rasa/builder/logging_utils.py,sha256=E1YZs5BdHT9TrnoA2758sFMD1Xw7e5mnAtqWSAZs1gk,9296
|
|
67
68
|
rasa/builder/main.py,sha256=hSDkcaV_gCYss9rfXjqM1QeBjEIhmRrACycoFDHKHEE,7597
|
|
68
|
-
rasa/builder/models.py,sha256=
|
|
69
|
+
rasa/builder/models.py,sha256=E4gWb8l0h1gBAvSY3wCyhnyQg3XiKn2Mng-EtoIUthY,6508
|
|
69
70
|
rasa/builder/project_generator.py,sha256=wD9I_paxaNWwqwjcg570AuvaeKk8TfopTKGapHTKGeA,18391
|
|
70
71
|
rasa/builder/project_info.py,sha256=ZBwFCigZLSo1RBMhlZDYBoVl2G-9OnhRrYxdMWHn6S4,2093
|
|
71
|
-
rasa/builder/service.py,sha256=
|
|
72
|
+
rasa/builder/service.py,sha256=pB_PCUQTxYKvzrE__pg0AnQNmTCkl3p8OdLPQ9xtSq4,49057
|
|
72
73
|
rasa/builder/shared/tracker_context.py,sha256=2P-DsWjWEkZ32dqrx6s4zVxdo0_mokZNrU3LYisu6MY,7691
|
|
73
74
|
rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
|
|
74
75
|
rasa/builder/template_cache.py,sha256=0ms5P4zvAtio9AhwKbazUwaYZQZxa8DToC3ieLi-UZ8,2350
|
|
@@ -88,11 +89,11 @@ rasa/cli/arguments/train.py,sha256=Fu2KAVddvEjQ_aQ6O9zgKKfKsSGKyPEKiZpvlJIOKYQ,9
|
|
|
88
89
|
rasa/cli/arguments/visualize.py,sha256=e8yhvc6Jfy1JKSOIVFV5mY5QPowkf0o1kt6IGujVxcY,861
|
|
89
90
|
rasa/cli/arguments/x.py,sha256=_23reqNwiit2VoCqmv23kQZudA3iZVXaBV_zEXJjV6w,1028
|
|
90
91
|
rasa/cli/data.py,sha256=GHUnCobXUvx4NcXNz_SOkEQpHIIdqTTIOlT2YXnsfqo,13498
|
|
91
|
-
rasa/cli/dialogue_understanding_test.py,sha256=
|
|
92
|
-
rasa/cli/e2e_test.py,sha256=
|
|
92
|
+
rasa/cli/dialogue_understanding_test.py,sha256=j7e5ZEKOOJKEBLbwamGTdg2rTUTYP5SCm7mohwlXoeU,13676
|
|
93
|
+
rasa/cli/e2e_test.py,sha256=8KTdM_8AyP9-eWXXYvuLAom2bN6KGOaS2b_usP6G_EU,8227
|
|
93
94
|
rasa/cli/evaluate.py,sha256=HH5OiPSRB6n80DhZonjQOvaDlAlgaxaoecDZWMnuRJ8,8019
|
|
94
95
|
rasa/cli/export.py,sha256=VqNt9ycF1z-UHbz_iWHxjHsq0ROvj6nOcHBQz1W3MBQ,8426
|
|
95
|
-
rasa/cli/inspect.py,sha256=
|
|
96
|
+
rasa/cli/inspect.py,sha256=nEY9G4ihN3P-p4ckTQmt3YiI_ZBZ1VqBRE_38fkEl7s,3965
|
|
96
97
|
rasa/cli/interactive.py,sha256=kQMH743AbCvwsGASBORQHgVeaaTvHIIbEbfZWfvhGQU,6166
|
|
97
98
|
rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
|
|
98
99
|
rasa/cli/llm_fine_tuning.py,sha256=VqblDb-raZQ9YZGU5hrtg4TTNWWZbTwfp35LtWmLELo,15152
|
|
@@ -129,6 +130,13 @@ rasa/cli/project_templates/basic/domain/system/patterns/pattern_cannot_handle.ym
|
|
|
129
130
|
rasa/cli/project_templates/basic/domain/system/patterns/pattern_session_start.yml,sha256=ojugI3laqH-iL-0Rlt170nTgJuH-uifY8IIJ9My0FNI,466
|
|
130
131
|
rasa/cli/project_templates/basic/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
|
|
131
132
|
rasa/cli/project_templates/basic/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Djna_YB2PWSQxvzOduCnP7btgLihWZ4eLflR9WYwexo,1971
|
|
133
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/feedback.yml,sha256=Ffs4bgs21Yav_BdiOjLKtxYwhQJt_bzI_Pci_IgvLrI,1563
|
|
134
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/goodbye.yml,sha256=xWPgvS0zB7cMvHuYlyPWzWbSIcW5EmkPrlJGTRpMcH8,229
|
|
135
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
136
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/help.yml,sha256=YNDdaxzBtGvrGo1unznM2Hp-PjuxG11_-9wOBCA4pOA,182
|
|
137
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/human_handoff.yml,sha256=NipHqsyTbAUbiTgY1pqc0rK9Z-I4Pc08fFZFYiXe8DY,1488
|
|
138
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/patterns.yml,sha256=7qlK5ToQsl83dTprAQQZO1qTNe3IxxT85PfXI_g2Mrk,892
|
|
139
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/show_faqs.yml,sha256=vyNMEc9nZvtY_oSunkIvEv73kGuDfFWmU88HtBkjdu8,197
|
|
132
140
|
rasa/cli/project_templates/default/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
141
|
rasa/cli/project_templates/default/actions/action_template.py,sha256=BoiGE6tHbUl4WAEpf1sYTsQRV4_aZiTk4cLFEpk6QVY,755
|
|
134
142
|
rasa/cli/project_templates/default/actions/add_contact.py,sha256=bvXsHnHquhEJxSKB0sNYouePRTdL7gLyH3ftEknbI68,1032
|
|
@@ -238,6 +246,7 @@ rasa/cli/project_templates/finance/domain/general/bot_challenge.yml,sha256=9cYFO
|
|
|
238
246
|
rasa/cli/project_templates/finance/domain/general/cannot_handle.yml,sha256=ua3oYu0sKNCkKy9GEFPJXNau6_9LykDeq6OXl_0wv6Y,483
|
|
239
247
|
rasa/cli/project_templates/finance/domain/general/feedback.yml,sha256=79NluNhlfLJpsr4n2BERpv9f85zF3BAv1Xv4NHykB8Q,1060
|
|
240
248
|
rasa/cli/project_templates/finance/domain/general/goodbye.yml,sha256=6G3SEF6UcRdIhZhV_hEUgqKEB4dfXSkomW5aCxMR-pk,396
|
|
249
|
+
rasa/cli/project_templates/finance/domain/general/help.yml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
250
|
rasa/cli/project_templates/finance/domain/general/human_handoff.yml,sha256=KhNKEgqqGwfaN1Fzvjk-ZGaqS3nG3OJkNOlYQ3Mhurs,950
|
|
242
251
|
rasa/cli/project_templates/finance/domain/general/welcome.yml,sha256=WkSb4lIeCTDM_5_wTaPR3wRRSeq6AX04Exh8BZwc4YM,1230
|
|
243
252
|
rasa/cli/project_templates/finance/domain/transfers/check_transfer_limit.yml,sha256=Px9ptewHbcj0Mm8Jh5I1TwCNE3ecNcx2CErdmmEGlNg,787
|
|
@@ -246,16 +255,16 @@ rasa/cli/project_templates/finance/domain/transfers/shared.yml,sha256=_nSMfwLyLL
|
|
|
246
255
|
rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml,sha256=dGLOVxvPrNZd6HtCS59CM6ntaYiGgGoiwts_p46bQzI,6765
|
|
247
256
|
rasa/cli/project_templates/finance/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
|
|
248
257
|
rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Bp2BzhWIFUozKpxpof6YG36enwEXpQIZ29tBdZz6-H0,1975
|
|
249
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/check_balance.yml,sha256=VwXa341lWYiqkaiMzH4ZROICDbVuDPdkYlN-rrHgNUo,265
|
|
250
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/download_statements.yml,sha256=0WZcTuUJn0wqEwMNwqL5CczeaqKLs09TT5MLvyhwIiU,1449
|
|
251
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/cards/block_card.yml,sha256=ToK2dS3WA8OSySORrI7adocFl4WmxMZ_bk404dDqbl0,1802
|
|
252
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
253
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/feedback.yml,sha256=9HwX0ksPH5lZRjCB2qkiDa2qvP3CN0r6CcR0s8sZZGk,1552
|
|
254
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
255
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
256
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
257
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/patterns.yml,sha256=j77lAbAhg2n0exLCQgstOB7JDfhNE0VrKY0PjJf62hQ,1105
|
|
258
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/transfers/transfer_money.yml,sha256=SZavDCqTgpbXQVtVQR1ayrDVwm7PFRFrsTzMvD10kls,1908
|
|
258
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/accounts/check_balance.yml,sha256=VwXa341lWYiqkaiMzH4ZROICDbVuDPdkYlN-rrHgNUo,265
|
|
259
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/accounts/download_statements.yml,sha256=0WZcTuUJn0wqEwMNwqL5CczeaqKLs09TT5MLvyhwIiU,1449
|
|
260
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/cards/block_card.yml,sha256=ToK2dS3WA8OSySORrI7adocFl4WmxMZ_bk404dDqbl0,1802
|
|
261
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
262
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/feedback.yml,sha256=9HwX0ksPH5lZRjCB2qkiDa2qvP3CN0r6CcR0s8sZZGk,1552
|
|
263
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
264
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
265
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
266
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/patterns.yml,sha256=j77lAbAhg2n0exLCQgstOB7JDfhNE0VrKY0PjJf62hQ,1105
|
|
267
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/transfers/transfer_money.yml,sha256=SZavDCqTgpbXQVtVQR1ayrDVwm7PFRFrsTzMvD10kls,1908
|
|
259
268
|
rasa/cli/project_templates/telco/README.md,sha256=KyIlPzYqXohBYN2_gErtN1DcE09B1fXsFU443DeWFWQ,1270
|
|
260
269
|
rasa/cli/project_templates/telco/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
261
270
|
rasa/cli/project_templates/telco/actions/actions.md,sha256=91irqUhAx4u3iVAL25pHWwxBCpAnjK0xPKVFVvLQEtw,809
|
|
@@ -281,7 +290,7 @@ rasa/cli/project_templates/telco/data/general/human_handoff.yml,sha256=p8F2L5o3Q
|
|
|
281
290
|
rasa/cli/project_templates/telco/data/general/patterns.yml,sha256=7hI6DdDHWNF3OHhtOUiACnawPKN6GcC87HQJnmaTAOo,755
|
|
282
291
|
rasa/cli/project_templates/telco/data/network/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
|
|
283
292
|
rasa/cli/project_templates/telco/data/network/flow_reset_router.yml,sha256=IFp8WSVclHQKQlM7dJphKBtRcIGXO_l4CmvTvvuGG8A,258
|
|
284
|
-
rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml,sha256=
|
|
293
|
+
rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml,sha256=zVjYVSFgNePCGdd1wLydQQDqsXlVFGMyPg24mlW_2rU,3995
|
|
285
294
|
rasa/cli/project_templates/telco/docs/docs.md,sha256=oW7M2DXeC6OjhckW9CL6hAA5AqxT1x13fRoFWIRZJRU,521
|
|
286
295
|
rasa/cli/project_templates/telco/docs/network/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
|
|
287
296
|
rasa/cli/project_templates/telco/docs/network/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
|
|
@@ -297,18 +306,19 @@ rasa/cli/project_templates/telco/domain/general/patterns.yml,sha256=YmJ2uBoSfh-K
|
|
|
297
306
|
rasa/cli/project_templates/telco/domain/network/reboot_router.yml,sha256=lh-lfRUrO6C6jw2iqJk2-qC217JB2q5DPLS7PjLFhsw,441
|
|
298
307
|
rasa/cli/project_templates/telco/domain/network/reset_router.yml,sha256=x184d8fLHakZDswzi8_sRxuXheIwm4rJCYNe2j3qLMk,413
|
|
299
308
|
rasa/cli/project_templates/telco/domain/network/run_speed_test.yml,sha256=SxzdIooULal3BmsCAfDSdwKRbtV3PyXtSEOUTWRWS3c,493
|
|
300
|
-
rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml,sha256=
|
|
309
|
+
rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml,sha256=2eZhR_maxhFxSi2cEp93ee4y8CleaqIBhbWGEWm6H9k,2760
|
|
301
310
|
rasa/cli/project_templates/telco/domain/shared.yml,sha256=TYe6yeIITCVzxvp-LBE9n38TErP4h37SB4jShpjEVuM,3399
|
|
302
311
|
rasa/cli/project_templates/telco/endpoints.yml,sha256=yL0ifaAMFHVc9OmWKFEYbnhIZv8edQOpN1lGDTBEa5Y,2263
|
|
303
312
|
rasa/cli/project_templates/telco/prompts/rephraser_demo_personality_prompt.jinja2,sha256=H56ei41Sqxi94QCJMI8OoY1_fftTgUiOSDMhP3sRy-8,1973
|
|
304
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
305
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
306
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
307
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/
|
|
308
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/
|
|
309
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/
|
|
310
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/
|
|
311
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
313
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_not_slow.yml,sha256=R30Yo2li_ot20g2QMKXOcjwAaGpgYCt22cTKluGvPKg,1081
|
|
314
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_slow.yml,sha256=NE2b_KYJUF_N0ey-3bKWOlAbMeht7Du4F7F6cn7sP7E,1659
|
|
315
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/billing/understand_bill.yml,sha256=WKB1QQs2EMU2r_-LVrtwT053kg4i5Hqwr8s1wrvqBMI,2393
|
|
316
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
317
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/feedback.yml,sha256=z0YsRGeYRMJp3-Sz4g3eyGy4vXGrVPuzwOXRkxAaQZc,1553
|
|
318
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
319
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
320
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
321
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/patterns.yml,sha256=hS_0Ri3FHHpAS783xWydYVp_YpE57nO1hd4WtjqJ6Ig,1461
|
|
312
322
|
rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
323
|
rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
|
|
314
324
|
rasa/cli/project_templates/tutorial/config.yml,sha256=jSoFhtr8hA-CFb8g0PaJHwpU0YKsmHSen-E1FZ7dyeE,267
|
|
@@ -317,9 +327,9 @@ rasa/cli/project_templates/tutorial/data/flows.yml,sha256=mTzRicdj-Pbb95Hi3mhno4
|
|
|
317
327
|
rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHNwKFRPlC1wHBC9im0KrLgl7Qc,464
|
|
318
328
|
rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
|
|
319
329
|
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=ZZfchpZLo5MObU5JVXPqBi8KrKe8gzsZskSDAjpfS9E,1788
|
|
320
|
-
rasa/cli/run.py,sha256=
|
|
330
|
+
rasa/cli/run.py,sha256=0V2JfLKeVZ8y8kkUBK3v0gkoEBRfVS0JubxyiZ5e4TM,4451
|
|
321
331
|
rasa/cli/scaffold.py,sha256=dqqOD6ZxvwooINuooDQaT9HBzlCyhBZWv_vG3szMk4A,9614
|
|
322
|
-
rasa/cli/shell.py,sha256=
|
|
332
|
+
rasa/cli/shell.py,sha256=71H-Le2kFBuZxoSY-DaqxxohJBSAI5wH5P7KNvBpZLI,4940
|
|
323
333
|
rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
334
|
rasa/cli/studio/download.py,sha256=5uLdnW60JQ1NkUcJfK_be2pKjVOtYzCCjNAQpfGkYnM,1163
|
|
325
335
|
rasa/cli/studio/link.py,sha256=rrup2dUGef6yCC-3jTDiK-2pEspcBnl-61guhVJdmGU,1059
|
|
@@ -330,10 +340,10 @@ rasa/cli/studio/train.py,sha256=R5TuZztfeBwvv83Q3VpdaHtK1oo5zdt6ImbZqfvHQxc,1485
|
|
|
330
340
|
rasa/cli/studio/upload.py,sha256=9j6-OC0uSa1decsjbIrHk952sIF_NZPnIYZHvWLOy-w,1695
|
|
331
341
|
rasa/cli/telemetry.py,sha256=mNMMbcgnNPZzeF1k-khN-7lAQFnkFx75VBwtnPfPI6k,3538
|
|
332
342
|
rasa/cli/test.py,sha256=HOByA0RQCupaPvmoPYzUCBcJLJnakT1uRrqxZLewm1Y,9834
|
|
333
|
-
rasa/cli/train.py,sha256=
|
|
343
|
+
rasa/cli/train.py,sha256=tJ4e3I0nJLUosnZPJmF1_msfV9usnB7b8WMsBBB3Rwk,10208
|
|
334
344
|
rasa/cli/utils.py,sha256=BpMNV6Cyo0bfJ-jnMXgqVCgfa0BFvV7HkbmtA2ZjXhM,4155
|
|
335
345
|
rasa/cli/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
|
-
rasa/cli/validation/bot_config.py,sha256=
|
|
346
|
+
rasa/cli/validation/bot_config.py,sha256=bLzK1NK7f8_NzlcSxSb4kGx0mYtO8jWexBk0tjLNKwE,8380
|
|
337
347
|
rasa/cli/validation/config_path_validation.py,sha256=ME3BQ5KwJbLl7igDTvoegIuFLybCphKkxsKHvJ3nYiQ,8424
|
|
338
348
|
rasa/cli/visualize.py,sha256=YmRAATAfxHpgE8_PknGyM-oIujwICNzVftTzz6iLNNc,1256
|
|
339
349
|
rasa/cli/x.py,sha256=S7MLMgpFCnURPTU-o8ReHkbUPPOGv0XkfcVpLoGHTWo,6995
|
|
@@ -359,11 +369,11 @@ rasa/core/actions/http_custom_action_executor.py,sha256=oC5OM-p11wHOXXVl7vrTUjhw
|
|
|
359
369
|
rasa/core/actions/loops.py,sha256=3-kt_Sn_Y05PLYoYMsnuIn9e5mxYp31DJIx2omqy0dU,3531
|
|
360
370
|
rasa/core/actions/two_stage_fallback.py,sha256=k8PkD25fvH3kThG9lpC6oLMK7o15kV4yEbv2E2nyans,6065
|
|
361
371
|
rasa/core/agent.py,sha256=7ztUOYaevcwP6czj6JHM1iEriZx2nVZd1gfaMh7Ynl4,22513
|
|
362
|
-
rasa/core/available_agents.py,sha256=
|
|
372
|
+
rasa/core/available_agents.py,sha256=vdMXl2PX6nTOTz7LW_CYqBkROh1d1GlGSsuf37338lc,9003
|
|
363
373
|
rasa/core/brokers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
374
|
rasa/core/brokers/broker.py,sha256=mCBHPJYiFENeLXdNZjh7N28BC7t2l4oA-EG1rNzFJyQ,4392
|
|
365
375
|
rasa/core/brokers/file.py,sha256=ggMc2LU6SrYXyPB89tJ1S44kfTe2EApSZgq5EZ5KaB8,1804
|
|
366
|
-
rasa/core/brokers/kafka.py,sha256=
|
|
376
|
+
rasa/core/brokers/kafka.py,sha256=LIZjh7Asn1wQ6u760rOpH7bgggZ2mYpYbKmfpM3ZaNo,15686
|
|
367
377
|
rasa/core/brokers/pika.py,sha256=HARXdMD7gAn5SofnSo1p53TruO2ytTCNTNGV7u82u8A,14493
|
|
368
378
|
rasa/core/brokers/sql.py,sha256=SZ-ZFVaPnkCPNNKnISf3KQ-HnG4mQhZ4AoLJrkrIfUE,2748
|
|
369
379
|
rasa/core/channels/__init__.py,sha256=eZe98noR6ABtPX6EqKF3PyAHVJ9MkN5e2RC5nokwaZA,3725
|
|
@@ -550,13 +560,13 @@ rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=XzhxFkbmCs8WhPizi
|
|
|
550
560
|
rasa/core/channels/voice_stream/util.py,sha256=nbr0yUl0NIn4-94VUYjPEg_NB2kadcFCq-i9rRJMv4U,2323
|
|
551
561
|
rasa/core/channels/voice_stream/voice_channel.py,sha256=m7P8krfe1MNoAXXlecsciFUeiDDdBiCyGSE8el0lp0g,26449
|
|
552
562
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
553
|
-
rasa/core/concurrent_lock_store.py,sha256=
|
|
563
|
+
rasa/core/concurrent_lock_store.py,sha256=sDO7Zcl-IdZrGnOMVJa_lN7ht9uJVfaRkSbyXaTizlc,11375
|
|
554
564
|
rasa/core/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
555
|
-
rasa/core/config/available_endpoints.py,sha256=
|
|
556
|
-
rasa/core/config/configuration.py,sha256=
|
|
565
|
+
rasa/core/config/available_endpoints.py,sha256=nJjPU89ezuHlYfF5k-VyrsJpSFJ26_ah9BYJICx4d6c,6861
|
|
566
|
+
rasa/core/config/configuration.py,sha256=UDWPuHCxTqdSr-V0bEzXQjU40dzx0zaKW-Nh_5EGWJ0,9877
|
|
557
567
|
rasa/core/config/credentials.py,sha256=2oLgHc8PV7yT-TPX-86Ykf9OQzqsYX7-13sPADDAveI,547
|
|
558
568
|
rasa/core/config/message_procesing_config.py,sha256=guZ4ULqt4-G4aML1hNlrpoNFvRqr_q_fiUcQBejZ8e4,1042
|
|
559
|
-
rasa/core/constants.py,sha256=
|
|
569
|
+
rasa/core/constants.py,sha256=fpeDz5E1yWATfyiQYdqokSASkEC_E8b8BAD4A7k6ji4,4751
|
|
560
570
|
rasa/core/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
561
571
|
rasa/core/evaluation/marker.py,sha256=qjCsjif5d8TYy74g__NL8YyEFL8MYOaI-PgfZ2jOyiY,9155
|
|
562
572
|
rasa/core/evaluation/marker_base.py,sha256=agObXfag9aC6py1nD30rsUU6LpPb0_K33qv0hc-_hKs,38124
|
|
@@ -570,8 +580,8 @@ rasa/core/featurizers/single_state_featurizer.py,sha256=K3O-dPmSjXwxgmOjXIvp7W4U
|
|
|
570
580
|
rasa/core/featurizers/tracker_featurizers.py,sha256=_4kvkAH95-V1TKhhSuxFLSd_O43gW0U3IcqN79NDFCo,46756
|
|
571
581
|
rasa/core/http_interpreter.py,sha256=7TUY12EVO3Q8G2zs2b4W_Cn2K22GtIlODs1H_bF-IDM,2909
|
|
572
582
|
rasa/core/iam_credentials_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
573
|
-
rasa/core/iam_credentials_providers/aws_iam_credentials_providers.py,sha256=
|
|
574
|
-
rasa/core/iam_credentials_providers/credentials_provider_protocol.py,sha256=
|
|
583
|
+
rasa/core/iam_credentials_providers/aws_iam_credentials_providers.py,sha256=rrWMYD3TC_Ju_Mz4I-b9fKW7eMEROZEV5Y-gUW8z6Jg,11184
|
|
584
|
+
rasa/core/iam_credentials_providers/credentials_provider_protocol.py,sha256=57f7K80RzK1wdvDzMIB0X7txij26yduY9_-qryIfveM,2617
|
|
575
585
|
rasa/core/information_retrieval/__init__.py,sha256=Xo9VzUBriFGo4m2Ba-1f7D6sIz_WcXAOJr9WU2iYJRc,218
|
|
576
586
|
rasa/core/information_retrieval/faiss.py,sha256=xc1cbt4Bn2aR4cGWkzPZ2dScw-ORXTwHPB_iCvifNac,4579
|
|
577
587
|
rasa/core/information_retrieval/information_retrieval.py,sha256=Re17_o7jQfaQWR_3jJs42J_EaH0SXgMnAp5rlQSe7Ww,4251
|
|
@@ -581,7 +591,7 @@ rasa/core/information_retrieval/milvus.py,sha256=x-WDVANwj9gJ1ZqpkdTWAK0a2K-_bIy
|
|
|
581
591
|
rasa/core/information_retrieval/qdrant.py,sha256=KHtU6txMs5ZrAECVjgTa2d5mb37-gHxpy8uRHSIMMAg,3441
|
|
582
592
|
rasa/core/jobs.py,sha256=Hfldyj_uOHBknmIU1bp6jl_uIf9ljaiZt8BhmaEFpps,2083
|
|
583
593
|
rasa/core/lock.py,sha256=KNrpWv_KYLFjQfwaDembrjO2i4HhoVHbllw6_BPYMrE,4718
|
|
584
|
-
rasa/core/lock_store.py,sha256=
|
|
594
|
+
rasa/core/lock_store.py,sha256=tUAkh1fuUv0bpIa9BOCA60AIRGY7ds9e4kK3NjJ7JdE,17206
|
|
585
595
|
rasa/core/migrate.py,sha256=h1dOpXxmVmZlbLVGy1yOU_Obp2KzRiOiL0iuEacA0Cg,14618
|
|
586
596
|
rasa/core/nlg/__init__.py,sha256=jZuQAhOUcxO-KqqHGqICHSY3oDeXlUiGr2trQDYfG6o,240
|
|
587
597
|
rasa/core/nlg/callback.py,sha256=lxBBZdjXHS54fn_pH_YUW8ApbFOBO-kYSY5bL4gR1p0,5218
|
|
@@ -601,7 +611,7 @@ rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256
|
|
|
601
611
|
rasa/core/policies/enterprise_search_prompt_with_relevancy_check_and_citation_template.jinja2,sha256=b_8ZzK1ar0SvLZRFS8d9tHWvYS7Xb8xPJiBKg-UcyAM,3743
|
|
602
612
|
rasa/core/policies/flow_policy.py,sha256=Ulh3pjc1Yi4oJ4oLdmMgv9_SxcqO39m2AohhZaOEJgM,7510
|
|
603
613
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
604
|
-
rasa/core/policies/flows/agent_executor.py,sha256=
|
|
614
|
+
rasa/core/policies/flows/agent_executor.py,sha256=l8z0xzRGGRzifK2f3VL1HYw-DnUaXvcYCtJ6UQETbrc,21884
|
|
605
615
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
606
616
|
rasa/core/policies/flows/flow_executor.py,sha256=mr6w_ERPkaxP_s38nABaR-APDbPCk73VGGk53P-Rpik,31596
|
|
607
617
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
@@ -614,7 +624,7 @@ rasa/core/policies/rule_policy.py,sha256=EItfUn07JIBLRIbriPKDprsvWq_-xzZTGrlTS2e
|
|
|
614
624
|
rasa/core/policies/ted_policy.py,sha256=7GBrd58TC6UptKR8gp0iZxkFSwG3qh-i74TpLb35dM4,88030
|
|
615
625
|
rasa/core/policies/unexpected_intent_policy.py,sha256=5yvvUqITcyM1YrYQ3p9Fyj0UE6ghzTrozTVu-KchA8w,39885
|
|
616
626
|
rasa/core/processor.py,sha256=lAmmmjRyJdYviQBOkMAU6K8qkM4WG5kwjMzkMZjg1fQ,64613
|
|
617
|
-
rasa/core/redis_connection_factory.py,sha256=
|
|
627
|
+
rasa/core/redis_connection_factory.py,sha256=HTSwGAU2GYFGVlYvxAPYytym4ASjttmQ-g3mR3f6AA0,16805
|
|
618
628
|
rasa/core/run.py,sha256=bSFg3aiLgiHV-GN9klSrc5zG9WthZGob9IX1ULpwcfk,13741
|
|
619
629
|
rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
620
630
|
rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
|
|
@@ -627,8 +637,8 @@ rasa/core/tracker_stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
627
637
|
rasa/core/tracker_stores/auth_retry_tracker_store.py,sha256=eOwsLuQZhWu5Q4RZHJYffL3FhpKOglzJ0MNGffv2E60,7270
|
|
628
638
|
rasa/core/tracker_stores/dynamo_tracker_store.py,sha256=T4F1q3o9Fw2XVOOAmtz3tgM2FTKI4aaQfCZXmdjYjGE,9426
|
|
629
639
|
rasa/core/tracker_stores/mongo_tracker_store.py,sha256=v2ktPXxp7PWfoHPqOJKLkMzML_5E_Of0Ihna2Vcqfbg,7644
|
|
630
|
-
rasa/core/tracker_stores/redis_tracker_store.py,sha256=
|
|
631
|
-
rasa/core/tracker_stores/sql_tracker_store.py,sha256=
|
|
640
|
+
rasa/core/tracker_stores/redis_tracker_store.py,sha256=5zv6Y9eV0enCfWBKMKL92Dba1DsvMMlvQlJjh5-Nzis,9806
|
|
641
|
+
rasa/core/tracker_stores/sql_tracker_store.py,sha256=Kl8uGH6YHVOtzaSLTKCSNGdFAhMlCPLA_QVbr3SR93s,23052
|
|
632
642
|
rasa/core/tracker_stores/tracker_store.py,sha256=VXEUFSdpQzWV11mbnDrzggtFBpjGlek5N86V-8SA2mc,29362
|
|
633
643
|
rasa/core/train.py,sha256=Qs8Dm6pIVP3Gv-SSApVZSyI6xuCS8Z48hVCwnPfiReI,3529
|
|
634
644
|
rasa/core/training/__init__.py,sha256=23DaZynwsxIaGYvZBSwQRxanaMWa-ihfON7f-NetK_g,3213
|
|
@@ -669,9 +679,9 @@ rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68
|
|
|
669
679
|
rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
|
|
670
680
|
rasa/dialogue_understanding/commands/set_slot_command.py,sha256=VWyv98yk65Jg-unKmytrbNeEsdNUfVkq7TrUzAMNQAs,7299
|
|
671
681
|
rasa/dialogue_understanding/commands/skip_question_command.py,sha256=SlPeY0__XiRocUzBVW13kecxVNL5t7XtbOKvvVIWccQ,3387
|
|
672
|
-
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=
|
|
682
|
+
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=eTpYu6WCQl9COxQVYbdmiIdABuVFiwX1ir4ZDeA5aWw,7756
|
|
673
683
|
rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
|
|
674
|
-
rasa/dialogue_understanding/commands/utils.py,sha256=
|
|
684
|
+
rasa/dialogue_understanding/commands/utils.py,sha256=h2oiBbyULRDzTYrJaL4eDobMr4c2LUWG5t3HMvqw7to,9121
|
|
675
685
|
rasa/dialogue_understanding/constants.py,sha256=_kB0edGV23uvhujlF193N2jk6YG0R6LC599YDX5B5vo,129
|
|
676
686
|
rasa/dialogue_understanding/generator/__init__.py,sha256=SlAfNRrmBi6dqhnYdFTJDOj3jiOy4f6TETYwi0inEGE,1129
|
|
677
687
|
rasa/dialogue_understanding/generator/_jinja_filters.py,sha256=KuK7nGKvKzKJz6Wg3AmrLFvzneGgIyeK825MCE379wc,248
|
|
@@ -681,7 +691,7 @@ rasa/dialogue_understanding/generator/command_parser_validator.py,sha256=qUIaKBR
|
|
|
681
691
|
rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
|
|
682
692
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
683
693
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=TF0QEM7q8KpyDYIJDu0Ym6K-ObjCOw4EEUbGXdpgPvY,17732
|
|
684
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
694
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=y3Cy92L10DnVNwE8NuzdSWtCy2kBkeE_h1jVfC3GccQ,25245
|
|
685
695
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=CMzsivtKfQZYN8PbDYIBH_1RJg856JSjUx8HqLvbvx4,2589
|
|
686
696
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
687
697
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
@@ -699,9 +709,9 @@ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_
|
|
|
699
709
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_claude_3_5_sonnet_20240620_template.jinja2,sha256=r8EKbUFCWV2_x8rZIAZgebEBkusdqokGQR65fiTE5a4,4863
|
|
700
710
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_gpt_4o_2024_11_20_template.jinja2,sha256=IHoD5g3YlZjMLCAjlNtp2NmFsyyio7L1LxLlDvXrZ7Y,4862
|
|
701
711
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
702
|
-
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=
|
|
703
|
-
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=
|
|
704
|
-
rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py,sha256=
|
|
712
|
+
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=QteDb1OwXoVwgbyr_gbglhBpOdcv_l9oDvC4GH84Niw,6649
|
|
713
|
+
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=66QpVl8PjdyX6G941dZgfGlLm-bkMA_hdhxj8CqB_9g,6630
|
|
714
|
+
rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py,sha256=IsUp3Sf59HAogVsM7zgSbViusyH46Y35GiOzLuvYBmM,18086
|
|
705
715
|
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=_cT866aB8TuSqe6_ybPaSQVCY0l4qgX4lg6QZUUryo4,3494
|
|
706
716
|
rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
|
|
707
717
|
rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -746,7 +756,7 @@ rasa/dialogue_understanding_test/command_metrics.py,sha256=yOugD2JitTmarD__Ktf15
|
|
|
746
756
|
rasa/dialogue_understanding_test/constants.py,sha256=G63FEzswDUOonTxoXQicEJwI6ICkSx3YP1ILkGH1ijw,790
|
|
747
757
|
rasa/dialogue_understanding_test/du_test_case.py,sha256=4Z5Ei21OdqN2MEHEKz-NGzzv0zuPwUkOjzNjEWQhnVA,17038
|
|
748
758
|
rasa/dialogue_understanding_test/du_test_result.py,sha256=y9U_w_5aV8bGppmUHWgbNZG-9-TQGOm2xO0w38e1eUo,19457
|
|
749
|
-
rasa/dialogue_understanding_test/du_test_runner.py,sha256=
|
|
759
|
+
rasa/dialogue_understanding_test/du_test_runner.py,sha256=XmbVoSIH14tFFA34v1kMA1SPvbT2chNHlh0iFvmsRUA,11733
|
|
750
760
|
rasa/dialogue_understanding_test/du_test_schema.yml,sha256=nxezEXfnoc-oVZXDqHRg-Yk4fkDF3t2VatRRMdSSE2o,4773
|
|
751
761
|
rasa/dialogue_understanding_test/io.py,sha256=doMboRm9G6KaxmfsOYhsa2iz8zghh4bLMa3XTIV6DC0,16250
|
|
752
762
|
rasa/dialogue_understanding_test/test_case_simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -766,7 +776,7 @@ rasa/e2e_test/e2e_test_converter.py,sha256=bcSg-hWKPGvZBip6PKPvYAcgvSUCU5uXmC9D7
|
|
|
766
776
|
rasa/e2e_test/e2e_test_converter_prompt.jinja2,sha256=EMy-aCd7jLARHmwAuZUGT5ABnNHjR872_pexRIMGA7c,2791
|
|
767
777
|
rasa/e2e_test/e2e_test_coverage_report.py,sha256=UGQ3np2p_gtnhl17K5y886STiX9xBn95GVuN9LGIpGY,11344
|
|
768
778
|
rasa/e2e_test/e2e_test_result.py,sha256=qVurjFC4cAWIY7rOsc-A-4nIdcnnw98TaK86-bDwI7Y,1649
|
|
769
|
-
rasa/e2e_test/e2e_test_runner.py,sha256=
|
|
779
|
+
rasa/e2e_test/e2e_test_runner.py,sha256=PDSOE666jpssg25LU32a6JeNUHhuEVvJ5CblyeLZ61U,48390
|
|
770
780
|
rasa/e2e_test/e2e_test_schema.yml,sha256=0WG0I3baTRc76lff3UjQ8vGRzMUoV6qcE8r9adOAlCU,5638
|
|
771
781
|
rasa/e2e_test/llm_judge_prompts/answer_relevance_prompt_template.jinja2,sha256=6Ddszg4Y6sIvhH7C1jjEAArpzke48mfCOa2KUQYbNVA,2725
|
|
772
782
|
rasa/e2e_test/llm_judge_prompts/groundedness_prompt_template.jinja2,sha256=jCgDbZvWn5fncr4zvB5UQSK1VJu9xDQtpY4B8GKtlmA,8226
|
|
@@ -931,8 +941,8 @@ rasa/shared/agents/auth/auth_strategy/__init__.py,sha256=XjTLRSWzcHB0S2_bA8lewqj
|
|
|
931
941
|
rasa/shared/agents/auth/auth_strategy/agent_auth_strategy.py,sha256=EmWtNe6ubGCaIg11L9nYbdwmp-zmswj2D60YfYnGz6c,1609
|
|
932
942
|
rasa/shared/agents/auth/auth_strategy/api_key_auth_strategy.py,sha256=K44K0FioGNbFeZHjjynEXHV4fUrrqlkPZvryCiWS7ac,1454
|
|
933
943
|
rasa/shared/agents/auth/auth_strategy/bearer_token_auth_strategy.py,sha256=PXbNbRb246jQqMOu_92FyTaTlCbTtH9uLN3wI361IiQ,965
|
|
934
|
-
rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py,sha256=
|
|
935
|
-
rasa/shared/agents/auth/constants.py,sha256=
|
|
944
|
+
rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py,sha256=ETPw2OkhE2K0Lyy5L8q6lsbTzEQEmSOhxy79FelZ-xs,6331
|
|
945
|
+
rasa/shared/agents/auth/constants.py,sha256=Rh81Vl9ZjpIQnQs3QOqm-pHkXZrfg-Ym_mroenmnBGo,437
|
|
936
946
|
rasa/shared/agents/auth/types.py,sha256=tvcYZEwh0UpjEjgwMLuj8-h3AMSx_uQw-Hi504rHoqI,294
|
|
937
947
|
rasa/shared/agents/utils.py,sha256=Dux_STACmYlni-c4c8EpdBX9SmcFofaJI8prwsKlNeM,1011
|
|
938
948
|
rasa/shared/constants.py,sha256=HMHc0UKJKWpZYP98lDU7vk034gPunXoKzHXt_jxYoJA,13066
|
|
@@ -954,7 +964,7 @@ rasa/shared/core/flows/flows_yaml_schema.json,sha256=IifTzeXuB73gwD4lK7ibHNUS2E_
|
|
|
954
964
|
rasa/shared/core/flows/nlu_trigger.py,sha256=ujLXFo5WjIwtwRVEdxZkaE2fbd4KEmayeFPAd1mF26I,4352
|
|
955
965
|
rasa/shared/core/flows/steps/__init__.py,sha256=jvJp02o9_Wx-rZeQ3SYiLVMpO6ulS1yKuiiKg0ld_nE,655
|
|
956
966
|
rasa/shared/core/flows/steps/action.py,sha256=fRtNXLCK-r74tX3-rHyn_eKv7cRYRoNfEW2lCK0VdrQ,1920
|
|
957
|
-
rasa/shared/core/flows/steps/call.py,sha256=
|
|
967
|
+
rasa/shared/core/flows/steps/call.py,sha256=fRPQ5dY6Kl_338dJCYt3wTdLMeiLHkU880AottUprSo,4582
|
|
958
968
|
rasa/shared/core/flows/steps/collect.py,sha256=aEryTNsmSClZdp9wuDsWleEDQZ9A-cgSbR4tP818aBw,8622
|
|
959
969
|
rasa/shared/core/flows/steps/constants.py,sha256=DCxrEUGbJciBknHm-_t4tmcnH19IZKP-WYxqix9gm7M,132
|
|
960
970
|
rasa/shared/core/flows/steps/continuation.py,sha256=5Rzayr80FsgS4bAajuRObVvVcLqPEh9nxGbT2te85xY,1498
|
|
@@ -1098,7 +1108,7 @@ rasa/studio/results_logger.py,sha256=lwKROoQjzzJVnFoceLQ-z-5Hg35TfHo-8R4MDrMLYHY
|
|
|
1098
1108
|
rasa/studio/train.py,sha256=ogidFANyiaDmYgqBK5IaPwOUCYQpXpymKhU4jmnR6kY,4265
|
|
1099
1109
|
rasa/studio/upload.py,sha256=7_DzUICRUQwgi-dnExXzx4tp_ghqFa17fiuw2fx66h0,21778
|
|
1100
1110
|
rasa/studio/utils.py,sha256=WgPbmMcdb3yuZU36zxFqUkJwqi5ma7TZT4Y-mXYe54k,1429
|
|
1101
|
-
rasa/telemetry.py,sha256=
|
|
1111
|
+
rasa/telemetry.py,sha256=dg-e0Ejz0ucJ4dDYuOYIAGPjFKqT8hHUZfufg238HZ4,74344
|
|
1102
1112
|
rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1103
1113
|
rasa/tracing/config.py,sha256=OvN6ua7h1SaSQPvBXMdq3PsCwZZnXLyr3_AOcfapGNQ,14552
|
|
1104
1114
|
rasa/tracing/constants.py,sha256=oDjgQaO1_CtcJX3xleC4q4z-Ela2XLRHS1mwzOIRkis,4379
|
|
@@ -1145,10 +1155,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
|
|
|
1145
1155
|
rasa/utils/train_utils.py,sha256=LJO7mM6ptYvLMZr4HDl3fBkPHb7-BVFXuuZseh4Pp68,22409
|
|
1146
1156
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
1147
1157
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
1148
|
-
rasa/validator.py,sha256=
|
|
1149
|
-
rasa/version.py,sha256=
|
|
1150
|
-
rasa_pro-3.14.
|
|
1151
|
-
rasa_pro-3.14.
|
|
1152
|
-
rasa_pro-3.14.
|
|
1153
|
-
rasa_pro-3.14.
|
|
1154
|
-
rasa_pro-3.14.
|
|
1158
|
+
rasa/validator.py,sha256=nx2oNtPP1u3iOlmAROYigSdomniccNktgbyc9NzlniA,84834
|
|
1159
|
+
rasa/version.py,sha256=_vV7weCbN4pf7BPluC_QRmFfFjeocywQmqQTj8gKK98,120
|
|
1160
|
+
rasa_pro-3.14.0rc3.dist-info/METADATA,sha256=tC_jg06_YHjqOVCbbGbAPxnOkak_VfVhwrIzWsijH4o,12474
|
|
1161
|
+
rasa_pro-3.14.0rc3.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
1162
|
+
rasa_pro-3.14.0rc3.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
1163
|
+
rasa_pro-3.14.0rc3.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
1164
|
+
rasa_pro-3.14.0rc3.dist-info/RECORD,,
|