rasa-pro 3.12.0.dev4__py3-none-any.whl → 3.12.0.dev5__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 (22) hide show
  1. rasa/dialogue_understanding/commands/can_not_handle_command.py +2 -2
  2. rasa/dialogue_understanding/commands/cancel_flow_command.py +2 -2
  3. rasa/dialogue_understanding/commands/change_flow_command.py +2 -2
  4. rasa/dialogue_understanding/commands/chit_chat_answer_command.py +2 -2
  5. rasa/dialogue_understanding/commands/clarify_command.py +2 -2
  6. rasa/dialogue_understanding/commands/human_handoff_command.py +2 -2
  7. rasa/dialogue_understanding/commands/knowledge_answer_command.py +2 -2
  8. rasa/dialogue_understanding/commands/repeat_bot_messages_command.py +2 -2
  9. rasa/dialogue_understanding/commands/set_slot_command.py +2 -2
  10. rasa/dialogue_understanding/commands/skip_question_command.py +2 -2
  11. rasa/dialogue_understanding/commands/start_flow_command.py +2 -2
  12. rasa/dialogue_understanding/commands/utils.py +1 -1
  13. rasa/dialogue_understanding/generator/command_parser.py +1 -1
  14. rasa/dialogue_understanding/generator/llm_based_command_generator.py +2 -1
  15. rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2 +39 -41
  16. rasa/shared/utils/llm.py +1 -1
  17. rasa/version.py +1 -1
  18. {rasa_pro-3.12.0.dev4.dist-info → rasa_pro-3.12.0.dev5.dist-info}/METADATA +1 -1
  19. {rasa_pro-3.12.0.dev4.dist-info → rasa_pro-3.12.0.dev5.dist-info}/RECORD +22 -22
  20. {rasa_pro-3.12.0.dev4.dist-info → rasa_pro-3.12.0.dev5.dist-info}/NOTICE +0 -0
  21. {rasa_pro-3.12.0.dev4.dist-info → rasa_pro-3.12.0.dev5.dist-info}/WHEEL +0 -0
  22. {rasa_pro-3.12.0.dev4.dist-info → rasa_pro-3.12.0.dev5.dist-info}/entry_points.txt +0 -0
@@ -74,7 +74,7 @@ class CannotHandleCommand(Command):
74
74
 
75
75
  def to_dsl(self) -> str:
76
76
  """Converts the command to a DSL string."""
77
- return "CannotHandle()"
77
+ return "cannot handle"
78
78
 
79
79
  @classmethod
80
80
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> CannotHandleCommand:
@@ -86,4 +86,4 @@ class CannotHandleCommand(Command):
86
86
 
87
87
  @staticmethod
88
88
  def regex_pattern() -> str:
89
- return r"CannotHandle\(\)"
89
+ return r"^cannot handle$"
@@ -124,7 +124,7 @@ class CancelFlowCommand(Command):
124
124
 
125
125
  def to_dsl(self) -> str:
126
126
  """Converts the command to a DSL string."""
127
- return "CancelFlow()"
127
+ return "cancel"
128
128
 
129
129
  @classmethod
130
130
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> CancelFlowCommand:
@@ -133,4 +133,4 @@ class CancelFlowCommand(Command):
133
133
 
134
134
  @staticmethod
135
135
  def regex_pattern() -> str:
136
- return r"CancelFlow\(\)"
136
+ return r"^cancel$"
@@ -48,7 +48,7 @@ class ChangeFlowCommand(Command):
48
48
 
49
49
  def to_dsl(self) -> str:
50
50
  """Converts the command to a DSL string."""
51
- return "ChangeFlow()"
51
+ return "change"
52
52
 
53
53
  @staticmethod
54
54
  def from_dsl(match: re.Match, **kwargs: Any) -> ChangeFlowCommand:
@@ -57,4 +57,4 @@ class ChangeFlowCommand(Command):
57
57
 
58
58
  @staticmethod
59
59
  def regex_pattern() -> str:
60
- return r"ChangeFlow\(\)"
60
+ return r"^change"
@@ -59,7 +59,7 @@ class ChitChatAnswerCommand(FreeFormAnswerCommand):
59
59
 
60
60
  def to_dsl(self) -> str:
