rasa-pro 3.14.0rc2__py3-none-any.whl → 3.14.0rc4__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/protocol/mcp/mcp_base_agent.py +15 -1
- rasa/agents/utils.py +27 -5
- rasa/agents/validation.py +64 -13
- rasa/api.py +1 -2
- rasa/builder/copilot/constants.py +4 -0
- rasa/builder/copilot/copilot.py +37 -1
- rasa/builder/copilot/copilot_templated_message_provider.py +23 -0
- rasa/builder/copilot/models.py +43 -49
- rasa/builder/copilot/prompts/copilot_system_prompt.jinja2 +33 -12
- rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2 +59 -29
- rasa/builder/copilot/telemetry.py +8 -0
- rasa/builder/copilot/templated_messages/copilot_templated_responses.yml +3 -0
- rasa/builder/copilot/templated_messages/copilot_welcome_messages.yml +56 -0
- rasa/builder/jobs.py +162 -5
- rasa/builder/models.py +3 -0
- rasa/builder/service.py +1 -0
- 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/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 +9 -2
- rasa/core/available_agents.py +65 -55
- rasa/core/config/available_endpoints.py +6 -3
- rasa/core/config/configuration.py +36 -1
- rasa/core/policies/flows/agent_executor.py +16 -8
- 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/patterns/default_flows_for_patterns.yml +22 -20
- rasa/dialogue_understanding_test/du_test_runner.py +2 -2
- rasa/e2e_test/e2e_test_runner.py +2 -2
- rasa/engine/validation.py +6 -2
- rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py +10 -4
- rasa/shared/agents/auth/constants.py +1 -0
- rasa/shared/agents/auth/utils.py +85 -0
- rasa/shared/constants.py +3 -0
- rasa/shared/core/flows/steps/call.py +2 -2
- rasa/shared/utils/llm.py +33 -0
- rasa/telemetry.py +3 -3
- rasa/utils/pypred.py +7 -0
- rasa/validator.py +127 -2
- rasa/version.py +1 -1
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/METADATA +19 -7
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/RECORD +81 -71
- 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.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/NOTICE +0 -0
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/WHEEL +0 -0
- {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc4.dist-info}/entry_points.txt +0 -0
rasa/validator.py
CHANGED
|
@@ -4,15 +4,16 @@ import string
|
|
|
4
4
|
from collections import defaultdict
|
|
5
5
|
from typing import Any, Dict, List, Optional, Set, Text, Tuple
|
|
6
6
|
|
|
7
|
+
import jinja2.exceptions
|
|
7
8
|
import structlog
|
|
8
9
|
from jinja2 import Template
|
|
9
10
|
from pypred.ast import CompareOperator, Literal, NegateOperator
|
|
10
11
|
|
|
11
12
|
import rasa.core.training.story_conflict
|
|
12
13
|
import rasa.shared.nlu.constants
|
|
13
|
-
|
|
14
|
-
import rasa.shared.utils.io
|
|
14
|
+
from rasa.agents.validation import validate_agent_names_not_conflicting_with_flows
|
|
15
15
|
from rasa.core.channels import UserMessage
|
|
16
|
+
from rasa.core.config.configuration import Configuration
|
|
16
17
|
from rasa.dialogue_understanding.stack.frames import PatternFlowStackFrame
|
|
17
18
|
from rasa.engine.language import Language
|
|
18
19
|
from rasa.exceptions import ValidationError
|
|
@@ -1288,6 +1289,41 @@ class Validator:
|
|
|
1288
1289
|
|
|
1289
1290
|
return all_good
|
|
1290
1291
|
|
|
1292
|
+
def validate_agent_flow_conflicts(self, sub_agents_path: str) -> bool:
|
|
1293
|
+
"""Validates that agent names don't conflict with flow names.
|
|
1294
|
+
|
|
1295
|
+
Args:
|
|
1296
|
+
sub_agents_path: Path to the sub-agents directory.
|
|
1297
|
+
|
|
1298
|
+
Returns:
|
|
1299
|
+
True if validation passes, False otherwise.
|
|
1300
|
+
"""
|
|
1301
|
+
if self.flows.is_empty():
|
|
1302
|
+
return True
|
|
1303
|
+
|
|
1304
|
+
try:
|
|
1305
|
+
configuration = Configuration.get_instance()
|
|
1306
|
+
available_agents = configuration.available_agents
|
|
1307
|
+
flow_names = {flow.id for flow in self.flows.underlying_flows}
|
|
1308
|
+
|
|
1309
|
+
structlogger.debug(
|
|
1310
|
+
"validator.agent_flow_conflicts.debug",
|
|
1311
|
+
event_info="Checking conflicts between agents and flows",
|
|
1312
|
+
)
|
|
1313
|
+
|
|
1314
|
+
validate_agent_names_not_conflicting_with_flows(
|
|
1315
|
+
available_agents.agents, flow_names
|
|
1316
|
+
)
|
|
1317
|
+
return True
|
|
1318
|
+
except Exception as e:
|
|
1319
|
+
structlogger.error(
|
|
1320
|
+
"validator.agent_flow_conflicts",
|
|
1321
|
+
sub_agents_path=sub_agents_path,
|
|
1322
|
+
error=str(e),
|
|
1323
|
+
event_info=f"Agent-flow name conflict validation failed: {e}",
|
|
1324
|
+
)
|
|
1325
|
+
return False
|
|
1326
|
+
|
|
1291
1327
|
def _get_response_translation_warnings(self) -> list:
|
|
1292
1328
|
"""Collect warnings for responses missing translations.
|
|
1293
1329
|
|
|
@@ -1940,6 +1976,95 @@ class Validator:
|
|
|
1940
1976
|
|
|
1941
1977
|
return all_good
|
|
1942
1978
|
|
|
1979
|
+
def verify_prompt_templates(self) -> bool:
|
|
1980
|
+
"""Verify that all prompt templates have valid Jinja2 syntax.
|
|
1981
|
+
|
|
1982
|
+
Returns:
|
|
1983
|
+
True if all templates are valid, False otherwise.
|
|
1984
|
+
"""
|
|
1985
|
+
all_good = True
|
|
1986
|
+
|
|
1987
|
+
# Check the components in the pipeline and policies for prompt templates
|
|
1988
|
+
pipeline = self.config.get(CONFIG_PIPELINE_KEY, [])
|
|
1989
|
+
for component in pipeline:
|
|
1990
|
+
if isinstance(component, dict):
|
|
1991
|
+
component_name = component.get("name", "")
|
|
1992
|
+
prompt_template = component.get("prompt_template")
|
|
1993
|
+
if prompt_template:
|
|
1994
|
+
all_good = (
|
|
1995
|
+
self._validate_template_file(
|
|
1996
|
+
prompt_template, component_name, "pipeline component"
|
|
1997
|
+
)
|
|
1998
|
+
and all_good
|
|
1999
|
+
)
|
|
2000
|
+
|
|
2001
|
+
# Check policies for prompt templates
|
|
2002
|
+
policies = self.config.get("policies") or []
|
|
2003
|
+
for policy in policies:
|
|
2004
|
+
if isinstance(policy, dict):
|
|
2005
|
+
policy_name = policy.get("name", "")
|
|
2006
|
+
prompt_template = policy.get("prompt_template")
|
|
2007
|
+
if prompt_template:
|
|
2008
|
+
all_good = (
|
|
2009
|
+
self._validate_template_file(
|
|
2010
|
+
prompt_template, policy_name, "policy"
|
|
2011
|
+
)
|
|
2012
|
+
and all_good
|
|
2013
|
+
)
|
|
2014
|
+
|
|
2015
|
+
return all_good
|
|
2016
|
+
|
|
2017
|
+
def _validate_template_file(
|
|
2018
|
+
self, prompt_template: str, component_name: str, component_type: str
|
|
2019
|
+
) -> bool:
|
|
2020
|
+
"""Validate a single prompt template file.
|
|
2021
|
+
|
|
2022
|
+
Args:
|
|
2023
|
+
prompt_template: The template file path to validate
|
|
2024
|
+
component_name: Name of the component using the template
|
|
2025
|
+
component_type: Type of component (e.g., "policy", "pipeline component")
|
|
2026
|
+
|
|
2027
|
+
Returns:
|
|
2028
|
+
True if template is valid, False otherwise.
|
|
2029
|
+
"""
|
|
2030
|
+
try:
|
|
2031
|
+
# Use a simple default template, as we're assuming
|
|
2032
|
+
# that the default templates are valid
|
|
2033
|
+
default_template = "{{ content }}"
|
|
2034
|
+
template_content = rasa.shared.utils.llm.get_prompt_template(
|
|
2035
|
+
prompt_template,
|
|
2036
|
+
default_template,
|
|
2037
|
+
log_source_component=f"validator.{component_name}",
|
|
2038
|
+
log_source_method="init",
|
|
2039
|
+
)
|
|
2040
|
+
|
|
2041
|
+
# Validate Jinja2 syntax using the shared validation function
|
|
2042
|
+
rasa.shared.utils.llm.validate_jinja2_template(template_content)
|
|
2043
|
+
return True
|
|
2044
|
+
except jinja2.exceptions.TemplateSyntaxError as e:
|
|
2045
|
+
structlogger.error(
|
|
2046
|
+
"validator.verify_prompt_templates.syntax_error",
|
|
2047
|
+
component=component_name,
|
|
2048
|
+
component_type=component_type,
|
|
2049
|
+
event_info=(
|
|
2050
|
+
f"Invalid Jinja2 template syntax in file {prompt_template} "
|
|
2051
|
+
f"at line {e.lineno}: {e.message}"
|
|
2052
|
+
),
|
|
2053
|
+
error=str(e),
|
|
2054
|
+
template_line=e.lineno,
|
|
2055
|
+
template_file=prompt_template,
|
|
2056
|
+
)
|
|
2057
|
+
return False
|
|
2058
|
+
except Exception as e:
|
|
2059
|
+
structlogger.error(
|
|
2060
|
+
"validator.verify_prompt_templates.error",
|
|
2061
|
+
component=component_name,
|
|
2062
|
+
component_type=component_type,
|
|
2063
|
+
event_info=f"Error validating prompt template: {e}",
|
|
2064
|
+
error=str(e),
|
|
2065
|
+
)
|
|
2066
|
+
return False
|
|
2067
|
+
|
|
1943
2068
|
def validate_conditional_response_variation_predicates(self) -> bool:
|
|
1944
2069
|
"""Validate the conditional response variation predicates."""
|
|
1945
2070
|
context = {SLOTS: {slot.name: None for slot in self.domain.slots}}
|
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.0rc4
|
|
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
|
|
@@ -29,19 +29,19 @@ Requires-Dist: CacheControl (>=0.14.2,<0.15.0)
|
|
|
29
29
|
Requires-Dist: PyJWT[crypto] (>=2.8.0,<3.0.0)
|
|
30
30
|
Requires-Dist: SQLAlchemy (>=2.0.42,<2.1.0)
|
|
31
31
|
Requires-Dist: a2a-sdk (>=0.3.4,<0.4.0)
|
|
32
|
-
Requires-Dist: absl-py (>=2.
|
|
32
|
+
Requires-Dist: absl-py (>=2.3.1,<2.4)
|
|
33
33
|
Requires-Dist: aio-pika (>=8.2.3,<9.4.4)
|
|
34
34
|
Requires-Dist: aiogram (>=3.22.0,<3.23.0) ; extra == "full" or extra == "channels"
|
|
35
35
|
Requires-Dist: aiohttp (>=3.10,<3.11)
|
|
36
36
|
Requires-Dist: aioshutil (>=1.5,<1.6)
|
|
37
|
-
Requires-Dist: apscheduler (>=3.
|
|
37
|
+
Requires-Dist: apscheduler (>=3.11,<3.12)
|
|
38
38
|
Requires-Dist: attrs (>=23.1,<25.0)
|
|
39
39
|
Requires-Dist: audioop-lts (>=0.2.2,<0.3.0) ; python_version >= "3.13"
|
|
40
40
|
Requires-Dist: aws-msk-iam-sasl-signer-python (>=1.0.2,<1.1.0)
|
|
41
41
|
Requires-Dist: azure-identity (>=1.24.0,<1.25.0)
|
|
42
42
|
Requires-Dist: azure-storage-blob (>=12.26.0,<12.27.0)
|
|
43
43
|
Requires-Dist: boto3 (>=1.40.21,<1.41.0)
|
|
44
|
-
Requires-Dist: certifi (>=
|
|
44
|
+
Requires-Dist: certifi (>=2025.10.5,<2025.11.0)
|
|
45
45
|
Requires-Dist: colorama (>=0.4.6,<0.5.0) ; sys_platform == "win32"
|
|
46
46
|
Requires-Dist: colorclass (>=2.2,<2.3)
|
|
47
47
|
Requires-Dist: coloredlogs (>=15,<16)
|
|
@@ -68,6 +68,7 @@ Requires-Dist: jinja2 (>=3.1.6,<3.2.0)
|
|
|
68
68
|
Requires-Dist: jsonpatch (>=1.33,<2.0)
|
|
69
69
|
Requires-Dist: jsonpickle (>=3.3.0,<3.4)
|
|
70
70
|
Requires-Dist: jsonschema (>=4.22)
|
|
71
|
+
Requires-Dist: keras (>=3.11.0)
|
|
71
72
|
Requires-Dist: langchain (>=0.3.27,<0.4.0)
|
|
72
73
|
Requires-Dist: langchain-community (>=0.3.29,<0.4.0)
|
|
73
74
|
Requires-Dist: langcodes (>=3.5.0,<4.0.0)
|
|
@@ -105,13 +106,13 @@ Requires-Dist: python-socketio (>=5.13,<6)
|
|
|
105
106
|
Requires-Dist: pytz (>=2022.7.1,<2023.0)
|
|
106
107
|
Requires-Dist: pyyaml (>=6.0.2,<6.1.0)
|
|
107
108
|
Requires-Dist: qdrant-client (>=1.9.1,<1.10.0)
|
|
108
|
-
Requires-Dist: questionary (>=1.
|
|
109
|
+
Requires-Dist: questionary (>=2.1.1,<2.2.0)
|
|
109
110
|
Requires-Dist: randomname (>=0.2.1,<0.3.0)
|
|
110
111
|
Requires-Dist: rasa-sdk (==3.14.0rc1)
|
|
111
112
|
Requires-Dist: redis (>=4.6.0,<6.0)
|
|
112
113
|
Requires-Dist: regex (>=2024.7.24,<2024.8.0)
|
|
113
114
|
Requires-Dist: requests (>=2.32.5,<2.33.0)
|
|
114
|
-
Requires-Dist: rich (>=
|
|
115
|
+
Requires-Dist: rich (>=14.1.0,<14.2.0)
|
|
115
116
|
Requires-Dist: rocketchat_API (>=1.32.0,<1.33.0) ; extra == "full" or extra == "channels"
|
|
116
117
|
Requires-Dist: ruamel.yaml (>=0.17.21,<0.17.22)
|
|
117
118
|
Requires-Dist: safetensors (>=0.4.5,<0.5.0)
|
|
@@ -181,7 +182,7 @@ Rasa is a framework for building scalable, dynamic conversational AI assistants
|
|
|
181
182
|
- **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.
|
|
182
183
|
- **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.
|
|
183
184
|
- **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.
|
|
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.
|
|
185
|
+
- **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.
|
|
185
186
|
|
|
186
187
|
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.
|
|
187
188
|
|
|
@@ -198,3 +199,14 @@ Check out our
|
|
|
198
199
|
|
|
199
200
|
for more. Also feel free to reach out to us on the [Rasa forum](https://forum.rasa.com/).
|
|
200
201
|
|
|
202
|
+
## Secrets Management
|
|
203
|
+
|
|
204
|
+
This project uses a multi-layered approach to secrets management:
|
|
205
|
+
|
|
206
|
+
- **Pulumi Secrets**: Primary secrets management through Pulumi's built-in configuration system (`pulumi.Config()`)
|
|
207
|
+
- **Kubernetes Secrets**: Application secrets are stored as Kubernetes secrets in the cluster
|
|
208
|
+
- **Vault Integration**: Optional HashiCorp Vault support for enterprise-grade secret management
|
|
209
|
+
- **AWS Secrets Manager**: Used selectively for specific services (e.g., database credentials in integration tests)
|
|
210
|
+
|
|
211
|
+
For infrastructure deployment, secrets are managed through Pulumi configuration files and environment variables, providing secure and flexible secret management across different deployment environments.
|
|
212
|
+
|
|
@@ -10,9 +10,9 @@ 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
|
-
rasa/agents/protocol/mcp/mcp_base_agent.py,sha256=
|
|
15
|
+
rasa/agents/protocol/mcp/mcp_base_agent.py,sha256=T8pBxSPFsy9p-N7TNJ4Ow9N-DxHu3nTRN33tNm8QYNg,29598
|
|
16
16
|
rasa/agents/protocol/mcp/mcp_open_agent.py,sha256=2lcGoNl_Qpqot-iw22MetH4GjAts8F9LHRt9uTdQZKY,13362
|
|
17
17
|
rasa/agents/protocol/mcp/mcp_task_agent.py,sha256=MewMbBUg40P9WaHB7aZQr-e9Vd2zFF1dL8NRY-j94Lw,21809
|
|
18
18
|
rasa/agents/schemas/__init__.py,sha256=ubFluIAybA-uGoUMOYQOVrHfqK0Ol4SExJC0lEs4tBA,422
|
|
@@ -23,29 +23,30 @@ 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=_HHFEBD7wngwsQCDw-AAplQdOBuQu7VCroif4unXlIk,19515
|
|
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=WLhmiFnaNMt-b4-IO0sujzDos3CdQM3Jlf03Nz88jnA,1501
|
|
35
|
+
rasa/builder/copilot/copilot.py,sha256=Q8vqBYeyZcSw2LJznjZAn86qPq3poyB4iTJYmYte44A,21106
|
|
36
36
|
rasa/builder/copilot/copilot_response_handler.py,sha256=teozaZFKR-XADdK2Nvkqu3wp48Bg1iqB7VT8rn5HcI4,20257
|
|
37
|
-
rasa/builder/copilot/copilot_templated_message_provider.py,sha256=
|
|
37
|
+
rasa/builder/copilot/copilot_templated_message_provider.py,sha256=BjsyYt02cl1o4p0MdmAw2kwiHG4-LFIhp0iU8dHCzrc,2392
|
|
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=
|
|
41
|
+
rasa/builder/copilot/prompts/copilot_system_prompt.jinja2,sha256=b-ztkMwDu1xGO1BaQNxJoOZpMTf7UDP-MTl5c9Gkps4,31647
|
|
42
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=
|
|
43
|
+
rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2,sha256=vunStm6gCpAr41IE7awmKSl0CQL-U2E3csCacnzpTRE,2670
|
|
44
44
|
rasa/builder/copilot/signing.py,sha256=z_eAGFMM1Mk009ambXA-mjJpM8KQRPaNHECpH2A2f-U,10011
|
|
45
|
-
rasa/builder/copilot/telemetry.py,sha256=
|
|
45
|
+
rasa/builder/copilot/telemetry.py,sha256=hzZX6H-3a9OojTWqsDpckb37b_BvXa0JLJ1S7OVF2IE,8676
|
|
46
46
|
rasa/builder/copilot/templated_messages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
rasa/builder/copilot/templated_messages/copilot_internal_messages_templates.yml,sha256=dqKDO-25_srbDAVBoq0asdnPD95o8xcQ3eWIGyf0D2I,746
|
|
48
|
-
rasa/builder/copilot/templated_messages/copilot_templated_responses.yml,sha256=
|
|
48
|
+
rasa/builder/copilot/templated_messages/copilot_templated_responses.yml,sha256=9kufWSRFx7L-Cr9-X7y1YTlcfuUpfzE3B_M0G9J3ads,2014
|
|
49
|
+
rasa/builder/copilot/templated_messages/copilot_welcome_messages.yml,sha256=tBWJpvmhZUrSSBC1XTm-C40jRMsTqlcIdZaTW9Sfrdc,2051
|
|
49
50
|
rasa/builder/document_retrieval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
51
|
rasa/builder/document_retrieval/constants.py,sha256=bqG88KtCqxXgMFeiEFEDV5P1fe0J_hAg0FjMnXpatQk,356
|
|
51
52
|
rasa/builder/document_retrieval/inkeep-rag-response-schema.json,sha256=ePVbGo6u6sm_CPS8EeECX3UayIvcfUe6yTy2gtexKlk,1498
|
|
@@ -62,14 +63,14 @@ rasa/builder/guardrails/policy_checker.py,sha256=06zIeI5z4gMlRxsp6iazk05L4r2ZSRC
|
|
|
62
63
|
rasa/builder/guardrails/store.py,sha256=-mJdsCnHgSI08uPnPwZRObIyRV9u98zcpQ5QkeHdVK0,7660
|
|
63
64
|
rasa/builder/guardrails/utils.py,sha256=3B-ybAkIYhpx7G1HSEnMKW8NW_bY4UCg3w73e7aYogw,3027
|
|
64
65
|
rasa/builder/job_manager.py,sha256=eQ5HRff-U4Cj3joHKqpjDcfCMWj4nz4D_oQmoozpwPM,2507
|
|
65
|
-
rasa/builder/jobs.py,sha256=
|
|
66
|
+
rasa/builder/jobs.py,sha256=R-PKwSOmAh3vV6spuMLMLg_DFHvy7V1-EBUzMQZW7HE,20626
|
|
66
67
|
rasa/builder/llm_service.py,sha256=5yN4d7W1DYJIk4XLNz7Uvj2ZPp6RzdHoZ7tGh4H9ZVY,9974
|
|
67
68
|
rasa/builder/logging_utils.py,sha256=E1YZs5BdHT9TrnoA2758sFMD1Xw7e5mnAtqWSAZs1gk,9296
|
|
68
69
|
rasa/builder/main.py,sha256=hSDkcaV_gCYss9rfXjqM1QeBjEIhmRrACycoFDHKHEE,7597
|
|
69
|
-
rasa/builder/models.py,sha256=
|
|
70
|
+
rasa/builder/models.py,sha256=3dQP7cyXYinQ9RZEP6O1WPKtfc8YH_pgOus-jOYfSkg,6617
|
|
70
71
|
rasa/builder/project_generator.py,sha256=wD9I_paxaNWwqwjcg570AuvaeKk8TfopTKGapHTKGeA,18391
|
|
71
72
|
rasa/builder/project_info.py,sha256=ZBwFCigZLSo1RBMhlZDYBoVl2G-9OnhRrYxdMWHn6S4,2093
|
|
72
|
-
rasa/builder/service.py,sha256=
|
|
73
|
+
rasa/builder/service.py,sha256=pB_PCUQTxYKvzrE__pg0AnQNmTCkl3p8OdLPQ9xtSq4,49057
|
|
73
74
|
rasa/builder/shared/tracker_context.py,sha256=2P-DsWjWEkZ32dqrx6s4zVxdo0_mokZNrU3LYisu6MY,7691
|
|
74
75
|
rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
|
|
75
76
|
rasa/builder/template_cache.py,sha256=0ms5P4zvAtio9AhwKbazUwaYZQZxa8DToC3ieLi-UZ8,2350
|
|
@@ -89,11 +90,11 @@ rasa/cli/arguments/train.py,sha256=Fu2KAVddvEjQ_aQ6O9zgKKfKsSGKyPEKiZpvlJIOKYQ,9
|
|
|
89
90
|
rasa/cli/arguments/visualize.py,sha256=e8yhvc6Jfy1JKSOIVFV5mY5QPowkf0o1kt6IGujVxcY,861
|
|
90
91
|
rasa/cli/arguments/x.py,sha256=_23reqNwiit2VoCqmv23kQZudA3iZVXaBV_zEXJjV6w,1028
|
|
91
92
|
rasa/cli/data.py,sha256=GHUnCobXUvx4NcXNz_SOkEQpHIIdqTTIOlT2YXnsfqo,13498
|
|
92
|
-
rasa/cli/dialogue_understanding_test.py,sha256=
|
|
93
|
-
rasa/cli/e2e_test.py,sha256=
|
|
93
|
+
rasa/cli/dialogue_understanding_test.py,sha256=j7e5ZEKOOJKEBLbwamGTdg2rTUTYP5SCm7mohwlXoeU,13676
|
|
94
|
+
rasa/cli/e2e_test.py,sha256=8KTdM_8AyP9-eWXXYvuLAom2bN6KGOaS2b_usP6G_EU,8227
|
|
94
95
|
rasa/cli/evaluate.py,sha256=HH5OiPSRB6n80DhZonjQOvaDlAlgaxaoecDZWMnuRJ8,8019
|
|
95
96
|
rasa/cli/export.py,sha256=VqNt9ycF1z-UHbz_iWHxjHsq0ROvj6nOcHBQz1W3MBQ,8426
|
|
96
|
-
rasa/cli/inspect.py,sha256=
|
|
97
|
+
rasa/cli/inspect.py,sha256=nEY9G4ihN3P-p4ckTQmt3YiI_ZBZ1VqBRE_38fkEl7s,3965
|
|
97
98
|
rasa/cli/interactive.py,sha256=kQMH743AbCvwsGASBORQHgVeaaTvHIIbEbfZWfvhGQU,6166
|
|
98
99
|
rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
|
|
99
100
|
rasa/cli/llm_fine_tuning.py,sha256=VqblDb-raZQ9YZGU5hrtg4TTNWWZbTwfp35LtWmLELo,15152
|
|
@@ -130,6 +131,13 @@ rasa/cli/project_templates/basic/domain/system/patterns/pattern_cannot_handle.ym
|
|
|
130
131
|
rasa/cli/project_templates/basic/domain/system/patterns/pattern_session_start.yml,sha256=ojugI3laqH-iL-0Rlt170nTgJuH-uifY8IIJ9My0FNI,466
|
|
131
132
|
rasa/cli/project_templates/basic/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
|
|
132
133
|
rasa/cli/project_templates/basic/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Djna_YB2PWSQxvzOduCnP7btgLihWZ4eLflR9WYwexo,1971
|
|
134
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/feedback.yml,sha256=Ffs4bgs21Yav_BdiOjLKtxYwhQJt_bzI_Pci_IgvLrI,1563
|
|
135
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/goodbye.yml,sha256=xWPgvS0zB7cMvHuYlyPWzWbSIcW5EmkPrlJGTRpMcH8,229
|
|
136
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
137
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/help.yml,sha256=YNDdaxzBtGvrGo1unznM2Hp-PjuxG11_-9wOBCA4pOA,182
|
|
138
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/human_handoff.yml,sha256=NipHqsyTbAUbiTgY1pqc0rK9Z-I4Pc08fFZFYiXe8DY,1488
|
|
139
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/patterns.yml,sha256=7qlK5ToQsl83dTprAQQZO1qTNe3IxxT85PfXI_g2Mrk,892
|
|
140
|
+
rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/show_faqs.yml,sha256=vyNMEc9nZvtY_oSunkIvEv73kGuDfFWmU88HtBkjdu8,197
|
|
133
141
|
rasa/cli/project_templates/default/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
142
|
rasa/cli/project_templates/default/actions/action_template.py,sha256=BoiGE6tHbUl4WAEpf1sYTsQRV4_aZiTk4cLFEpk6QVY,755
|
|
135
143
|
rasa/cli/project_templates/default/actions/add_contact.py,sha256=bvXsHnHquhEJxSKB0sNYouePRTdL7gLyH3ftEknbI68,1032
|
|
@@ -248,16 +256,16 @@ rasa/cli/project_templates/finance/domain/transfers/shared.yml,sha256=_nSMfwLyLL
|
|
|
248
256
|
rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml,sha256=dGLOVxvPrNZd6HtCS59CM6ntaYiGgGoiwts_p46bQzI,6765
|
|
249
257
|
rasa/cli/project_templates/finance/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
|
|
250
258
|
rasa/cli/project_templates/finance/prompts/rephraser_demo_personality_prompt.jinja2,sha256=Bp2BzhWIFUozKpxpof6YG36enwEXpQIZ29tBdZz6-H0,1975
|
|
251
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/check_balance.yml,sha256=VwXa341lWYiqkaiMzH4ZROICDbVuDPdkYlN-rrHgNUo,265
|
|
252
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/accounts/download_statements.yml,sha256=0WZcTuUJn0wqEwMNwqL5CczeaqKLs09TT5MLvyhwIiU,1449
|
|
253
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/cards/block_card.yml,sha256=ToK2dS3WA8OSySORrI7adocFl4WmxMZ_bk404dDqbl0,1802
|
|
254
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
255
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/feedback.yml,sha256=9HwX0ksPH5lZRjCB2qkiDa2qvP3CN0r6CcR0s8sZZGk,1552
|
|
256
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
257
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
258
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
259
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/general/patterns.yml,sha256=j77lAbAhg2n0exLCQgstOB7JDfhNE0VrKY0PjJf62hQ,1105
|
|
260
|
-
rasa/cli/project_templates/finance/tests/e2e_test_cases/transfers/transfer_money.yml,sha256=SZavDCqTgpbXQVtVQR1ayrDVwm7PFRFrsTzMvD10kls,1908
|
|
259
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/accounts/check_balance.yml,sha256=VwXa341lWYiqkaiMzH4ZROICDbVuDPdkYlN-rrHgNUo,265
|
|
260
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/accounts/download_statements.yml,sha256=0WZcTuUJn0wqEwMNwqL5CczeaqKLs09TT5MLvyhwIiU,1449
|
|
261
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/cards/block_card.yml,sha256=ToK2dS3WA8OSySORrI7adocFl4WmxMZ_bk404dDqbl0,1802
|
|
262
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
263
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/feedback.yml,sha256=9HwX0ksPH5lZRjCB2qkiDa2qvP3CN0r6CcR0s8sZZGk,1552
|
|
264
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
265
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
266
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
267
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/general/patterns.yml,sha256=j77lAbAhg2n0exLCQgstOB7JDfhNE0VrKY0PjJf62hQ,1105
|
|
268
|
+
rasa/cli/project_templates/finance/tests/e2e_test_cases/without_stub/transfers/transfer_money.yml,sha256=SZavDCqTgpbXQVtVQR1ayrDVwm7PFRFrsTzMvD10kls,1908
|
|
261
269
|
rasa/cli/project_templates/telco/README.md,sha256=KyIlPzYqXohBYN2_gErtN1DcE09B1fXsFU443DeWFWQ,1270
|
|
262
270
|
rasa/cli/project_templates/telco/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
271
|
rasa/cli/project_templates/telco/actions/actions.md,sha256=91irqUhAx4u3iVAL25pHWwxBCpAnjK0xPKVFVvLQEtw,809
|
|
@@ -283,7 +291,7 @@ rasa/cli/project_templates/telco/data/general/human_handoff.yml,sha256=p8F2L5o3Q
|
|
|
283
291
|
rasa/cli/project_templates/telco/data/general/patterns.yml,sha256=7hI6DdDHWNF3OHhtOUiACnawPKN6GcC87HQJnmaTAOo,755
|
|
284
292
|
rasa/cli/project_templates/telco/data/network/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
|
|
285
293
|
rasa/cli/project_templates/telco/data/network/flow_reset_router.yml,sha256=IFp8WSVclHQKQlM7dJphKBtRcIGXO_l4CmvTvvuGG8A,258
|
|
286
|
-
rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml,sha256=
|
|
294
|
+
rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml,sha256=zVjYVSFgNePCGdd1wLydQQDqsXlVFGMyPg24mlW_2rU,3995
|
|
287
295
|
rasa/cli/project_templates/telco/docs/docs.md,sha256=oW7M2DXeC6OjhckW9CL6hAA5AqxT1x13fRoFWIRZJRU,521
|
|
288
296
|
rasa/cli/project_templates/telco/docs/network/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
|
|
289
297
|
rasa/cli/project_templates/telco/docs/network/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
|
|
@@ -299,18 +307,19 @@ rasa/cli/project_templates/telco/domain/general/patterns.yml,sha256=YmJ2uBoSfh-K
|
|
|
299
307
|
rasa/cli/project_templates/telco/domain/network/reboot_router.yml,sha256=lh-lfRUrO6C6jw2iqJk2-qC217JB2q5DPLS7PjLFhsw,441
|
|
300
308
|
rasa/cli/project_templates/telco/domain/network/reset_router.yml,sha256=x184d8fLHakZDswzi8_sRxuXheIwm4rJCYNe2j3qLMk,413
|
|
301
309
|
rasa/cli/project_templates/telco/domain/network/run_speed_test.yml,sha256=SxzdIooULal3BmsCAfDSdwKRbtV3PyXtSEOUTWRWS3c,493
|
|
302
|
-
rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml,sha256=
|
|
310
|
+
rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml,sha256=2eZhR_maxhFxSi2cEp93ee4y8CleaqIBhbWGEWm6H9k,2760
|
|
303
311
|
rasa/cli/project_templates/telco/domain/shared.yml,sha256=TYe6yeIITCVzxvp-LBE9n38TErP4h37SB4jShpjEVuM,3399
|
|
304
312
|
rasa/cli/project_templates/telco/endpoints.yml,sha256=yL0ifaAMFHVc9OmWKFEYbnhIZv8edQOpN1lGDTBEa5Y,2263
|
|
305
313
|
rasa/cli/project_templates/telco/prompts/rephraser_demo_personality_prompt.jinja2,sha256=H56ei41Sqxi94QCJMI8OoY1_fftTgUiOSDMhP3sRy-8,1973
|
|
306
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
307
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
308
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
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/general/
|
|
312
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/general/
|
|
313
|
-
rasa/cli/project_templates/telco/tests/e2e_test_cases/
|
|
314
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_not_slow.yml,sha256=R30Yo2li_ot20g2QMKXOcjwAaGpgYCt22cTKluGvPKg,1081
|
|
315
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_slow.yml,sha256=NE2b_KYJUF_N0ey-3bKWOlAbMeht7Du4F7F6cn7sP7E,1659
|
|
316
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/billing/understand_bill.yml,sha256=WKB1QQs2EMU2r_-LVrtwT053kg4i5Hqwr8s1wrvqBMI,2393
|
|
317
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
|
|
318
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/feedback.yml,sha256=z0YsRGeYRMJp3-Sz4g3eyGy4vXGrVPuzwOXRkxAaQZc,1553
|
|
319
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
|
|
320
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
|
|
321
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
|
|
322
|
+
rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/patterns.yml,sha256=hS_0Ri3FHHpAS783xWydYVp_YpE57nO1hd4WtjqJ6Ig,1461
|
|
314
323
|
rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
324
|
rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
|
|
316
325
|
rasa/cli/project_templates/tutorial/config.yml,sha256=jSoFhtr8hA-CFb8g0PaJHwpU0YKsmHSen-E1FZ7dyeE,267
|
|
@@ -319,9 +328,9 @@ rasa/cli/project_templates/tutorial/data/flows.yml,sha256=mTzRicdj-Pbb95Hi3mhno4
|
|
|
319
328
|
rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHNwKFRPlC1wHBC9im0KrLgl7Qc,464
|
|
320
329
|
rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
|
|
321
330
|
rasa/cli/project_templates/tutorial/endpoints.yml,sha256=ZZfchpZLo5MObU5JVXPqBi8KrKe8gzsZskSDAjpfS9E,1788
|
|
322
|
-
rasa/cli/run.py,sha256=
|
|
331
|
+
rasa/cli/run.py,sha256=0V2JfLKeVZ8y8kkUBK3v0gkoEBRfVS0JubxyiZ5e4TM,4451
|
|
323
332
|
rasa/cli/scaffold.py,sha256=dqqOD6ZxvwooINuooDQaT9HBzlCyhBZWv_vG3szMk4A,9614
|
|
324
|
-
rasa/cli/shell.py,sha256=
|
|
333
|
+
rasa/cli/shell.py,sha256=71H-Le2kFBuZxoSY-DaqxxohJBSAI5wH5P7KNvBpZLI,4940
|
|
325
334
|
rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
335
|
rasa/cli/studio/download.py,sha256=5uLdnW60JQ1NkUcJfK_be2pKjVOtYzCCjNAQpfGkYnM,1163
|
|
327
336
|
rasa/cli/studio/link.py,sha256=rrup2dUGef6yCC-3jTDiK-2pEspcBnl-61guhVJdmGU,1059
|
|
@@ -332,10 +341,10 @@ rasa/cli/studio/train.py,sha256=R5TuZztfeBwvv83Q3VpdaHtK1oo5zdt6ImbZqfvHQxc,1485
|
|
|
332
341
|
rasa/cli/studio/upload.py,sha256=9j6-OC0uSa1decsjbIrHk952sIF_NZPnIYZHvWLOy-w,1695
|
|
333
342
|
rasa/cli/telemetry.py,sha256=mNMMbcgnNPZzeF1k-khN-7lAQFnkFx75VBwtnPfPI6k,3538
|
|
334
343
|
rasa/cli/test.py,sha256=HOByA0RQCupaPvmoPYzUCBcJLJnakT1uRrqxZLewm1Y,9834
|
|
335
|
-
rasa/cli/train.py,sha256=
|
|
344
|
+
rasa/cli/train.py,sha256=tJ4e3I0nJLUosnZPJmF1_msfV9usnB7b8WMsBBB3Rwk,10208
|
|
336
345
|
rasa/cli/utils.py,sha256=BpMNV6Cyo0bfJ-jnMXgqVCgfa0BFvV7HkbmtA2ZjXhM,4155
|
|
337
346
|
rasa/cli/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
|
-
rasa/cli/validation/bot_config.py,sha256=
|
|
347
|
+
rasa/cli/validation/bot_config.py,sha256=RVzTWokWIv36y9kJUOFGYZUUJq5nR75vVt0j6izC240,8488
|
|
339
348
|
rasa/cli/validation/config_path_validation.py,sha256=ME3BQ5KwJbLl7igDTvoegIuFLybCphKkxsKHvJ3nYiQ,8424
|
|
340
349
|
rasa/cli/visualize.py,sha256=YmRAATAfxHpgE8_PknGyM-oIujwICNzVftTzz6iLNNc,1256
|
|
341
350
|
rasa/cli/x.py,sha256=S7MLMgpFCnURPTU-o8ReHkbUPPOGv0XkfcVpLoGHTWo,6995
|
|
@@ -361,7 +370,7 @@ rasa/core/actions/http_custom_action_executor.py,sha256=oC5OM-p11wHOXXVl7vrTUjhw
|
|
|
361
370
|
rasa/core/actions/loops.py,sha256=3-kt_Sn_Y05PLYoYMsnuIn9e5mxYp31DJIx2omqy0dU,3531
|
|
362
371
|
rasa/core/actions/two_stage_fallback.py,sha256=k8PkD25fvH3kThG9lpC6oLMK7o15kV4yEbv2E2nyans,6065
|
|
363
372
|
rasa/core/agent.py,sha256=7ztUOYaevcwP6czj6JHM1iEriZx2nVZd1gfaMh7Ynl4,22513
|
|
364
|
-
rasa/core/available_agents.py,sha256=
|
|
373
|
+
rasa/core/available_agents.py,sha256=vdMXl2PX6nTOTz7LW_CYqBkROh1d1GlGSsuf37338lc,9003
|
|
365
374
|
rasa/core/brokers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
375
|
rasa/core/brokers/broker.py,sha256=mCBHPJYiFENeLXdNZjh7N28BC7t2l4oA-EG1rNzFJyQ,4392
|
|
367
376
|
rasa/core/brokers/file.py,sha256=ggMc2LU6SrYXyPB89tJ1S44kfTe2EApSZgq5EZ5KaB8,1804
|
|
@@ -554,8 +563,8 @@ rasa/core/channels/voice_stream/voice_channel.py,sha256=m7P8krfe1MNoAXXlecsciFUe
|
|
|
554
563
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
555
564
|
rasa/core/concurrent_lock_store.py,sha256=sDO7Zcl-IdZrGnOMVJa_lN7ht9uJVfaRkSbyXaTizlc,11375
|
|
556
565
|
rasa/core/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
557
|
-
rasa/core/config/available_endpoints.py,sha256=
|
|
558
|
-
rasa/core/config/configuration.py,sha256=
|
|
566
|
+
rasa/core/config/available_endpoints.py,sha256=dTwgEl0AVnGO23K3DsB5XzAVciQK45ot3jtLpy4agnA,7137
|
|
567
|
+
rasa/core/config/configuration.py,sha256=UDWPuHCxTqdSr-V0bEzXQjU40dzx0zaKW-Nh_5EGWJ0,9877
|
|
559
568
|
rasa/core/config/credentials.py,sha256=2oLgHc8PV7yT-TPX-86Ykf9OQzqsYX7-13sPADDAveI,547
|
|
560
569
|
rasa/core/config/message_procesing_config.py,sha256=guZ4ULqt4-G4aML1hNlrpoNFvRqr_q_fiUcQBejZ8e4,1042
|
|
561
570
|
rasa/core/constants.py,sha256=fpeDz5E1yWATfyiQYdqokSASkEC_E8b8BAD4A7k6ji4,4751
|
|
@@ -603,7 +612,7 @@ rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256
|
|
|
603
612
|
rasa/core/policies/enterprise_search_prompt_with_relevancy_check_and_citation_template.jinja2,sha256=b_8ZzK1ar0SvLZRFS8d9tHWvYS7Xb8xPJiBKg-UcyAM,3743
|
|
604
613
|
rasa/core/policies/flow_policy.py,sha256=Ulh3pjc1Yi4oJ4oLdmMgv9_SxcqO39m2AohhZaOEJgM,7510
|
|
605
614
|
rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
606
|
-
rasa/core/policies/flows/agent_executor.py,sha256=
|
|
615
|
+
rasa/core/policies/flows/agent_executor.py,sha256=l8z0xzRGGRzifK2f3VL1HYw-DnUaXvcYCtJ6UQETbrc,21884
|
|
607
616
|
rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
|
|
608
617
|
rasa/core/policies/flows/flow_executor.py,sha256=mr6w_ERPkaxP_s38nABaR-APDbPCk73VGGk53P-Rpik,31596
|
|
609
618
|
rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
|
|
@@ -671,9 +680,9 @@ rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68
|
|
|
671
680
|
rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
|
|
672
681
|
rasa/dialogue_understanding/commands/set_slot_command.py,sha256=VWyv98yk65Jg-unKmytrbNeEsdNUfVkq7TrUzAMNQAs,7299
|
|
673
682
|
rasa/dialogue_understanding/commands/skip_question_command.py,sha256=SlPeY0__XiRocUzBVW13kecxVNL5t7XtbOKvvVIWccQ,3387
|
|
674
|
-
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=
|
|
683
|
+
rasa/dialogue_understanding/commands/start_flow_command.py,sha256=eTpYu6WCQl9COxQVYbdmiIdABuVFiwX1ir4ZDeA5aWw,7756
|
|
675
684
|
rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
|
|
676
|
-
rasa/dialogue_understanding/commands/utils.py,sha256=
|
|
685
|
+
rasa/dialogue_understanding/commands/utils.py,sha256=h2oiBbyULRDzTYrJaL4eDobMr4c2LUWG5t3HMvqw7to,9121
|
|
677
686
|
rasa/dialogue_understanding/constants.py,sha256=_kB0edGV23uvhujlF193N2jk6YG0R6LC599YDX5B5vo,129
|
|
678
687
|
rasa/dialogue_understanding/generator/__init__.py,sha256=SlAfNRrmBi6dqhnYdFTJDOj3jiOy4f6TETYwi0inEGE,1129
|
|
679
688
|
rasa/dialogue_understanding/generator/_jinja_filters.py,sha256=KuK7nGKvKzKJz6Wg3AmrLFvzneGgIyeK825MCE379wc,248
|
|
@@ -683,7 +692,7 @@ rasa/dialogue_understanding/generator/command_parser_validator.py,sha256=qUIaKBR
|
|
|
683
692
|
rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
|
|
684
693
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
685
694
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=TF0QEM7q8KpyDYIJDu0Ym6K-ObjCOw4EEUbGXdpgPvY,17732
|
|
686
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
695
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=y3Cy92L10DnVNwE8NuzdSWtCy2kBkeE_h1jVfC3GccQ,25245
|
|
687
696
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=CMzsivtKfQZYN8PbDYIBH_1RJg856JSjUx8HqLvbvx4,2589
|
|
688
697
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
689
698
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
@@ -701,9 +710,9 @@ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_
|
|
|
701
710
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_claude_3_5_sonnet_20240620_template.jinja2,sha256=r8EKbUFCWV2_x8rZIAZgebEBkusdqokGQR65fiTE5a4,4863
|
|
702
711
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_gpt_4o_2024_11_20_template.jinja2,sha256=IHoD5g3YlZjMLCAjlNtp2NmFsyyio7L1LxLlDvXrZ7Y,4862
|
|
703
712
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
704
|
-
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=
|
|
705
|
-
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=
|
|
706
|
-
rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py,sha256=
|
|
713
|
+
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=QteDb1OwXoVwgbyr_gbglhBpOdcv_l9oDvC4GH84Niw,6649
|
|
714
|
+
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=66QpVl8PjdyX6G941dZgfGlLm-bkMA_hdhxj8CqB_9g,6630
|
|
715
|
+
rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py,sha256=IsUp3Sf59HAogVsM7zgSbViusyH46Y35GiOzLuvYBmM,18086
|
|
707
716
|
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=_cT866aB8TuSqe6_ybPaSQVCY0l4qgX4lg6QZUUryo4,3494
|
|
708
717
|
rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
|
|
709
718
|
rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -716,7 +725,7 @@ rasa/dialogue_understanding/patterns/collect_information.py,sha256=8YWvhFTt8CJML
|
|
|
716
725
|
rasa/dialogue_understanding/patterns/completed.py,sha256=7qkyUj2d__2R3mpwWVmQpfwCCbJruBrjRZbmbDr3Zbo,1278
|
|
717
726
|
rasa/dialogue_understanding/patterns/continue_interrupted.py,sha256=vHGjBfXP6adzLU8caSN6I3qsn7pHMJa9vaVly22-PCM,10644
|
|
718
727
|
rasa/dialogue_understanding/patterns/correction.py,sha256=7fQ02-JU1CGZiTjTi9YqmD1F4o-9Tv5WCAXnFgZlvtY,11380
|
|
719
|
-
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=
|
|
728
|
+
rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml,sha256=pjj0T7uYB1WCzzrjkUdVJJL5_VMT7J3cPITbaJvHpR8,12726
|
|
720
729
|
rasa/dialogue_understanding/patterns/domain_for_patterns.py,sha256=Zv_lCJn4nbkxeNYOPGsR0V8tmYAUsM_Ho_9to8hku-o,6493
|
|
721
730
|
rasa/dialogue_understanding/patterns/human_handoff.py,sha256=1hkSdL6kui42rZc7zERZ9R7nLyvRHi_tHgNU7FyrhAQ,1132
|
|
722
731
|
rasa/dialogue_understanding/patterns/internal_error.py,sha256=APCKVv16M6mSQ4upu4UwG0yIaaKTyr7uB2yV8ZtpMzo,1609
|
|
@@ -748,7 +757,7 @@ rasa/dialogue_understanding_test/command_metrics.py,sha256=yOugD2JitTmarD__Ktf15
|
|
|
748
757
|
rasa/dialogue_understanding_test/constants.py,sha256=G63FEzswDUOonTxoXQicEJwI6ICkSx3YP1ILkGH1ijw,790
|
|
749
758
|
rasa/dialogue_understanding_test/du_test_case.py,sha256=4Z5Ei21OdqN2MEHEKz-NGzzv0zuPwUkOjzNjEWQhnVA,17038
|
|
750
759
|
rasa/dialogue_understanding_test/du_test_result.py,sha256=y9U_w_5aV8bGppmUHWgbNZG-9-TQGOm2xO0w38e1eUo,19457
|
|
751
|
-
rasa/dialogue_understanding_test/du_test_runner.py,sha256=
|
|
760
|
+
rasa/dialogue_understanding_test/du_test_runner.py,sha256=XmbVoSIH14tFFA34v1kMA1SPvbT2chNHlh0iFvmsRUA,11733
|
|
752
761
|
rasa/dialogue_understanding_test/du_test_schema.yml,sha256=nxezEXfnoc-oVZXDqHRg-Yk4fkDF3t2VatRRMdSSE2o,4773
|
|
753
762
|
rasa/dialogue_understanding_test/io.py,sha256=doMboRm9G6KaxmfsOYhsa2iz8zghh4bLMa3XTIV6DC0,16250
|
|
754
763
|
rasa/dialogue_understanding_test/test_case_simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -768,7 +777,7 @@ rasa/e2e_test/e2e_test_converter.py,sha256=bcSg-hWKPGvZBip6PKPvYAcgvSUCU5uXmC9D7
|
|
|
768
777
|
rasa/e2e_test/e2e_test_converter_prompt.jinja2,sha256=EMy-aCd7jLARHmwAuZUGT5ABnNHjR872_pexRIMGA7c,2791
|
|
769
778
|
rasa/e2e_test/e2e_test_coverage_report.py,sha256=UGQ3np2p_gtnhl17K5y886STiX9xBn95GVuN9LGIpGY,11344
|
|
770
779
|
rasa/e2e_test/e2e_test_result.py,sha256=qVurjFC4cAWIY7rOsc-A-4nIdcnnw98TaK86-bDwI7Y,1649
|
|
771
|
-
rasa/e2e_test/e2e_test_runner.py,sha256=
|
|
780
|
+
rasa/e2e_test/e2e_test_runner.py,sha256=PDSOE666jpssg25LU32a6JeNUHhuEVvJ5CblyeLZ61U,48390
|
|
772
781
|
rasa/e2e_test/e2e_test_schema.yml,sha256=0WG0I3baTRc76lff3UjQ8vGRzMUoV6qcE8r9adOAlCU,5638
|
|
773
782
|
rasa/e2e_test/llm_judge_prompts/answer_relevance_prompt_template.jinja2,sha256=6Ddszg4Y6sIvhH7C1jjEAArpzke48mfCOa2KUQYbNVA,2725
|
|
774
783
|
rasa/e2e_test/llm_judge_prompts/groundedness_prompt_template.jinja2,sha256=jCgDbZvWn5fncr4zvB5UQSK1VJu9xDQtpY4B8GKtlmA,8226
|
|
@@ -804,7 +813,7 @@ rasa/engine/training/components.py,sha256=Ymz8-JcKm5A9dqPblay11Lxo_AFShkakXlsHQ9
|
|
|
804
813
|
rasa/engine/training/fingerprinting.py,sha256=RrJzkhTefKsj2A1S4yAJ4IIUZGganGTcKKdor-FfLjA,2008
|
|
805
814
|
rasa/engine/training/graph_trainer.py,sha256=jLfJZVn-mDwIOEADnx56Ly67EPf5XMpf_gH5PwRe-7o,10636
|
|
806
815
|
rasa/engine/training/hooks.py,sha256=dec5yMRNbVIJwtijhESJNlt8lbZb1KJffcBRBajuZes,5469
|
|
807
|
-
rasa/engine/validation.py,sha256=
|
|
816
|
+
rasa/engine/validation.py,sha256=LAq7ZR3y9sWFl_Wmo-Mo_04yBjdKiaQNQK29GDyQYFk,62304
|
|
808
817
|
rasa/env.py,sha256=zLzQMkATVIZj6s4C7RsLLOLT8g6-Q96m5iBaHW_mEA8,480
|
|
809
818
|
rasa/exceptions.py,sha256=rw9JV55PUWEWCBvswVdWgANiW35iT4S9atn5N7QTthM,2867
|
|
810
819
|
rasa/graph_components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -933,11 +942,12 @@ rasa/shared/agents/auth/auth_strategy/__init__.py,sha256=XjTLRSWzcHB0S2_bA8lewqj
|
|
|
933
942
|
rasa/shared/agents/auth/auth_strategy/agent_auth_strategy.py,sha256=EmWtNe6ubGCaIg11L9nYbdwmp-zmswj2D60YfYnGz6c,1609
|
|
934
943
|
rasa/shared/agents/auth/auth_strategy/api_key_auth_strategy.py,sha256=K44K0FioGNbFeZHjjynEXHV4fUrrqlkPZvryCiWS7ac,1454
|
|
935
944
|
rasa/shared/agents/auth/auth_strategy/bearer_token_auth_strategy.py,sha256=PXbNbRb246jQqMOu_92FyTaTlCbTtH9uLN3wI361IiQ,965
|
|
936
|
-
rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py,sha256=
|
|
937
|
-
rasa/shared/agents/auth/constants.py,sha256=
|
|
945
|
+
rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py,sha256=ETPw2OkhE2K0Lyy5L8q6lsbTzEQEmSOhxy79FelZ-xs,6331
|
|
946
|
+
rasa/shared/agents/auth/constants.py,sha256=Rh81Vl9ZjpIQnQs3QOqm-pHkXZrfg-Ym_mroenmnBGo,437
|
|
938
947
|
rasa/shared/agents/auth/types.py,sha256=tvcYZEwh0UpjEjgwMLuj8-h3AMSx_uQw-Hi504rHoqI,294
|
|
948
|
+
rasa/shared/agents/auth/utils.py,sha256=B8D0yOsYy03tXW0Z5aV5yq7j9TR4OX_Jq1f7d_vUtW8,2958
|
|
939
949
|
rasa/shared/agents/utils.py,sha256=Dux_STACmYlni-c4c8EpdBX9SmcFofaJI8prwsKlNeM,1011
|
|
940
|
-
rasa/shared/constants.py,sha256=
|
|
950
|
+
rasa/shared/constants.py,sha256=z-SrX4GzNoUX38UvcdZiNOJYCLG37_Drz7g-XpO461w,13153
|
|
941
951
|
rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
942
952
|
rasa/shared/core/command_payload_reader.py,sha256=aWmEe6NyGdGZ8qaCPxGZu1frLROv04SFbwPpZNrtj7Q,3741
|
|
943
953
|
rasa/shared/core/constants.py,sha256=Dzm0Vh_8GXQ_pv-6nmjphYTodaXFhO1Qx3Q-d_gR8Pk,7048
|
|
@@ -956,7 +966,7 @@ rasa/shared/core/flows/flows_yaml_schema.json,sha256=IifTzeXuB73gwD4lK7ibHNUS2E_
|
|
|
956
966
|
rasa/shared/core/flows/nlu_trigger.py,sha256=ujLXFo5WjIwtwRVEdxZkaE2fbd4KEmayeFPAd1mF26I,4352
|
|
957
967
|
rasa/shared/core/flows/steps/__init__.py,sha256=jvJp02o9_Wx-rZeQ3SYiLVMpO6ulS1yKuiiKg0ld_nE,655
|
|
958
968
|
rasa/shared/core/flows/steps/action.py,sha256=fRtNXLCK-r74tX3-rHyn_eKv7cRYRoNfEW2lCK0VdrQ,1920
|
|
959
|
-
rasa/shared/core/flows/steps/call.py,sha256=
|
|
969
|
+
rasa/shared/core/flows/steps/call.py,sha256=fRPQ5dY6Kl_338dJCYt3wTdLMeiLHkU880AottUprSo,4582
|
|
960
970
|
rasa/shared/core/flows/steps/collect.py,sha256=aEryTNsmSClZdp9wuDsWleEDQZ9A-cgSbR4tP818aBw,8622
|
|
961
971
|
rasa/shared/core/flows/steps/constants.py,sha256=DCxrEUGbJciBknHm-_t4tmcnH19IZKP-WYxqix9gm7M,132
|
|
962
972
|
rasa/shared/core/flows/steps/continuation.py,sha256=5Rzayr80FsgS4bAajuRObVvVcLqPEh9nxGbT2te85xY,1498
|
|
@@ -1071,7 +1081,7 @@ rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i
|
|
|
1071
1081
|
rasa/shared/utils/health_check/health_check.py,sha256=ZuMJhHF5gXuB0oroeeg4cwCun1VCsGkXzFOwTT1drR4,9706
|
|
1072
1082
|
rasa/shared/utils/health_check/llm_health_check_mixin.py,sha256=ANP5Q68TRX8p4wWkRCAISsWBV1iYYeGnqWILnR1NawE,957
|
|
1073
1083
|
rasa/shared/utils/io.py,sha256=AhuECoXGO367NvWRCBu99utEtTQnyxWVJyKOOpLePpg,15917
|
|
1074
|
-
rasa/shared/utils/llm.py,sha256=
|
|
1084
|
+
rasa/shared/utils/llm.py,sha256=gF_wAA3RxK6KDKTD2hjqbGu6shLAoUJ7DIXmC8gtMxc,42695
|
|
1075
1085
|
rasa/shared/utils/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1076
1086
|
rasa/shared/utils/mcp/server_connection.py,sha256=PnNgBfLYBxeMC3VsbxoR9EenMWCnKQ_IvzFh7_I2EuI,9399
|
|
1077
1087
|
rasa/shared/utils/mcp/utils.py,sha256=Adb-rx2uXpBoh8jJkwwn4et4HVlMgkDcq7UHgtn1Oxc,590
|
|
@@ -1100,7 +1110,7 @@ rasa/studio/results_logger.py,sha256=lwKROoQjzzJVnFoceLQ-z-5Hg35TfHo-8R4MDrMLYHY
|
|
|
1100
1110
|
rasa/studio/train.py,sha256=ogidFANyiaDmYgqBK5IaPwOUCYQpXpymKhU4jmnR6kY,4265
|
|
1101
1111
|
rasa/studio/upload.py,sha256=7_DzUICRUQwgi-dnExXzx4tp_ghqFa17fiuw2fx66h0,21778
|
|
1102
1112
|
rasa/studio/utils.py,sha256=WgPbmMcdb3yuZU36zxFqUkJwqi5ma7TZT4Y-mXYe54k,1429
|
|
1103
|
-
rasa/telemetry.py,sha256=
|
|
1113
|
+
rasa/telemetry.py,sha256=dg-e0Ejz0ucJ4dDYuOYIAGPjFKqT8hHUZfufg238HZ4,74344
|
|
1104
1114
|
rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1105
1115
|
rasa/tracing/config.py,sha256=OvN6ua7h1SaSQPvBXMdq3PsCwZZnXLyr3_AOcfapGNQ,14552
|
|
1106
1116
|
rasa/tracing/constants.py,sha256=oDjgQaO1_CtcJX3xleC4q4z-Ela2XLRHS1mwzOIRkis,4379
|
|
@@ -1124,7 +1134,7 @@ rasa/utils/mapper.py,sha256=CZiD3fu7-W-OJgoB1R8JaOg-Hq13TK20D-zGVNgbF18,7726
|
|
|
1124
1134
|
rasa/utils/ml_utils.py,sha256=5mGQFQ-m0sJVLT9Mx60nXce3Y__eLhTD8kb6SJ4UJ1k,4169
|
|
1125
1135
|
rasa/utils/openapi.py,sha256=59bYTclJHieWp1evIikwWvFioDg6albxHaSGYVufPec,5646
|
|
1126
1136
|
rasa/utils/plotting.py,sha256=QT30kYXQxqAL8ZECjwOOvawuWALJ_rcO3rBZY5PWF-s,12272
|
|
1127
|
-
rasa/utils/pypred.py,sha256=
|
|
1137
|
+
rasa/utils/pypred.py,sha256=KAeBS-ifNx7SL7tlhVLCTodADjI6xtrw6jQ3TiUv04k,1370
|
|
1128
1138
|
rasa/utils/sanic_error_handler.py,sha256=nDL1hyBe8DRdXyXPJFCfWOn3GzTm--UypF7OT2KCra8,1152
|
|
1129
1139
|
rasa/utils/singleton.py,sha256=w1-sZeBPwe84bod-CuAf8IX8sMJ36pu2UYHHm0eF3wI,565
|
|
1130
1140
|
rasa/utils/tensorflow/__init__.py,sha256=vCDc2zPhrbtlEpHgFstNSJT8dQg032yXUIgZHCrHjWU,185
|
|
@@ -1147,10 +1157,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
|
|
|
1147
1157
|
rasa/utils/train_utils.py,sha256=LJO7mM6ptYvLMZr4HDl3fBkPHb7-BVFXuuZseh4Pp68,22409
|
|
1148
1158
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
1149
1159
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
1150
|
-
rasa/validator.py,sha256=
|
|
1151
|
-
rasa/version.py,sha256=
|
|
1152
|
-
rasa_pro-3.14.
|
|
1153
|
-
rasa_pro-3.14.
|
|
1154
|
-
rasa_pro-3.14.
|
|
1155
|
-
rasa_pro-3.14.
|
|
1156
|
-
rasa_pro-3.14.
|
|
1160
|
+
rasa/validator.py,sha256=peO1q1z73a_JCsWj0rq92MfmGh5uvl7Pb2A9xFTKsb0,88309
|
|
1161
|
+
rasa/version.py,sha256=f275zy0pMZIR0luXOE9LM7-86j7Fep2Ev2xIb4SVXX0,120
|
|
1162
|
+
rasa_pro-3.14.0rc4.dist-info/METADATA,sha256=Avwe5cOBKc9VgA5IRjhQJKZ60dxDWwx6MY-jkNYcx4U,12517
|
|
1163
|
+
rasa_pro-3.14.0rc4.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
1164
|
+
rasa_pro-3.14.0rc4.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
1165
|
+
rasa_pro-3.14.0rc4.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
1166
|
+
rasa_pro-3.14.0rc4.dist-info/RECORD,,
|