rasa-pro 3.14.0rc2__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.

Files changed (69) hide show
  1. rasa/agents/protocol/a2a/a2a_agent.py +50 -42
  2. rasa/agents/utils.py +27 -5
  3. rasa/agents/validation.py +7 -9
  4. rasa/api.py +1 -2
  5. rasa/builder/copilot/copilot.py +37 -1
  6. rasa/builder/copilot/models.py +43 -49
  7. rasa/builder/copilot/prompts/copilot_system_prompt.jinja2 +33 -12
  8. rasa/builder/copilot/prompts/latest_user_message_context_prompt.jinja2 +59 -29
  9. rasa/builder/copilot/telemetry.py +8 -0
  10. rasa/builder/service.py +1 -0
  11. rasa/cli/dialogue_understanding_test.py +1 -0
  12. rasa/cli/e2e_test.py +1 -0
  13. rasa/cli/inspect.py +1 -0
  14. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/feedback.yml +46 -0
  15. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/goodbye.yml +9 -0
  16. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/help.yml +8 -0
  17. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/human_handoff.yml +41 -0
  18. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/patterns.yml +32 -0
  19. rasa/cli/project_templates/basic/tests/e2e_test_cases/without_stub/general/show_faqs.yml +8 -0
  20. rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml +2 -2
  21. rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml +1 -2
  22. rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_not_slow.yml +33 -0
  23. rasa/cli/project_templates/telco/tests/e2e_test_cases/with_stub/network/solve_internet_slow.yml +47 -0
  24. rasa/cli/project_templates/telco/tests/e2e_test_cases/without_stub/general/hello.yml +8 -0
  25. rasa/cli/run.py +1 -5
  26. rasa/cli/shell.py +1 -0
  27. rasa/cli/train.py +1 -0
  28. rasa/cli/validation/bot_config.py +7 -2
  29. rasa/core/available_agents.py +65 -55
  30. rasa/core/config/available_endpoints.py +0 -3
  31. rasa/core/config/configuration.py +36 -1
  32. rasa/core/policies/flows/agent_executor.py +16 -8
  33. rasa/dialogue_understanding/commands/start_flow_command.py +10 -3
  34. rasa/dialogue_understanding/commands/utils.py +15 -4
  35. rasa/dialogue_understanding/generator/llm_based_command_generator.py +4 -2
  36. rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +4 -4
  37. rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py +4 -4
  38. rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py +2 -2
  39. rasa/dialogue_understanding_test/du_test_runner.py +2 -2
  40. rasa/e2e_test/e2e_test_runner.py +2 -2
  41. rasa/shared/agents/auth/auth_strategy/oauth2_auth_strategy.py +10 -4
  42. rasa/shared/agents/auth/constants.py +1 -0
  43. rasa/shared/core/flows/steps/call.py +2 -2
  44. rasa/telemetry.py +3 -3
  45. rasa/validator.py +37 -0
  46. rasa/version.py +1 -1
  47. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/METADATA +13 -2
  48. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/RECORD +68 -60
  49. rasa/cli/project_templates/telco/tests/e2e_test_cases/network/solve_internet_issue.yml +0 -57
  50. /rasa/cli/project_templates/{finance/tests/e2e_test_cases → basic/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
  51. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/check_balance.yml +0 -0
  52. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{accounts → without_stub/accounts}/download_statements.yml +0 -0
  53. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{cards → without_stub/cards}/block_card.yml +0 -0
  54. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
  55. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
  56. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
  57. /rasa/cli/project_templates/{telco/tests/e2e_test_cases → finance/tests/e2e_test_cases/without_stub}/general/hello.yml +0 -0
  58. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
  59. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
  60. /rasa/cli/project_templates/finance/tests/e2e_test_cases/{transfers → without_stub/transfers}/transfer_money.yml +0 -0
  61. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{billing → without_stub/billing}/understand_bill.yml +0 -0
  62. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/bot_challenge.yml +0 -0
  63. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/feedback.yml +0 -0
  64. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/goodbye.yml +0 -0
  65. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/human_handoff.yml +0 -0
  66. /rasa/cli/project_templates/telco/tests/e2e_test_cases/{general → without_stub/general}/patterns.yml +0 -0
  67. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/NOTICE +0 -0
  68. {rasa_pro-3.14.0rc2.dist-info → rasa_pro-3.14.0rc3.dist-info}/WHEEL +0 -0
  69. {rasa_pro-3.14.0rc2.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
- scope: str,
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.available_agents import AvailableAgents
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 AvailableAgents.get_instance().agents
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
- agents = AvailableAgents.get_instance().agents
1136
- mcp_servers = Configuration.get_instance().endpoints.mcp_servers
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,3 +1,3 @@
1
1
  # this file will automatically be changed,
2
2
  # do not add anything but the version number here!
3
- __version__ = "3.14.0rc2"
3
+ __version__ = "3.14.0rc3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rasa-pro
3
- Version: 3.14.0rc2
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
@@ -181,7 +181,7 @@ Rasa is a framework for building scalable, dynamic conversational AI assistants
181
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.
182
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.
183
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.
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.
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.
185
185
 
186
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.
187
187
 
@@ -198,3 +198,14 @@ Check out our
198
198
 
199
199
  for more. Also feel free to reach out to us on the [Rasa forum](https://forum.rasa.com/).
200
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=eoaipZMFuEe3tmxVbbfcUpNrT6giGWbdWnRnlsgCNjM,34564
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,26 +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=xpbq0ftjy42IID6K7fztFhjsH5yCsIXNONRw6QuFTz8,6873
27
- rasa/agents/validation.py,sha256=l9PASy1UyIvIhjWfIRhlqraIuQFCYsC-bvCVIjPuYRw,17564
28
- rasa/api.py,sha256=S1Yn_zitxpwR6LhcWXStLyl5iGJ_SU_kqGZnjIp-4J0,6803
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
34
  rasa/builder/copilot/constants.py,sha256=zpNNW33ojunKVK0qq62C9WvSBsxih3yoVc1dRpFumyE,1339
35
- rasa/builder/copilot/copilot.py,sha256=Ex077CkB31hnbmE1UFPDzL_mjFWveu1_oJNvDvmZxrs,19472
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=3aUJQ2k8Aa6MvauC7exKDwMsvhgIRz9w-JZAqdfuB3s,23371
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=Sdn0sBbJb1TtGuaOe6XStChWDmbvfiOYfiv1ttRFfEU,30522
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=fGeR2w5FOGQJYpGyrn9Pr0QGGnB_TZ6sdCVTOryw_yE,1632
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=aUsfnEqjhct-tNVjSp0YfwGudflIY63ITiel6SRZquY,8201
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
48
  rasa/builder/copilot/templated_messages/copilot_templated_responses.yml,sha256=i6Nja6Gv_NtymUEFoXWNq5pMIXIyLjiMvtrhyYyl2OU,1935
@@ -69,7 +69,7 @@ rasa/builder/main.py,sha256=hSDkcaV_gCYss9rfXjqM1QeBjEIhmRrACycoFDHKHEE,7597
69
69
  rasa/builder/models.py,sha256=E4gWb8l0h1gBAvSY3wCyhnyQg3XiKn2Mng-EtoIUthY,6508
70
70
  rasa/builder/project_generator.py,sha256=wD9I_paxaNWwqwjcg570AuvaeKk8TfopTKGapHTKGeA,18391
71
71
  rasa/builder/project_info.py,sha256=ZBwFCigZLSo1RBMhlZDYBoVl2G-9OnhRrYxdMWHn6S4,2093
72
- rasa/builder/service.py,sha256=TJGMBBXsolsUmvmHjLon1FUkFycM3VW4nGk94FI1g_k,48969
72
+ rasa/builder/service.py,sha256=pB_PCUQTxYKvzrE__pg0AnQNmTCkl3p8OdLPQ9xtSq4,49057
73
73
  rasa/builder/shared/tracker_context.py,sha256=2P-DsWjWEkZ32dqrx6s4zVxdo0_mokZNrU3LYisu6MY,7691
74
74
  rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
75
75
  rasa/builder/template_cache.py,sha256=0ms5P4zvAtio9AhwKbazUwaYZQZxa8DToC3ieLi-UZ8,2350
@@ -89,11 +89,11 @@ rasa/cli/arguments/train.py,sha256=Fu2KAVddvEjQ_aQ6O9zgKKfKsSGKyPEKiZpvlJIOKYQ,9
89
89
  rasa/cli/arguments/visualize.py,sha256=e8yhvc6Jfy1JKSOIVFV5mY5QPowkf0o1kt6IGujVxcY,861
90
90
  rasa/cli/arguments/x.py,sha256=_23reqNwiit2VoCqmv23kQZudA3iZVXaBV_zEXJjV6w,1028
91
91
  rasa/cli/data.py,sha256=GHUnCobXUvx4NcXNz_SOkEQpHIIdqTTIOlT2YXnsfqo,13498
92
- rasa/cli/dialogue_understanding_test.py,sha256=3cFI0QRqzJCGwRlQfeZVVt_DavhW3AQAXshYgIimQcU,13619
93
- rasa/cli/e2e_test.py,sha256=eGrAD-9T7eaKXcB58ilryw32uDDvKbyQP2j_sZVmcfA,8170
92
+ rasa/cli/dialogue_understanding_test.py,sha256=j7e5ZEKOOJKEBLbwamGTdg2rTUTYP5SCm7mohwlXoeU,13676
93
+ rasa/cli/e2e_test.py,sha256=8KTdM_8AyP9-eWXXYvuLAom2bN6KGOaS2b_usP6G_EU,8227
94
94
  rasa/cli/evaluate.py,sha256=HH5OiPSRB6n80DhZonjQOvaDlAlgaxaoecDZWMnuRJ8,8019
95
95
  rasa/cli/export.py,sha256=VqNt9ycF1z-UHbz_iWHxjHsq0ROvj6nOcHBQz1W3MBQ,8426
96
- rasa/cli/inspect.py,sha256=h_S4JFkxd5YZyFYWRyqbjeTefS8stnm-VuE8vWA0GzM,3908
96
+ rasa/cli/inspect.py,sha256=nEY9G4ihN3P-p4ckTQmt3YiI_ZBZ1VqBRE_38fkEl7s,3965
97
97
  rasa/cli/interactive.py,sha256=kQMH743AbCvwsGASBORQHgVeaaTvHIIbEbfZWfvhGQU,6166
98
98
  rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
99
99
  rasa/cli/llm_fine_tuning.py,sha256=VqblDb-raZQ9YZGU5hrtg4TTNWWZbTwfp35LtWmLELo,15152
@@ -130,6 +130,13 @@ rasa/cli/project_templates/basic/domain/system/patterns/pattern_cannot_handle.ym
130
130
  rasa/cli/project_templates/basic/domain/system/patterns/pattern_session_start.yml,sha256=ojugI3laqH-iL-0Rlt170nTgJuH-uifY8IIJ9My0FNI,466
131
131
  rasa/cli/project_templates/basic/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
132
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
133
140
  rasa/cli/project_templates/default/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
141
  rasa/cli/project_templates/default/actions/action_template.py,sha256=BoiGE6tHbUl4WAEpf1sYTsQRV4_aZiTk4cLFEpk6QVY,755
135
142
  rasa/cli/project_templates/default/actions/add_contact.py,sha256=bvXsHnHquhEJxSKB0sNYouePRTdL7gLyH3ftEknbI68,1032
@@ -248,16 +255,16 @@ rasa/cli/project_templates/finance/domain/transfers/shared.yml,sha256=_nSMfwLyLL
248
255
  rasa/cli/project_templates/finance/domain/transfers/transfer_money.yml,sha256=dGLOVxvPrNZd6HtCS59CM6ntaYiGgGoiwts_p46bQzI,6765
249
256
  rasa/cli/project_templates/finance/endpoints.yml,sha256=mf59LE7SJ0Id1-OMTp07rvaSGLyApsgi0dMePLwVZM4,2255
250
257
  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
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
261
268
  rasa/cli/project_templates/telco/README.md,sha256=KyIlPzYqXohBYN2_gErtN1DcE09B1fXsFU443DeWFWQ,1270
262
269
  rasa/cli/project_templates/telco/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
263
270
  rasa/cli/project_templates/telco/actions/actions.md,sha256=91irqUhAx4u3iVAL25pHWwxBCpAnjK0xPKVFVvLQEtw,809
@@ -283,7 +290,7 @@ rasa/cli/project_templates/telco/data/general/human_handoff.yml,sha256=p8F2L5o3Q
283
290
  rasa/cli/project_templates/telco/data/general/patterns.yml,sha256=7hI6DdDHWNF3OHhtOUiACnawPKN6GcC87HQJnmaTAOo,755
284
291
  rasa/cli/project_templates/telco/data/network/flow_reboot_router.yml,sha256=wq_iJX4shdPh2Gvi1-2s7fhF_ivZi1C5gOKDVFUkfD0,288
285
292
  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=5z_Lvt1glTEnvj71a9hG2kWGPWvCcb7_9ZoidIwczc8,3997
293
+ rasa/cli/project_templates/telco/data/network/flow_solve_internet_issue.yml,sha256=zVjYVSFgNePCGdd1wLydQQDqsXlVFGMyPg24mlW_2rU,3995
287
294
  rasa/cli/project_templates/telco/docs/docs.md,sha256=oW7M2DXeC6OjhckW9CL6hAA5AqxT1x13fRoFWIRZJRU,521
288
295
  rasa/cli/project_templates/telco/docs/network/reset_vs_rboot_router.txt,sha256=xNgJ4u2FgNdhfXqH3sXGVMjCROlbR5SB7fbSvWabfUI,670
289
296
  rasa/cli/project_templates/telco/docs/network/restart_router.txt,sha256=enyNLydmU6vlVSVNbkRRNv58Z9rwNVJsiJzuMS76-q4,698
@@ -299,18 +306,19 @@ rasa/cli/project_templates/telco/domain/general/patterns.yml,sha256=YmJ2uBoSfh-K
299
306
  rasa/cli/project_templates/telco/domain/network/reboot_router.yml,sha256=lh-lfRUrO6C6jw2iqJk2-qC217JB2q5DPLS7PjLFhsw,441
300
307
  rasa/cli/project_templates/telco/domain/network/reset_router.yml,sha256=x184d8fLHakZDswzi8_sRxuXheIwm4rJCYNe2j3qLMk,413
301
308
  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=ZpVoXQKJfS4Ra-qy89ktRURcwMnPQ51PDPyc1vyQl60,2762
309
+ rasa/cli/project_templates/telco/domain/network/solve_internet_issue.yml,sha256=2eZhR_maxhFxSi2cEp93ee4y8CleaqIBhbWGEWm6H9k,2760
303
310
  rasa/cli/project_templates/telco/domain/shared.yml,sha256=TYe6yeIITCVzxvp-LBE9n38TErP4h37SB4jShpjEVuM,3399
304
311
  rasa/cli/project_templates/telco/endpoints.yml,sha256=yL0ifaAMFHVc9OmWKFEYbnhIZv8edQOpN1lGDTBEa5Y,2263
305
312
  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/billing/understand_bill.yml,sha256=WKB1QQs2EMU2r_-LVrtwT053kg4i5Hqwr8s1wrvqBMI,2393
307
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/bot_challenge.yml,sha256=Uvv5X-RNCsSqslgUzDV9pI1mBgs5QcYbqFPCI6lLOQM,210
308
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/feedback.yml,sha256=z0YsRGeYRMJp3-Sz4g3eyGy4vXGrVPuzwOXRkxAaQZc,1553
309
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/goodbye.yml,sha256=GTBQ4ikH07TSeA6WDiz5gCMrC5lg3KzVuvKNAawBonE,224
310
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/hello.yml,sha256=qqTVSNCC_Qj-8kUAajtDI2NxnOweEvGelfbAGtZV0K0,175
311
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/human_handoff.yml,sha256=jd4n8GrHiB4wksRGNgzzESX4EyoHN2lSfHVafo32Ocg,1241
312
- rasa/cli/project_templates/telco/tests/e2e_test_cases/general/patterns.yml,sha256=hS_0Ri3FHHpAS783xWydYVp_YpE57nO1hd4WtjqJ6Ig,1461
313
- rasa/cli/project_templates/telco/tests/e2e_test_cases/network/solve_internet_issue.yml,sha256=p2IAZJOuRgsiSmdyboTf1CAZT-T6AIBMlRYqYGc8tcw,2227
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
314
322
  rasa/cli/project_templates/tutorial/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
315
323
  rasa/cli/project_templates/tutorial/actions/actions.py,sha256=OG2_fGtq5_uAxcDfeM6qdbGrMqeSgNsAnYbiD5_YYh8,777
316
324
  rasa/cli/project_templates/tutorial/config.yml,sha256=jSoFhtr8hA-CFb8g0PaJHwpU0YKsmHSen-E1FZ7dyeE,267
@@ -319,9 +327,9 @@ rasa/cli/project_templates/tutorial/data/flows.yml,sha256=mTzRicdj-Pbb95Hi3mhno4
319
327
  rasa/cli/project_templates/tutorial/data/patterns.yml,sha256=phj1vrOcAacwzdVHFHNwKFRPlC1wHBC9im0KrLgl7Qc,464
320
328
  rasa/cli/project_templates/tutorial/domain.yml,sha256=X16UwfoTNKSV2DYvEQZ-CfRczzg5MqI49AHgSH0-aZs,974
321
329
  rasa/cli/project_templates/tutorial/endpoints.yml,sha256=ZZfchpZLo5MObU5JVXPqBi8KrKe8gzsZskSDAjpfS9E,1788
322
- rasa/cli/run.py,sha256=eOIJWZdXzGWzPirR9W1prV_UMKx3y57IzeujM88AY-4,4544
330
+ rasa/cli/run.py,sha256=0V2JfLKeVZ8y8kkUBK3v0gkoEBRfVS0JubxyiZ5e4TM,4451
323
331
  rasa/cli/scaffold.py,sha256=dqqOD6ZxvwooINuooDQaT9HBzlCyhBZWv_vG3szMk4A,9614
324
- rasa/cli/shell.py,sha256=tPmx1pQtXdhmE8CgPIJGjtvugBTwB6LnwLDDl2hl9ns,4883
332
+ rasa/cli/shell.py,sha256=71H-Le2kFBuZxoSY-DaqxxohJBSAI5wH5P7KNvBpZLI,4940
325
333
  rasa/cli/studio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
326
334
  rasa/cli/studio/download.py,sha256=5uLdnW60JQ1NkUcJfK_be2pKjVOtYzCCjNAQpfGkYnM,1163
327
335
  rasa/cli/studio/link.py,sha256=rrup2dUGef6yCC-3jTDiK-2pEspcBnl-61guhVJdmGU,1059
@@ -332,10 +340,10 @@ rasa/cli/studio/train.py,sha256=R5TuZztfeBwvv83Q3VpdaHtK1oo5zdt6ImbZqfvHQxc,1485
332
340
  rasa/cli/studio/upload.py,sha256=9j6-OC0uSa1decsjbIrHk952sIF_NZPnIYZHvWLOy-w,1695
333
341
  rasa/cli/telemetry.py,sha256=mNMMbcgnNPZzeF1k-khN-7lAQFnkFx75VBwtnPfPI6k,3538
334
342
  rasa/cli/test.py,sha256=HOByA0RQCupaPvmoPYzUCBcJLJnakT1uRrqxZLewm1Y,9834
335
- rasa/cli/train.py,sha256=NSmX7N2SThOGuaIw3L9wuuY1eImqBWVHZ2wr-UmkaEo,10151
343
+ rasa/cli/train.py,sha256=tJ4e3I0nJLUosnZPJmF1_msfV9usnB7b8WMsBBB3Rwk,10208
336
344
  rasa/cli/utils.py,sha256=BpMNV6Cyo0bfJ-jnMXgqVCgfa0BFvV7HkbmtA2ZjXhM,4155
337
345
  rasa/cli/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
- rasa/cli/validation/bot_config.py,sha256=OaT38782vJiQd8Es3O5l-06c5oQl-qaiSzCk9GIB8a8,8184
346
+ rasa/cli/validation/bot_config.py,sha256=bLzK1NK7f8_NzlcSxSb4kGx0mYtO8jWexBk0tjLNKwE,8380
339
347
  rasa/cli/validation/config_path_validation.py,sha256=ME3BQ5KwJbLl7igDTvoegIuFLybCphKkxsKHvJ3nYiQ,8424
340
348
  rasa/cli/visualize.py,sha256=YmRAATAfxHpgE8_PknGyM-oIujwICNzVftTzz6iLNNc,1256
341
349
  rasa/cli/x.py,sha256=S7MLMgpFCnURPTU-o8ReHkbUPPOGv0XkfcVpLoGHTWo,6995
@@ -361,7 +369,7 @@ rasa/core/actions/http_custom_action_executor.py,sha256=oC5OM-p11wHOXXVl7vrTUjhw
361
369
  rasa/core/actions/loops.py,sha256=3-kt_Sn_Y05PLYoYMsnuIn9e5mxYp31DJIx2omqy0dU,3531
362
370
  rasa/core/actions/two_stage_fallback.py,sha256=k8PkD25fvH3kThG9lpC6oLMK7o15kV4yEbv2E2nyans,6065
363
371
  rasa/core/agent.py,sha256=7ztUOYaevcwP6czj6JHM1iEriZx2nVZd1gfaMh7Ynl4,22513
364
- rasa/core/available_agents.py,sha256=y7jkp5gnH30OGWzn5vY26mr5PFSTJ48a75oQVkysywI,8062
372
+ rasa/core/available_agents.py,sha256=vdMXl2PX6nTOTz7LW_CYqBkROh1d1GlGSsuf37338lc,9003
365
373
  rasa/core/brokers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
366
374
  rasa/core/brokers/broker.py,sha256=mCBHPJYiFENeLXdNZjh7N28BC7t2l4oA-EG1rNzFJyQ,4392
367
375
  rasa/core/brokers/file.py,sha256=ggMc2LU6SrYXyPB89tJ1S44kfTe2EApSZgq5EZ5KaB8,1804
@@ -554,8 +562,8 @@ rasa/core/channels/voice_stream/voice_channel.py,sha256=m7P8krfe1MNoAXXlecsciFUe
554
562
  rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
555
563
  rasa/core/concurrent_lock_store.py,sha256=sDO7Zcl-IdZrGnOMVJa_lN7ht9uJVfaRkSbyXaTizlc,11375
556
564
  rasa/core/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
557
- rasa/core/config/available_endpoints.py,sha256=yD2NynY13T0tWCAYO1QvRiY0kov-DXU3P86vm3m_lVs,6884
558
- rasa/core/config/configuration.py,sha256=1lM47_77FpxPTdjU4i5mSgOO7KrCx547HBP2SS59zAY,8502
565
+ rasa/core/config/available_endpoints.py,sha256=nJjPU89ezuHlYfF5k-VyrsJpSFJ26_ah9BYJICx4d6c,6861
566
+ rasa/core/config/configuration.py,sha256=UDWPuHCxTqdSr-V0bEzXQjU40dzx0zaKW-Nh_5EGWJ0,9877
559
567
  rasa/core/config/credentials.py,sha256=2oLgHc8PV7yT-TPX-86Ykf9OQzqsYX7-13sPADDAveI,547
560
568
  rasa/core/config/message_procesing_config.py,sha256=guZ4ULqt4-G4aML1hNlrpoNFvRqr_q_fiUcQBejZ8e4,1042
561
569
  rasa/core/constants.py,sha256=fpeDz5E1yWATfyiQYdqokSASkEC_E8b8BAD4A7k6ji4,4751
@@ -603,7 +611,7 @@ rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256
603
611
  rasa/core/policies/enterprise_search_prompt_with_relevancy_check_and_citation_template.jinja2,sha256=b_8ZzK1ar0SvLZRFS8d9tHWvYS7Xb8xPJiBKg-UcyAM,3743
604
612
  rasa/core/policies/flow_policy.py,sha256=Ulh3pjc1Yi4oJ4oLdmMgv9_SxcqO39m2AohhZaOEJgM,7510
605
613
  rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
606
- rasa/core/policies/flows/agent_executor.py,sha256=sk0MpQXRT6S5jQfhZMLB78MgnrQUhrNaG9y0thG5Ohk,21569
614
+ rasa/core/policies/flows/agent_executor.py,sha256=l8z0xzRGGRzifK2f3VL1HYw-DnUaXvcYCtJ6UQETbrc,21884
607
615
  rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
608
616
  rasa/core/policies/flows/flow_executor.py,sha256=mr6w_ERPkaxP_s38nABaR-APDbPCk73VGGk53P-Rpik,31596
609
617
  rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
@@ -671,9 +679,9 @@ rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68
671
679
  rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
672
680
  rasa/dialogue_understanding/commands/set_slot_command.py,sha256=VWyv98yk65Jg-unKmytrbNeEsdNUfVkq7TrUzAMNQAs,7299
673
681
  rasa/dialogue_understanding/commands/skip_question_command.py,sha256=SlPeY0__XiRocUzBVW13kecxVNL5t7XtbOKvvVIWccQ,3387
674
- rasa/dialogue_understanding/commands/start_flow_command.py,sha256=_IX6MoR-bPWxvnJdb985FGQBP4WLm-XJPVwJCULHSGk,7460
682
+ rasa/dialogue_understanding/commands/start_flow_command.py,sha256=eTpYu6WCQl9COxQVYbdmiIdABuVFiwX1ir4ZDeA5aWw,7756
675
683
  rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
676
- rasa/dialogue_understanding/commands/utils.py,sha256=ftnMz1wpAwjvldPiNnzNN5GfPdB6JrBdnv3kB8xVuqY,8787
684
+ rasa/dialogue_understanding/commands/utils.py,sha256=h2oiBbyULRDzTYrJaL4eDobMr4c2LUWG5t3HMvqw7to,9121
677
685
  rasa/dialogue_understanding/constants.py,sha256=_kB0edGV23uvhujlF193N2jk6YG0R6LC599YDX5B5vo,129
678
686
  rasa/dialogue_understanding/generator/__init__.py,sha256=SlAfNRrmBi6dqhnYdFTJDOj3jiOy4f6TETYwi0inEGE,1129
679
687
  rasa/dialogue_understanding/generator/_jinja_filters.py,sha256=KuK7nGKvKzKJz6Wg3AmrLFvzneGgIyeK825MCE379wc,248
@@ -683,7 +691,7 @@ rasa/dialogue_understanding/generator/command_parser_validator.py,sha256=qUIaKBR
683
691
  rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
684
692
  rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
685
693
  rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=TF0QEM7q8KpyDYIJDu0Ym6K-ObjCOw4EEUbGXdpgPvY,17732
686
- rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=JD833DK8IX35MEw4eWxjxY3d53GvbqlFJQ9DXT1YGl8,25167
694
+ rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=y3Cy92L10DnVNwE8NuzdSWtCy2kBkeE_h1jVfC3GccQ,25245
687
695
  rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=CMzsivtKfQZYN8PbDYIBH_1RJg856JSjUx8HqLvbvx4,2589
688
696
  rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
689
697
  rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
@@ -701,9 +709,9 @@ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_
701
709
  rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_claude_3_5_sonnet_20240620_template.jinja2,sha256=r8EKbUFCWV2_x8rZIAZgebEBkusdqokGQR65fiTE5a4,4863
702
710
  rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_gpt_4o_2024_11_20_template.jinja2,sha256=IHoD5g3YlZjMLCAjlNtp2NmFsyyio7L1LxLlDvXrZ7Y,4862
703
711
  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=rNUcGXp5JiTAPRQd_ILIekm1ke9bYhhP5-03isvPaJM,6557
705
- rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=xw27cU30ooI8ouiaG8PnrXddSctSewghB2CCJNuNYy4,6538
706
- rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py,sha256=dgVGzNlcwbKq-2f6tJ1cWFXoNdGwS5_52wGUVD2h4iY,18054
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
707
715
  rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=_cT866aB8TuSqe6_ybPaSQVCY0l4qgX4lg6QZUUryo4,3494
708
716
  rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
709
717
  rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -748,7 +756,7 @@ rasa/dialogue_understanding_test/command_metrics.py,sha256=yOugD2JitTmarD__Ktf15
748
756
  rasa/dialogue_understanding_test/constants.py,sha256=G63FEzswDUOonTxoXQicEJwI6ICkSx3YP1ILkGH1ijw,790
749
757
  rasa/dialogue_understanding_test/du_test_case.py,sha256=4Z5Ei21OdqN2MEHEKz-NGzzv0zuPwUkOjzNjEWQhnVA,17038
750
758
  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=MAaqivgb5EKX4Obv5P4ojE--uAWmAD2bmPjWkNat72s,11731
759
+ rasa/dialogue_understanding_test/du_test_runner.py,sha256=XmbVoSIH14tFFA34v1kMA1SPvbT2chNHlh0iFvmsRUA,11733
752
760
  rasa/dialogue_understanding_test/du_test_schema.yml,sha256=nxezEXfnoc-oVZXDqHRg-Yk4fkDF3t2VatRRMdSSE2o,4773
753
761
  rasa/dialogue_understanding_test/io.py,sha256=doMboRm9G6KaxmfsOYhsa2iz8zghh4bLMa3XTIV6DC0,16250
754
762
  rasa/dialogue_understanding_test/test_case_simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -768,7 +776,7 @@ rasa/e2e_test/e2e_test_converter.py,sha256=bcSg-hWKPGvZBip6PKPvYAcgvSUCU5uXmC9D7
768
776
  rasa/e2e_test/e2e_test_converter_prompt.jinja2,sha256=EMy-aCd7jLARHmwAuZUGT5ABnNHjR872_pexRIMGA7c,2791
769
777
  rasa/e2e_test/e2e_test_coverage_report.py,sha256=UGQ3np2p_gtnhl17K5y886STiX9xBn95GVuN9LGIpGY,11344
770
778
  rasa/e2e_test/e2e_test_result.py,sha256=qVurjFC4cAWIY7rOsc-A-4nIdcnnw98TaK86-bDwI7Y,1649
771
- rasa/e2e_test/e2e_test_runner.py,sha256=Rz-IG57Zb-nw7AtZU1UBUY_YppzZQBlYFdnG9iW1704,48388
779
+ rasa/e2e_test/e2e_test_runner.py,sha256=PDSOE666jpssg25LU32a6JeNUHhuEVvJ5CblyeLZ61U,48390
772
780
  rasa/e2e_test/e2e_test_schema.yml,sha256=0WG0I3baTRc76lff3UjQ8vGRzMUoV6qcE8r9adOAlCU,5638
773
781
  rasa/e2e_test/llm_judge_prompts/answer_relevance_prompt_template.jinja2,sha256=6Ddszg4Y6sIvhH7C1jjEAArpzke48mfCOa2KUQYbNVA,2725
774
782
  rasa/e2e_test/llm_judge_prompts/groundedness_prompt_template.jinja2,sha256=jCgDbZvWn5fncr4zvB5UQSK1VJu9xDQtpY4B8GKtlmA,8226
@@ -933,8 +941,8 @@ rasa/shared/agents/auth/auth_strategy/__init__.py,sha256=XjTLRSWzcHB0S2_bA8lewqj
933
941
  rasa/shared/agents/auth/auth_strategy/agent_auth_strategy.py,sha256=EmWtNe6ubGCaIg11L9nYbdwmp-zmswj2D60YfYnGz6c,1609
934
942
  rasa/shared/agents/auth/auth_strategy/api_key_auth_strategy.py,sha256=K44K0FioGNbFeZHjjynEXHV4fUrrqlkPZvryCiWS7ac,1454
935
943
  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=bW41A78Nj4heAaok3aMCBI8y1SLb9eSgvrUMwfMzKQ0,6126
937
- rasa/shared/agents/auth/constants.py,sha256=jph6Hr6nR_-1Vf2iNXLmeSXrO1q7cxILoRs9lsY5g7Y,404
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
938
946
  rasa/shared/agents/auth/types.py,sha256=tvcYZEwh0UpjEjgwMLuj8-h3AMSx_uQw-Hi504rHoqI,294
939
947
  rasa/shared/agents/utils.py,sha256=Dux_STACmYlni-c4c8EpdBX9SmcFofaJI8prwsKlNeM,1011
940
948
  rasa/shared/constants.py,sha256=HMHc0UKJKWpZYP98lDU7vk034gPunXoKzHXt_jxYoJA,13066
@@ -956,7 +964,7 @@ rasa/shared/core/flows/flows_yaml_schema.json,sha256=IifTzeXuB73gwD4lK7ibHNUS2E_
956
964
  rasa/shared/core/flows/nlu_trigger.py,sha256=ujLXFo5WjIwtwRVEdxZkaE2fbd4KEmayeFPAd1mF26I,4352
957
965
  rasa/shared/core/flows/steps/__init__.py,sha256=jvJp02o9_Wx-rZeQ3SYiLVMpO6ulS1yKuiiKg0ld_nE,655
958
966
  rasa/shared/core/flows/steps/action.py,sha256=fRtNXLCK-r74tX3-rHyn_eKv7cRYRoNfEW2lCK0VdrQ,1920
959
- rasa/shared/core/flows/steps/call.py,sha256=92B_joz1vE2GAYYzwrBkey39VxHn_9ezRA0R5esg8A4,4565
967
+ rasa/shared/core/flows/steps/call.py,sha256=fRPQ5dY6Kl_338dJCYt3wTdLMeiLHkU880AottUprSo,4582
960
968
  rasa/shared/core/flows/steps/collect.py,sha256=aEryTNsmSClZdp9wuDsWleEDQZ9A-cgSbR4tP818aBw,8622
961
969
  rasa/shared/core/flows/steps/constants.py,sha256=DCxrEUGbJciBknHm-_t4tmcnH19IZKP-WYxqix9gm7M,132
962
970
  rasa/shared/core/flows/steps/continuation.py,sha256=5Rzayr80FsgS4bAajuRObVvVcLqPEh9nxGbT2te85xY,1498
@@ -1100,7 +1108,7 @@ rasa/studio/results_logger.py,sha256=lwKROoQjzzJVnFoceLQ-z-5Hg35TfHo-8R4MDrMLYHY
1100
1108
  rasa/studio/train.py,sha256=ogidFANyiaDmYgqBK5IaPwOUCYQpXpymKhU4jmnR6kY,4265
1101
1109
  rasa/studio/upload.py,sha256=7_DzUICRUQwgi-dnExXzx4tp_ghqFa17fiuw2fx66h0,21778
1102
1110
  rasa/studio/utils.py,sha256=WgPbmMcdb3yuZU36zxFqUkJwqi5ma7TZT4Y-mXYe54k,1429
1103
- rasa/telemetry.py,sha256=LPcWKOpL0NQt2QmfRP1ClutTUyVGKvOokl7_FvvyB5o,74369
1111
+ rasa/telemetry.py,sha256=dg-e0Ejz0ucJ4dDYuOYIAGPjFKqT8hHUZfufg238HZ4,74344
1104
1112
  rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1105
1113
  rasa/tracing/config.py,sha256=OvN6ua7h1SaSQPvBXMdq3PsCwZZnXLyr3_AOcfapGNQ,14552
1106
1114
  rasa/tracing/constants.py,sha256=oDjgQaO1_CtcJX3xleC4q4z-Ela2XLRHS1mwzOIRkis,4379
@@ -1147,10 +1155,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
1147
1155
  rasa/utils/train_utils.py,sha256=LJO7mM6ptYvLMZr4HDl3fBkPHb7-BVFXuuZseh4Pp68,22409
1148
1156
  rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
1149
1157
  rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
1150
- rasa/validator.py,sha256=3gCAEY-PbSGMNXpZ1ifEjdZzd6RA3uDwGKATRHH04nY,83479
1151
- rasa/version.py,sha256=T0r0J0UgvFmzAmCkD1rTn6ltnq38jjKrF9BZv4tZ650,120
1152
- rasa_pro-3.14.0rc2.dist-info/METADATA,sha256=eK586ht40xYxymLuv11vYHbFluIkavvtcL2uEv6nklg,11601
1153
- rasa_pro-3.14.0rc2.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
1154
- rasa_pro-3.14.0rc2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
1155
- rasa_pro-3.14.0rc2.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
1156
- rasa_pro-3.14.0rc2.dist-info/RECORD,,
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,,
@@ -1,57 +0,0 @@
1
- test_cases:
2
- # one of these test cases will fail since the speed test will be randomly selected
3
- - test_case: Solving Internet slow issue
4
- steps:
5
- - user: "Hey, my internet is very slow. What's going on?"
6
- assertions:
7
- - flow_started: "fix_internet_slow"
8
- - bot_uttered:
9
- utter_name: "utter_acknowledge_issue"
10
- - action_executed: action_sleep_few_sec
11
- - flow_started: "run_diagnostics"
12
- - bot_uttered:
13
- utter_name: "utter_communicate_run_diagnosticss"
14
- - action_executed: "actions_run_speed_test"
15
- - bot_uttered:
16
- utter_name: "utter_acknowledge_speed_test_not_good"
17
- - action_executed: "action_sleep_few_sec"
18
- - bot_uttered:
19
- utter_name: "utter_propose_reboot_router_solution"
20
- - action_executed: "action_sleep_few_sec"
21
- - flow_started: "reboot_router"
22
- - bot_uttered:
23
- utter_name: "utter_explain_reboot_router"
24
- - bot_uttered:
25
- utter_name: "utter_ask_reboot_router"
26
- buttons:
27
- - title: "Done"
28
- payload: "/SetSlots(reboot_router=True)"
29
- - title: "Facing a problem"
30
- payload: "/SetSlots(reboot_router=False)"
31
- - user: "/SetSlots(reboot_router=False)"
32
- assertions:
33
- - slot_was_set:
34
- - name: "reboot_router"
35
- value: False
36
- - flow_started: "human_handoff"
37
- #
38
- - test_case: Solving Internet issue not slow
39
- steps:
40
- - user: "Hey, my internet is very slow. What's going on?"
41
- assertions:
42
- - flow_started: "fix_internet_slow"
43
- - bot_uttered:
44
- utter_name: "utter_acknowledge_issue"
45
- - action_executed: action_sleep_few_sec
46
- - flow_started: "run_diagnostics"
47
- - bot_uttered:
48
- utter_name: "utter_speed_network_not_issue"
49
- - action_executed: "actions_run_speed_test"
50
- - bot_uttered:
51
- utter_name: "utter_propose_other_solutions"
52
- - action_executed: "action_sleep_few_sec"
53
- - bot_uttered:
54
- utter_name: "utter_ask_more_help_needed"
55
- - user: "/SetSlots(more_help_needed=True)"
56
- assertions:
57
- - flow_started: "human_handoff"