61
61
  """Converts the command to a DSL string."""
62
- return "ChitChat()"
62
+ return "chat"
63
63
 
64
64
  @classmethod
65
65
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> ChitChatAnswerCommand:
@@ -68,4 +68,4 @@ class ChitChatAnswerCommand(FreeFormAnswerCommand):
68
68
 
69
69
  @staticmethod
70
70
  def regex_pattern() -> str:
71
- return r"ChitChat\(\)"
71
+ return r"^chat$"
@@ -89,7 +89,7 @@ class ClarifyCommand(Command):
89
89
 
90
90
  def to_dsl(self) -> str:
91
91
  """Converts the command to a DSL string."""
92
- return f"Clarify({', '.join(self.options)})"
92
+ return f"clarify {' '.join(self.options)}"
93
93
 
94
94
  @classmethod
95
95
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> Optional[ClarifyCommand]:
@@ -99,4 +99,4 @@ class ClarifyCommand(Command):
99
99
 
100
100
  @staticmethod
101
101
  def regex_pattern() -> str:
102
- return r"Clarify\(([\"\'a-zA-Z0-9_, ]*)\)"
102
+ return r"^clarify([\"\'a-zA-Z0-9_, ]*)$"
@@ -66,7 +66,7 @@ class HumanHandoffCommand(Command):
66
66
 
67
67
  def to_dsl(self) -> str:
68
68
  """Converts the command to a DSL string."""
69
- return "HumanHandoff()"
69
+ return "hand over"
70
70
 
71
71
  @classmethod
72
72
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> HumanHandoffCommand:
@@ -75,4 +75,4 @@ class HumanHandoffCommand(Command):
75
75
 
76
76
  @staticmethod
77
77
  def regex_pattern() -> str:
78
- return r"HumanHandoff\(\)"
78
+ return r"^hand over$"
@@ -59,7 +59,7 @@ class KnowledgeAnswerCommand(FreeFormAnswerCommand):
59
59
 
60
60
  def to_dsl(self) -> str:
61
61
  """Converts the command to a DSL string."""
62
- return "SearchAndReply()"
62
+ return "search"
63
63
 
64
64
  @classmethod
65
65
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> KnowledgeAnswerCommand:
@@ -68,4 +68,4 @@ class KnowledgeAnswerCommand(FreeFormAnswerCommand):
68
68
 
69
69
  @staticmethod
70
70
  def regex_pattern() -> str:
71
- return r"SearchAndReply\(\)"
71
+ return r"^search$"
@@ -60,7 +60,7 @@ class RepeatBotMessagesCommand(Command):
60
60
 
61
61
  def to_dsl(self) -> str:
62
62
  """Converts the command to a DSL string."""
63
- return "RepeatLastBotMessages()"
63
+ return "repeat message"
64
64
 
65
65
  @classmethod
66
66
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> RepeatBotMessagesCommand:
@@ -69,4 +69,4 @@ class RepeatBotMessagesCommand(Command):
69
69
 
70
70
  @staticmethod
71
71
  def regex_pattern() -> str:
72
- return r"RepeatLastBotMessages\(\)"
72
+ return r"^repeat message$"
@@ -170,7 +170,7 @@ class SetSlotCommand(Command):
170
170
 
171
171
  def to_dsl(self) -> str:
172
172
  """Converts the command to a DSL string."""
173
- return f"SetSlot({self.name}, {self.value})"
173
+ return f"set {self.name} {self.value}"
174
174
 
175
175
  @classmethod
176
176
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> SetSlotCommand:
@@ -181,4 +181,4 @@ class SetSlotCommand(Command):
181
181
 
182
182
  @staticmethod
183
183
  def regex_pattern() -> str:
184
- return r"""SetSlot\(['"]?([a-zA-Z_][a-zA-Z0-9_-]*)['"]?, ?['"]?(.*)['"]?\)"""
184
+ return r"""^set ['"]?([a-zA-Z_][a-zA-Z0-9_-]*)['"]? ['"]?(.+?)['"]?$"""
@@ -75,7 +75,7 @@ class SkipQuestionCommand(Command):
75
75
 
76
76
  def to_dsl(self) -> str:
77
77
  """Converts the command to a DSL string."""
78
- return "SkipQuestion()"
78
+ return "skip"
79
79
 
80
80
  @classmethod
81
81
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> SkipQuestionCommand:
@@ -84,4 +84,4 @@ class SkipQuestionCommand(Command):
84
84
 
85
85
  @staticmethod
86
86
  def regex_pattern() -> str:
87
- return r"SkipQuestion\(\)"
87
+ return r"^skip$"
@@ -110,7 +110,7 @@ class StartFlowCommand(Command):
110
110
 
111
111
  def to_dsl(self) -> str:
112
112
  """Converts the command to a DSL string."""
113
- return f"StartFlow({self.flow})"
113
+ return f"start {self.flow}"
114
114
 
115
115
  @classmethod
116
116
  def from_dsl(cls, match: re.Match, **kwargs: Any) -> Optional[StartFlowCommand]:
@@ -119,4 +119,4 @@ class StartFlowCommand(Command):
119
119
 
120
120
  @staticmethod
121
121
  def regex_pattern() -> str:
122
- return r"StartFlow\(['\"]?([a-zA-Z0-9_-]+)['\"]?\)"
122
+ return r"^start ['\"]?([a-zA-Z0-9_-]+)['\"]?$"
@@ -27,7 +27,7 @@ def extract_cleaned_options(options_str: str) -> List[str]:
27
27
  """Extract and clean options from a string."""
28
28
  return sorted(
29
29
  opt.strip().strip('"').strip("'")
30
- for opt in options_str.split(",")
30
+ for opt in options_str.split(" ")
31
31
  if opt.strip()
32
32
  )
33
33
 
@@ -125,7 +125,7 @@ def _parse_standard_commands(
125
125
  commands: List[Command] = []
126
126
  for command_clz in standard_commands:
127
127
  pattern = _get_compiled_pattern(command_clz.regex_pattern())
128
- if match := pattern.search(action):
128
+ if match := pattern.search(action.strip()):
129
129
  parsed_command = command_clz.from_dsl(match, **kwargs)
130
130
  if _additional_parsing_fn := _get_additional_parsing_logic(command_clz):
131
131
  parsed_command = _additional_parsing_fn(parsed_command, flows, **kwargs)
@@ -356,7 +356,8 @@ class LLMBasedCommandGenerator(
356
356
  "slots": slots_with_info,
357
357
  }
358
358
  )
359
- return result
359
+
360
+ return sorted(result, key=lambda x: x["name"])
360
361
 
361
362
  @staticmethod
362
363
  def is_extractable(
@@ -1,60 +1,58 @@
1
1
  Your task is to analyze the current conversation context and generate a list of actions to start new business processes that we call flows, to extract slots, or respond to small talk and knowledge requests.
2
2
 
3
- These are the flows that can be started, with their description and slots:
3
+
4
+ ## Available Actions:
5
+ * Starting a flow, described by "start flow_name". For example, "start transfer_money" or "start list_contacts"
6
+ * Slot setting, described by "set slot_name slot_value". For example, "set transfer_money_recipient Freddy". Can be used to correct and change previously set values.
7
+ * Cancelling the current flow, described by "cancel"
8
+ * Clarifying which flow should be started in ambiguous cases. For example, "clarify list_contacts add_contact remove_contact" if the user just wrote "contacts" and there are multiple potential candidates.
9
+ * Skipping the current question when the user explicitly asks for it, described by "skip".
10
+ * Responding to knowledge-oriented user messages, described by "search"
11
+ * Responding to a casual, non-task-oriented user message, described by "chat".
12
+ * Handing over to a human, in case the user seems frustrated or explicitly asks to speak to one, described by "hand over".
13
+
14
+
15
+ ## General Tips
16
+ * Do not fill slots with abstract values or placeholders.
17
+ * Only use information provided by the user.
18
+ * Use clarification in ambiguous cases.
19
+ * Multiple flows can be started. If a user wants to digress into a second flow, you do not need to cancel the current flow.
20
+ * Strictly adhere to the provided action format.
21
+ * For categorical slots try to match the user message with potential slot values. Use "other" if you cannot match it
22
+ * Focus on the last message and take it one step at a time.
23
+ * Use the previous conversation steps only to aid understanding.
24
+
25
+
26
+ ## Available Flows:
4
27
  {% for flow in available_flows %}
5
- {{ flow.name }}: {{ flow.description }}
28
+ * {{ flow.name }}: {{ flow.description }}
6
29
  {% for slot in flow.slots -%}
7
- slot: {{ slot.name }}{% if slot.description %} ({{ slot.description }}){% endif %}{% if slot.allowed_values %}, allowed values: {{ slot.allowed_values }}{% endif %}
30
+ * {{ slot.name }}{% if slot.description %} ({{ slot.description }}){% endif %}{% if slot.allowed_values %}, allowed values: {{ slot.allowed_values }}{% endif %}
8
31
  {% endfor %}
9
32
  {%- endfor %}
10
33
 
11
- ===
12
- Here is what happened previously in the conversation:
13
- {{ current_conversation }}
14
34
 
15
- ===
35
+ ## Current State
16
36
  {% if current_flow != None %}
17
37
  You are currently in the flow "{{ current_flow }}".
18
38
  You have just asked the user for the slot "{{ current_slot }}"{% if current_slot_description %} ({{ current_slot_description }}){% endif %}.
19
39
 
20
40
  {% if flow_slots|length > 0 %}
21
- Here are the slots of the currently active flow:
41
+ Here are the slots of the flow "{{ current_flow }}":
22
42
  {% for slot in flow_slots -%}
23
- - name: {{ slot.name }}, value: {{ slot.value }}, type: {{ slot.type }}, description: {{ slot.description}}{% if slot.allowed_values %}, allowed values: {{ slot.allowed_values }}{% endif %}
43
+ * name: {{ slot.name }}, value: {{ slot.value }}, type: {{ slot.type }}, description: {{ slot.description}}{% if slot.allowed_values %}, allowed values: {{ slot.allowed_values }}{% endif %}
24
44
  {% endfor %}
25
45
  {% endif %}
26
46
  {% else %}
27
- You are currently not in any flow and so there are no active slots.
28
- This means you can only set a slot if you first start a flow that requires that slot.
29
- {% endif %}
30
- If you start a flow, first start the flow and then optionally fill that flow's slots with information the user provided in their message.
31
-
32
- The user just said """{{ user_message }}""".
33
-
34
- ===
35
- Based on this information generate a list of actions you want to take. Your job is to start flows and to fill slots where appropriate. Any logic of what happens afterwards is handled by the flow engine. These are your available actions:
36
- * Slot setting, described by "SetSlot(slot_name, slot_value)". An example would be "SetSlot(recipient, Freddy)"
37
- * Starting another flow, described by "StartFlow(flow_name)". An example would be "StartFlow(transfer_money)"
38
- * Cancelling the current flow, described by "CancelFlow()"
39
- * Clarifying which flow should be started. An example would be Clarify(list_contacts, add_contact, remove_contact) if the user just wrote "contacts" and there are multiple potential candidates. It also works with a single flow name to confirm you understood correctly, as in Clarify(transfer_money).
40
- * Intercepting and handle user messages with the intent to bypass the current step in the flow, described by "SkipQuestion()". Examples of user skip phrases are: "Go to the next question", "Ask me something else".
41
- * Responding to knowledge-oriented user messages, described by "SearchAndReply()"
42
- * Responding to a casual, non-task-oriented user message, described by "ChitChat()".
43
- * Handing off to a human, in case the user seems frustrated or explicitly asks to speak to one, described by "HumanHandoff()".
44
- {% if is_repeat_command_enabled %}
45
- * Repeat the last bot messages, described by "RepeatLastBotMessages()". This is useful when the user asks to repeat the last bot messages.
47
+ You are currently not inside any flow.
46
48
  {% endif %}
47
49
 
48
- ===
49
- Write out the actions you want to take, one per line, in the order they should take place.
50
- Do not fill slots with abstract values or placeholders.
51
- Only use information provided by the user.
52
- Only start a flow if it's completely clear what the user wants. Imagine you were a person reading this message. If it's not 100% clear, clarify the next step.
53
- Don't be overly confident. Take a conservative approach and clarify before proceeding.
54
- If the user asks for two things which seem contradictory, clarify before starting a flow.
55
- If it's not clear whether the user wants to skip the step or to cancel the flow, cancel the flow.
56
- Strictly adhere to the provided action types listed above.
57
- Focus on the last message and take it one step at a time.
58
- Use the previous conversation steps only to aid understanding.
59
-
60
- Your action list:
50
+
51
+ ## Conversation History
52
+ {{ current_conversation }}
53
+
54
+
55
+ ## Task
56
+ Create an action list with one action per line in response to the users last message: """{{ user_message }}""".
57
+
58
+ Your action list:
rasa/shared/utils/llm.py CHANGED
@@ -680,7 +680,7 @@ def allowed_values_for_slot(slot: Slot) -> Union[str, None]:
680
680
  if isinstance(slot, BooleanSlot):
681
681
  return str([True, False])
682
682
  if isinstance(slot, CategoricalSlot):
683
- return str([v for v in slot.values if v != "__other__"])
683
+ return str([v for v in slot.values if v != "__other__"] + ["other"])
684
684
  else:
685
685
  return None
686
686
 
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.12.0dev4"
3
+ __version__ = "3.12.0.dev5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rasa-pro
3
- Version: 3.12.0.dev4
3
+ Version: 3.12.0.dev5
4
4
  Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
5
5
  Home-page: https://rasa.com
6
6
  Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
@@ -358,36 +358,36 @@ rasa/dialogue_understanding/coexistence/intent_based_router.py,sha256=JlYBZdScnh
358
358
  rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=UTLMZpynSRt8qnQSSV-dTgFQbBHaMEgrLIUWCMyH1BE,11354
359
359
  rasa/dialogue_understanding/coexistence/router_template.jinja2,sha256=CHWFreN0sv1EbPh-hf5AlCt3zxy2_llX1Pdn9Q11Y18,357
360
360
  rasa/dialogue_understanding/commands/__init__.py,sha256=F-pLETYRUjhIkjjDfXGUuPsK_ac1HcLmJkrUUP0RhME,2259
361
- rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=2ferTQRUR_Ibr2Qa-Dma71DzVT6Tfy3-6iUhFrFFeZ4,2831
362
- rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=Um2ouQkfR_Za66uRiKjjZKI5fuYG76uvk3hFW3w4XV8,4625
363
- rasa/dialogue_understanding/commands/change_flow_command.py,sha256=8tjULfNQXsH3ZWTsMlrzbVgHLU26catdHTWzcYgSBWI,1735
364
- rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=GtYU3FtpwoAQti2_zW_T3x7iJABu2Yyb0eqUd7takhg,2152
365
- rasa/dialogue_understanding/commands/clarify_command.py,sha256=y5iEESwalNmQ7MZDbS5ut5KZwqEp_4GF6kBrvwUlRBE,3432
361
+ rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=z7aGn7aBMdXTsn7lzN1RvXlYi8WN7gtFm21qcJF8Hko,2829
362
+ rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=Tc5xXQw_P8XlIApL6CblFf1nnfnWGUqsMSIkVV_K_bE,4613
363
+ rasa/dialogue_understanding/commands/change_flow_command.py,sha256=gQyL1UqRNPdYXKVQi3hlAHOdpcCWLkhL34M3A_PzSR0,1722
364
+ rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=JnOMAaWhyynlTTzLpi663BOSs8hYNZyxrjUnSq0Qle8,2140
365
+ rasa/dialogue_understanding/commands/clarify_command.py,sha256=7ZlgA_gmOCj0xcP3sCNn7frk75SqiuWpS0O0HWuxjNE,3428
366
366
  rasa/dialogue_understanding/commands/command.py,sha256=riYYO0Lvm7T2vydDOfFFi7IquJWdyX_jH8d7qX0PB2c,2993
367
367
  rasa/dialogue_understanding/commands/correct_slots_command.py,sha256=lnSfYXNdTwQflOeMRXh1rV4qn6Bgx85S1yaXHtiKKAs,10461
368
368
  rasa/dialogue_understanding/commands/error_command.py,sha256=LTEsxkGGGZR6wEEGuTtQ4K4EK_u2UFhNK4eAKyPfyME,2436
369
369
  rasa/dialogue_understanding/commands/free_form_answer_command.py,sha256=XlQrHXrcOemzu1LHZiDhBAluiSlnUQ2V7ET5Z-aG7gc,224
370
370
  rasa/dialogue_understanding/commands/handle_code_change_command.py,sha256=Cp2e1iD0zacXmljJ8vDXHJu9Fp6BwB7cGx8NF748akw,2192
371
- rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=WlGswi5Wlc3jsXp6hsU3ANMdZMqGk33rxeX0kAyiwgw,2285
372
- rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=S2AP2_H-KFnSRUKqG3kz083dR_JTXKMWkjhzi9mEDPQ,2166
371
+ rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=bxSTNbLz05nN_gL14TsVural4S9-Du1teVXy1JDASP8,2275
372
+ rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=IvFcV8rhnDchzvWfJncJ34OFkXHiQ3yWytkGFWNuSho,2146
373
373
  rasa/dialogue_understanding/commands/noop_command.py,sha256=aIaLBjSV84qy9X4aGlJfMIYhF57maH5CiKNWL_-giD4,1485
374
- rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=9SaRXsqdgC5p-2JIa8T3fsc6sVcsLf1FL90HtjW5Uek,2243
374
+ rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=6oitCpsYtLjOUBGe4cIx2OOZnw9ygi4nKwWOg66R2aA,2225
375
375
  rasa/dialogue_understanding/commands/restart_command.py,sha256=vvmucwlVtfh6VMgdOn5hZfsP9U5HhfbDeBSG2IndX0Y,1639
376
376
  rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68_kV1Hv4i317bbeBeVHHyhW_A7r5yzs,1770
377
377
  rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
378
- rasa/dialogue_understanding/commands/set_slot_command.py,sha256=NgrN3IgzjCCIWNjrySdSUyQBQSlomwdqYUFOE1HZSRw,5994
379
- rasa/dialogue_understanding/commands/skip_question_command.py,sha256=45NvtkqMaNX05T2KmTInwGSTWAeRokgdF7CXWpHnL48,2608
380
- rasa/dialogue_understanding/commands/start_flow_command.py,sha256=yQJNiAey5ETInxwYSNARabCL2f2QDVKuBQrIyvtPt1A,3793
378
+ rasa/dialogue_understanding/commands/set_slot_command.py,sha256=ENpMuAbrlNA0hX3ABbIxQPNAL4a7sk7HZvNTZGhoiRE,5982
379
+ rasa/dialogue_understanding/commands/skip_question_command.py,sha256=ZPstoD-A2jnW8AszKsZ10WtDEeAtoCh6swESwk7fpDA,2588
380
+ rasa/dialogue_understanding/commands/start_flow_command.py,sha256=WYgynvL1sqlOr_I5VXI5OHqWaSRUexvFUvEsgI9WvPw,3783
381
381
  rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
382
- rasa/dialogue_understanding/commands/utils.py,sha256=vz3fNF31cCIUoWQ6HP6_nI4E30MBFIfacCZb6QKx634,1748
382
+ rasa/dialogue_understanding/commands/utils.py,sha256=OV6hJjlb2WWOHCaIxtRXbbKHKSNGX2het_KZNoomrBI,1748
383
383
  rasa/dialogue_understanding/constants.py,sha256=YcELaIss69Hnroclvn90Dl4Suk3S6e3t0UoIbUaXG2A,83
384
384
  rasa/dialogue_understanding/generator/__init__.py,sha256=Ykeb2wQ1DuiUWAWO0hLIPSTK1_Ktiq9DZXF6D3ugN78,764
385
385
  rasa/dialogue_understanding/generator/command_generator.py,sha256=OTyE9_CcorpjTOgdI-u0J9ryBwlDdd2foJLA3jQJ9_Y,11959
386
- rasa/dialogue_understanding/generator/command_parser.py,sha256=HWLKJoXBOQVByk__rVbReJJ8u7au9Wit0MXvuHEAZHg,6422
386
+ rasa/dialogue_understanding/generator/command_parser.py,sha256=E-P1giFoSzPwgg7FqPEx0-4XWUAKidn8HT2Bn70DzmM,6430
387
387
  rasa/dialogue_understanding/generator/constants.py,sha256=ntP5xmTlS3b_6uVT7LKvWzxbmf5_9tWZ5eFY1RLBtqU,716
388
388
  rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
389
389
  rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=wlGnMj17-X1-siQmdSvOd7K61sRzBf82MQEL2pqDQMI,17891
390
- rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=3y9YBNyjipL4b9gbjvqe75dIPmN3GAveS5MiSpqk9OM,16115
390
+ rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=Tbrm8Y39lnHEZScWy-tVaBS45R5PJpJgLYwXHw6iZPs,16149
391
391
  rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=QpNXhjB9ugtPV8XAHmKjbJtOiI1yE9rC2osbsI_A4ZY,2529
392
392
  rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
393
393
  rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
@@ -395,7 +395,7 @@ rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2,sha2
395
395
  rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=U8Sj6KxQZw5v-RdkuH-5fJYEvKDfIG2SnPXfsEZuG2Y,31034
396
396
  rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=-DFGkeRKQwU0-0ZJpVjxvgAUGq8pK9NXavAUONT0Wo8,9383
397
397
  rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
398
- rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2,sha256=nMayu-heJYH1QmcL1cFmXb8SeiJzfdDR_9Oy5IRUXsM,3937
398
+ rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2,sha256=k6s9Gj4ULCwfuqRbX41yW0aJwQN_T_ShfWlGeZDT308,2863
399
399
  rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=KznnZzf3RtvRK8sSfMw4tCaWzXMJf0Mw66S73lA22uk,15724
400
400
  rasa/dialogue_understanding/generator/utils.py,sha256=fRACEJ2bEgEgSq90TUrQFLTrLqtJqtbb64mgAXklMQ4,1911
401
401
  rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -728,7 +728,7 @@ rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i
728
728
  rasa/shared/utils/health_check/health_check.py,sha256=izixrbc9BxFSsjzwoIw9U0w0VKSX5gMwhey8bcwe1wc,9709
729
729
  rasa/shared/utils/health_check/llm_health_check_mixin.py,sha256=ANP5Q68TRX8p4wWkRCAISsWBV1iYYeGnqWILnR1NawE,957
730
730
  rasa/shared/utils/io.py,sha256=AhuECoXGO367NvWRCBu99utEtTQnyxWVJyKOOpLePpg,15917
731
- rasa/shared/utils/llm.py,sha256=6mfcRdKZVvB7JLVN_2oj6tnIgPfiPqQ2hYnTyK8mwP4,25545
731
+ rasa/shared/utils/llm.py,sha256=Z2hs_xRRE1jnY27POLgfB5Zc8X0pT-LvD0nJFFZoshY,25557
732
732
  rasa/shared/utils/pykwalify_extensions.py,sha256=36vfuD9gSreZvMIZ_qIPpykXhYGuZu2BpoEMVX50Is4,883
733
733
  rasa/shared/utils/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
734
734
  rasa/shared/utils/schemas/config.yml,sha256=czxSADw9hOIZdhvFP8pVUQo810hs9_C8ZGfCPx17taM,27
@@ -792,9 +792,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
792
792
  rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
793
793
  rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
794
794
  rasa/validator.py,sha256=Uh5R1JDmIRl0aNprh9FfHND8UKiNJTNYBrMdBDVxEFM,67516
795
- rasa/version.py,sha256=d-XOF4mYMJHmqkFmKU2wSR_kwqhlHGvhcTG7OC9-arM,121
796
- rasa_pro-3.12.0.dev4.dist-info/METADATA,sha256=FZjzWsMgAJyW2VWdU8WdPqPn4cK_SvnQgZd_OZeuM_w,10808
797
- rasa_pro-3.12.0.dev4.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
798
- rasa_pro-3.12.0.dev4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
799
- rasa_pro-3.12.0.dev4.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
800
- rasa_pro-3.12.0.dev4.dist-info/RECORD,,
795
+ rasa/version.py,sha256=S671PaGrikbveYGVjkGPNsLXHGDs_sktWwfX0AdUx_8,122
796
+ rasa_pro-3.12.0.dev5.dist-info/METADATA,sha256=a8QtoiKiAuWqF2h19L7aYxtWR6HdWIfeebamu9d7YG8,10808
797
+ rasa_pro-3.12.0.dev5.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
798
+ rasa_pro-3.12.0.dev5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
799
+ rasa_pro-3.12.0.dev5.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
800
+ rasa_pro-3.12.0.dev5.dist-info/RECORD,,