rasa-pro 3.13.0.dev7__py3-none-any.whl → 3.13.0.dev20250612__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.

@@ -8,14 +8,12 @@ from rasa.core.nlg.response import TemplatedNaturalLanguageGenerator
8
8
  from rasa.core.nlg.summarize import summarize_conversation
9
9
  from rasa.shared.constants import (
10
10
  LLM_CONFIG_KEY,
11
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
12
11
  MODEL_CONFIG_KEY,
13
12
  MODEL_GROUP_ID_CONFIG_KEY,
14
13
  MODEL_NAME_CONFIG_KEY,
15
14
  OPENAI_PROVIDER,
16
15
  PROMPT_CONFIG_KEY,
17
16
  PROVIDER_CONFIG_KEY,
18
- TEMPERATURE_CONFIG_KEY,
19
17
  TIMEOUT_CONFIG_KEY,
20
18
  )
21
19
  from rasa.shared.core.domain import KEY_RESPONSES_TEXT, Domain
@@ -59,8 +57,8 @@ DEFAULT_MAX_HISTORICAL_TURNS = 5
59
57
  DEFAULT_LLM_CONFIG = {
60
58
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
61
59
  MODEL_CONFIG_KEY: DEFAULT_OPENAI_GENERATE_MODEL_NAME,
62
- TEMPERATURE_CONFIG_KEY: 0.3,
63
- MAX_COMPLETION_TOKENS_CONFIG_KEY: DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
60
+ "temperature": 0.3,
61
+ "max_tokens": DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
64
62
  TIMEOUT_CONFIG_KEY: 5,
65
63
  }
66
64
 
@@ -46,15 +46,12 @@ from rasa.graph_components.providers.forms_provider import Forms
46
46
  from rasa.graph_components.providers.responses_provider import Responses
47
47
  from rasa.shared.constants import (
48
48
  EMBEDDINGS_CONFIG_KEY,
49
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
50
- MAX_RETRIES_CONFIG_KEY,
51
49
  MODEL_CONFIG_KEY,
52
50
  MODEL_GROUP_ID_CONFIG_KEY,
53
51
  MODEL_NAME_CONFIG_KEY,
54
52
  OPENAI_PROVIDER,
55
53
  PROMPT_CONFIG_KEY,
56
54
  PROVIDER_CONFIG_KEY,
57
- TEMPERATURE_CONFIG_KEY,
58
55
  TIMEOUT_CONFIG_KEY,
59
56
  )
60
57
  from rasa.shared.core.constants import (
@@ -138,14 +135,14 @@ DEFAULT_LLM_CONFIG = {
138
135
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
139
136
  MODEL_CONFIG_KEY: DEFAULT_OPENAI_CHAT_MODEL_NAME,
140
137
  TIMEOUT_CONFIG_KEY: 10,
141
- TEMPERATURE_CONFIG_KEY: 0.0,
142
- MAX_COMPLETION_TOKENS_CONFIG_KEY: 256,
143
- MAX_RETRIES_CONFIG_KEY: 1,
138
+ "temperature": 0.0,
139
+ "max_tokens": 256,
140
+ "max_retries": 1,
144
141
  }
145
142
 
146
143
  DEFAULT_EMBEDDINGS_CONFIG = {
147
144
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
148
- MODEL_CONFIG_KEY: DEFAULT_OPENAI_EMBEDDING_MODEL_NAME,
145
+ "model": DEFAULT_OPENAI_EMBEDDING_MODEL_NAME,
149
146
  }
150
147
 
151
148
  ENTERPRISE_SEARCH_PROMPT_FILE_NAME = "enterprise_search_policy_prompt.jinja2"
@@ -31,14 +31,12 @@ from rasa.graph_components.providers.responses_provider import Responses
31
31
  from rasa.shared.constants import (
32
32
  EMBEDDINGS_CONFIG_KEY,
33
33
  LLM_CONFIG_KEY,
34
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
35
34
  MODEL_CONFIG_KEY,
36
35
  MODEL_GROUP_ID_CONFIG_KEY,
37
36
  MODEL_NAME_CONFIG_KEY,
38
37
  OPENAI_PROVIDER,
39
38
  PROMPT_CONFIG_KEY,
40
39
  PROVIDER_CONFIG_KEY,
41
- TEMPERATURE_CONFIG_KEY,
42
40
  TIMEOUT_CONFIG_KEY,
43
41
  )
44
42
  from rasa.shared.core.constants import ACTION_LISTEN_NAME
@@ -113,14 +111,14 @@ NLU_ABSTENTION_THRESHOLD = "nlu_abstention_threshold"
113
111
  DEFAULT_LLM_CONFIG = {
114
112
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
115
113
  MODEL_CONFIG_KEY: DEFAULT_OPENAI_CHAT_MODEL_NAME,
116
- TEMPERATURE_CONFIG_KEY: 0.0,
117
- MAX_COMPLETION_TOKENS_CONFIG_KEY: DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
114
+ "temperature": 0.0,
115
+ "max_tokens": DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
118
116
  TIMEOUT_CONFIG_KEY: 5,
119
117
  }
120
118
 
121
119
  DEFAULT_EMBEDDINGS_CONFIG = {
122
120
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
123
- MODEL_CONFIG_KEY: DEFAULT_OPENAI_EMBEDDING_MODEL_NAME,
121
+ "model": DEFAULT_OPENAI_EMBEDDING_MODEL_NAME,
124
122
  }
125
123
 
126
124
  DEFAULT_INTENTLESS_PROMPT_TEMPLATE = importlib.resources.open_text(
@@ -346,6 +344,8 @@ class IntentlessPolicy(LLMHealthCheckMixin, EmbeddingsHealthCheckMixin, Policy):
346
344
  # ensures that the policy will not override a deterministic policy
347
345
  # which utilizes the nlu predictions confidence (e.g. Memoization).
348
346
  NLU_ABSTENTION_THRESHOLD: 0.9,
347
+ LLM_CONFIG_KEY: DEFAULT_LLM_CONFIG,
348
+ EMBEDDINGS_CONFIG_KEY: DEFAULT_EMBEDDINGS_CONFIG,
349
349
  PROMPT_CONFIG_KEY: DEFAULT_INTENTLESS_PROMPT_TEMPLATE,
350
350
  }
351
351
 
@@ -381,19 +381,13 @@ class IntentlessPolicy(LLMHealthCheckMixin, EmbeddingsHealthCheckMixin, Policy):
381
381
  super().__init__(config, model_storage, resource, execution_context, featurizer)
382
382
 
383
383
  # Resolve LLM config
384
- self.config[LLM_CONFIG_KEY] = combine_custom_and_default_config(
385
- resolve_model_client_config(
386
- self.config.get(LLM_CONFIG_KEY), IntentlessPolicy.__name__
387
- ),
388
- DEFAULT_LLM_CONFIG,
384
+ self.config[LLM_CONFIG_KEY] = resolve_model_client_config(
385
+ self.config.get(LLM_CONFIG_KEY), IntentlessPolicy.__name__
389
386
  )
390
387
 
391
388
  # Resolve embeddings config
392
- self.config[EMBEDDINGS_CONFIG_KEY] = combine_custom_and_default_config(
393
- resolve_model_client_config(
394
- self.config.get(EMBEDDINGS_CONFIG_KEY), IntentlessPolicy.__name__
395
- ),
396
- DEFAULT_EMBEDDINGS_CONFIG,
389
+ self.config[EMBEDDINGS_CONFIG_KEY] = resolve_model_client_config(
390
+ self.config.get(EMBEDDINGS_CONFIG_KEY), IntentlessPolicy.__name__
397
391
  )
398
392
 
399
393
  self.nlu_abstention_threshold: float = self.config[NLU_ABSTENTION_THRESHOLD]
@@ -23,14 +23,11 @@ from rasa.engine.recipes.default_recipe import DefaultV1Recipe
23
23
  from rasa.engine.storage.resource import Resource
24
24
  from rasa.engine.storage.storage import ModelStorage
25
25
  from rasa.shared.constants import (
26
- LOGIT_BIAS_CONFIG_KEY,
27
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
28
26
  MODEL_CONFIG_KEY,
29
27
  OPENAI_PROVIDER,
30
28
  PROMPT_CONFIG_KEY,
31
29
  PROVIDER_CONFIG_KEY,
32
30
  ROUTE_TO_CALM_SLOT,
33
- TEMPERATURE_CONFIG_KEY,
34
31
  TIMEOUT_CONFIG_KEY,
35
32
  )
36
33
  from rasa.shared.core.trackers import DialogueStateTracker
@@ -69,11 +66,9 @@ DEFAULT_LLM_CONFIG = {
69
66
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
70
67
  MODEL_CONFIG_KEY: DEFAULT_OPENAI_CHAT_MODEL_NAME,
71
68
  TIMEOUT_CONFIG_KEY: 7,
72
- TEMPERATURE_CONFIG_KEY: 0.0,
73
- MAX_COMPLETION_TOKENS_CONFIG_KEY: 1,
74
- LOGIT_BIAS_CONFIG_KEY: {
75
- str(token_id): 100 for token_id in A_TO_C_TOKEN_IDS_CHATGPT
76
- },
69
+ "temperature": 0.0,
70
+ "max_tokens": 1,
71
+ "logit_bias": {str(token_id): 100 for token_id in A_TO_C_TOKEN_IDS_CHATGPT},
77
72
  }
78
73
 
79
74
  structlogger = structlog.get_logger()
@@ -65,7 +65,7 @@ class KnowledgeAnswerCommand(FreeFormAnswerCommand):
65
65
  """Converts the command to a DSL string."""
66
66
  mapper = {
67
67
  CommandSyntaxVersion.v1: "SearchAndReply()",
68
- CommandSyntaxVersion.v2: "search and reply",
68
+ CommandSyntaxVersion.v2: "provide info",
69
69
  }
70
70
  return mapper.get(
71
71
  CommandSyntaxManager.get_syntax_version(),
@@ -81,7 +81,7 @@ class KnowledgeAnswerCommand(FreeFormAnswerCommand):
81
81
  def regex_pattern() -> str:
82
82
  mapper = {
83
83
  CommandSyntaxVersion.v1: r"SearchAndReply\(\)",
84
- CommandSyntaxVersion.v2: r"""^[\s\W\d]*search and reply['"`]*$""",
84
+ CommandSyntaxVersion.v2: r"""^[\s\W\d]*provide info['"`]*$""",
85
85
  }
86
86
  return mapper.get(
87
87
  CommandSyntaxManager.get_syntax_version(),
@@ -1,5 +1,5 @@
1
1
  from rasa.shared.constants import (
2
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
2
+ MAX_TOKENS_CONFIG_KEY,
3
3
  MODEL_CONFIG_KEY,
4
4
  OPENAI_PROVIDER,
5
5
  PROVIDER_CONFIG_KEY,
@@ -15,7 +15,7 @@ DEFAULT_LLM_CONFIG = {
15
15
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
16
16
  MODEL_CONFIG_KEY: DEFAULT_OPENAI_CHAT_MODEL_NAME_ADVANCED,
17
17
  TEMPERATURE_CONFIG_KEY: 0.0,
18
- MAX_COMPLETION_TOKENS_CONFIG_KEY: DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
18
+ MAX_TOKENS_CONFIG_KEY: DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
19
19
  TIMEOUT_CONFIG_KEY: 7,
20
20
  }
21
21
 
@@ -1,5 +1,5 @@
1
1
  ## Task Description
2
- 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 off-topic and knowledge requests.
2
+ 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.
3
3
 
4
4
  ---
5
5
 
@@ -12,52 +12,31 @@ Use the following structured data:
12
12
  ---
13
13
 
14
14
  ## Available Actions:
15
- * `start flow flow_name`: Start a flow. For example, `start flow transfer_money` or `start flow list_contacts`.
16
- * `set slot slot_name slot_value`: Set a slot for the active flow. For example, `set slot transfer_money_recipient Freddy`. Can be used to correct and change previously set values.
17
- * `disambiguate flows flow_name1 flow_name2 ... flow_name_n`: When a message could refer to multiple flows, list the possible flows as options to clarify. Example: `disambiguate flows list_contacts add_contact remove_contact`.
18
- * `search and reply`: Provide a response from the knowledge base to address the user’s inquiry when no flows fit, including domain knowledge, FAQs, and all off-topic or social messages.
19
- * `cancel flow`: Cancel the current flow if the user requests it.
15
+ * `start flow flow_name`: Starting a flow. For example, `start flow transfer_money` or `start flow list_contacts`.
16
+ * `set slot slot_name slot_value`: Slot setting. For example, `set slot transfer_money_recipient Freddy`. Can be used to correct and change previously set values.
17
+ * `cancel flow`: Cancelling the current flow.
18
+ * `disambiguate flows flow_name1 flow_name2 ... flow_name_n`: Disambiguate which flow should be started when user input is ambiguous by listing the potential flows as options. For example, `disambiguate flows list_contacts add_contact remove_contact ...` if the user just wrote "contacts".
19
+ * `provide info`: Responding to the user's questions by supplying relevant information, such as answering FAQs or explaining services.
20
+ * `offtopic reply`: Responding to casual or social user messages that are unrelated to any flows, engaging in friendly conversation and addressing off-topic remarks.
21
+ * `hand over`: Handing over to a human, in case the user seems frustrated or explicitly asks to speak to one.
20
22
 
21
23
  ---
22
24
 
23
- ## General Instructions
24
- ### Start Flow
25
- * Only start a flow if the user's message is clear and fully addressed by that flow's description and purpose.
26
- * Pay close attention to exact wording and scope in the flow description — do not assume or “stretch” the intended use of a flow.
27
- ### Set Slot
25
+ ## General Tips
28
26
  * Do not fill slots with abstract values or placeholders.
29
27
  * For categorical slots try to match the user message with allowed slot values. Use "other" if you cannot match it.
30
28
  * Set the boolean slots based on the user response. Map positive responses to `True`, and negative to `False`.
31
29
  * Extract text slot values exactly as provided by the user. Avoid assumptions, format changes, or partial extractions.
32
- ### Disambiguate Flows
33
- * Use `disambiguate flows` when the user's message matches multiple flows and you cannot decide which flow is most appropriate.
34
- * If the user message is short and not precise enough to start a flow or `search and reply`, disambiguate.
35
- * If a single flow is a strong/plausible fit, prefer starting that flow directly.
36
- * If a user's message unambiguously and distinctly matches multiple flows, start all relevant flows at once (rather than disambiguating).
37
- ### Search and Reply
38
- * Only start `search and reply` if the user intent is clear.
39
- * Flow Priority: If you are unsure between starting a flow or `search and reply`, always prioritize starting a flow.
40
- ### Cancel Flow
41
- * Do not cancel any flow unless the user explicitly requests it.
42
- * Multiple flows can be started without cancelling the previous, if the user wants to pursue multiple processes.
43
- ### General Tips
44
30
  * Only use information provided by the user.
31
+ * Use clarification in ambiguous cases.
32
+ * Multiple flows can be started. If a user wants to digress into a second flow, you do not need to cancel the current flow.
33
+ * Do not cancel the flow unless the user explicitly requests it.
45
34
  * Strictly adhere to the provided action format.
46
35
  * Focus on the last message and take it one step at a time.
47
36
  * Use the previous conversation steps only to aid understanding.
48
37
 
49
38
  ---
50
39
 
51
- ## Decision Rule Table
52
- | Condition | Action |
53
- |-------------------------------------------------------|--------------------|
54
- | Flow perfectly matches user's message | start flow |
55
- | Multiple flows are equally strong, relevant matches | disambiguate flows |
56
- | User's message is unclear or imprecise | disambiguate flows |
57
- | No flow fits at all, but knowledge base may help | search and reply |
58
-
59
- ---
60
-
61
40
  ## Current State
62
41
  {% if current_flow != None %}Use the following structured data:
63
42
  ```json
@@ -47,7 +47,7 @@ from rasa.shared.constants import (
47
47
  AWS_BEDROCK_PROVIDER,
48
48
  AZURE_OPENAI_PROVIDER,
49
49
  EMBEDDINGS_CONFIG_KEY,
50
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
50
+ MAX_TOKENS_CONFIG_KEY,
51
51
  PROMPT_TEMPLATE_CONFIG_KEY,
52
52
  ROUTE_TO_CALM_SLOT,
53
53
  TEMPERATURE_CONFIG_KEY,
@@ -81,7 +81,7 @@ DEFAULT_LLM_CONFIG = {
81
81
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
82
82
  MODEL_CONFIG_KEY: MODEL_NAME_GPT_4O_2024_11_20,
83
83
  TEMPERATURE_CONFIG_KEY: 0.0,
84
- MAX_COMPLETION_TOKENS_CONFIG_KEY: DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
84
+ MAX_TOKENS_CONFIG_KEY: DEFAULT_OPENAI_MAX_GENERATED_TOKENS,
85
85
  TIMEOUT_CONFIG_KEY: 7,
86
86
  }
87
87
 
@@ -11,12 +11,10 @@ from rasa.llm_fine_tuning.paraphrasing.rephrased_user_message import (
11
11
  )
12
12
  from rasa.shared.constants import (
13
13
  LLM_CONFIG_KEY,
14
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
15
14
  MODEL_CONFIG_KEY,
16
15
  MODEL_NAME_CONFIG_KEY,
17
16
  PROMPT_TEMPLATE_CONFIG_KEY,
18
17
  PROVIDER_CONFIG_KEY,
19
- TEMPERATURE_CONFIG_KEY,
20
18
  TIMEOUT_CONFIG_KEY,
21
19
  )
22
20
  from rasa.shared.exceptions import ProviderClientAPIException
@@ -41,8 +39,8 @@ DEFAULT_LLM_CONFIG = {
41
39
  PROVIDER_CONFIG_KEY: OPENAI_PROVIDER,
42
40
  MODEL_CONFIG_KEY: "gpt-4o-mini",
43
41
  TIMEOUT_CONFIG_KEY: 7,
44
- TEMPERATURE_CONFIG_KEY: 0.0,
45
- MAX_COMPLETION_TOKENS_CONFIG_KEY: 4096,
42
+ "temperature": 0.0,
43
+ "max_tokens": 4096,
46
44
  }
47
45
 
48
46
  structlogger = structlog.get_logger()
rasa/shared/constants.py CHANGED
@@ -197,10 +197,7 @@ PROVIDER_CONFIG_KEY = "provider"
197
197
  REQUEST_TIMEOUT_CONFIG_KEY = "request_timeout" # deprecated
198
198
  TIMEOUT_CONFIG_KEY = "timeout"
199
199
 
200
- LOGIT_BIAS_CONFIG_KEY = "logit_bias"
201
- MAX_RETRIES_CONFIG_KEY = "max_retries"
202
200
  TEMPERATURE_CONFIG_KEY = "temperature"
203
- MAX_COMPLETION_TOKENS_CONFIG_KEY = "max_completion_tokens"
204
201
  MAX_TOKENS_CONFIG_KEY = "max_tokens"
205
202
 
206
203
  DEPLOYMENT_NAME_CONFIG_KEY = "deployment_name"
@@ -23,8 +23,6 @@ from rasa.shared.constants import (
23
23
  DEPLOYMENT_NAME_CONFIG_KEY,
24
24
  ENGINE_CONFIG_KEY,
25
25
  LANGCHAIN_TYPE_CONFIG_KEY,
26
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
27
- MAX_TOKENS_CONFIG_KEY,
28
26
  MODEL_CONFIG_KEY,
29
27
  MODEL_NAME_CONFIG_KEY,
30
28
  N_REPHRASES_CONFIG_KEY,
@@ -73,8 +71,6 @@ DEPRECATED_ALIASES_TO_STANDARD_KEY_MAPPING = {
73
71
  MODEL_NAME_CONFIG_KEY: MODEL_CONFIG_KEY,
74
72
  # Timeout aliases
75
73
  REQUEST_TIMEOUT_CONFIG_KEY: TIMEOUT_CONFIG_KEY,
76
- # Max tokens aliases
77
- MAX_TOKENS_CONFIG_KEY: MAX_COMPLETION_TOKENS_CONFIG_KEY,
78
74
  }
79
75
 
80
76
  REQUIRED_KEYS = [DEPLOYMENT_CONFIG_KEY]
@@ -10,8 +10,6 @@ from rasa.shared.constants import (
10
10
  API_TYPE_CONFIG_KEY,
11
11
  API_VERSION_CONFIG_KEY,
12
12
  LANGCHAIN_TYPE_CONFIG_KEY,
13
- MAX_COMPLETION_TOKENS_CONFIG_KEY,
14
- MAX_TOKENS_CONFIG_KEY,
15
13
  MODEL_CONFIG_KEY,
16
14
  MODEL_NAME_CONFIG_KEY,
17
15
  N_REPHRASES_CONFIG_KEY,
@@ -50,8 +48,6 @@ DEPRECATED_ALIASES_TO_STANDARD_KEY_MAPPING = {
50
48
  OPENAI_API_VERSION_CONFIG_KEY: API_VERSION_CONFIG_KEY,
51
49
  # Timeout aliases
52
50
  REQUEST_TIMEOUT_CONFIG_KEY: TIMEOUT_CONFIG_KEY,
53
- # Max tokens aliases
54
- MAX_TOKENS_CONFIG_KEY: MAX_COMPLETION_TOKENS_CONFIG_KEY,
55
51
  }
56
52
 
57
53
  REQUIRED_KEYS = [MODEL_CONFIG_KEY]
@@ -70,10 +70,7 @@ class _BaseLiteLLMEmbeddingClient:
70
70
  def _embedding_fn_args(self) -> Dict[str, Any]:
71
71
  """Returns the arguments to be passed to the embedding function."""
72
72
  return {
73
- # Parameters set through config, can override drop_params
74
73
  **self._litellm_extra_parameters,
75
- # Model name is constructed in the LiteLLM format from the provided config
76
- # Non-overridable to ensure consistency
77
74
  "model": self._litellm_model_name,
78
75
  }
79
76
 
@@ -84,15 +84,12 @@ class _BaseLiteLLMClient:
84
84
  @property
85
85
  def _completion_fn_args(self) -> dict:
86
86
  return {
87
+ **self._litellm_extra_parameters,
88
+ "model": self._litellm_model_name,
87
89
  # Since all providers covered by LiteLLM use the OpenAI format, but
88
90
  # not all support every OpenAI parameter, raise an exception if
89
91
  # provider/model uses unsupported parameter
90
92
  "drop_params": False,
91
- # All other parameters set through config, can override drop_params
92
- **self._litellm_extra_parameters,
93
- # Model name is constructed in the LiteLLM format from the provided config
94
- # Non-overridable to ensure consistency
95
- "model": self._litellm_model_name,
96
93
  }
97
94
 
98
95
  def validate_client_setup(self) -> None:
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.13.0.dev7"
3
+ __version__ = "3.13.0.dev20250612"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rasa-pro
3
- Version: 3.13.0.dev7
3
+ Version: 3.13.0.dev20250612
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
@@ -310,7 +310,7 @@ rasa/core/lock_store.py,sha256=wP_0S5bBNI0cnRPVOcGNZgD8usdzw4udT4ncP6CKy14,15443
310
310
  rasa/core/migrate.py,sha256=h1dOpXxmVmZlbLVGy1yOU_Obp2KzRiOiL0iuEacA0Cg,14618
311
311
  rasa/core/nlg/__init__.py,sha256=jZuQAhOUcxO-KqqHGqICHSY3oDeXlUiGr2trQDYfG6o,240
312
312
  rasa/core/nlg/callback.py,sha256=0zDQsOa3uV66G3smCVQ9cUdvj-it8tFneIzqShM7NeI,5208
313
- rasa/core/nlg/contextual_response_rephraser.py,sha256=vMT6uRYX_L6oejRXGHa1EJmniSl12YDdyetwqV5ch-o,13833
313
+ rasa/core/nlg/contextual_response_rephraser.py,sha256=o1FDNhu5K99i75rsgTVNz8FNh465baEpnWWkL7euz7Y,13738
314
314
  rasa/core/nlg/generator.py,sha256=GA3XwpGdWKKcaMdNGqRCiSwvix2RR4IocVxg_dv_1Yg,10895
315
315
  rasa/core/nlg/interpolator.py,sha256=hEOhqfMXrAqTZiqjg2t6ZfTK6DJQ5IiX4tJIz2b8Fbw,5190
316
316
  rasa/core/nlg/response.py,sha256=kfBSFnQni0lDZlGpZEVRjuQvil7G1JMjS4xIdd3AKhs,6045
@@ -319,7 +319,7 @@ rasa/core/nlg/translate.py,sha256=PBMTbIgdkhx8rhzqv6h0u5r9jqdfiVIh7u0qb363sJA,18
319
319
  rasa/core/persistor.py,sha256=7LCZHAwCM-xrUI38aaJ5dkxJvLdJXWI1TEUKsBo4_EE,21295
320
320
  rasa/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
321
321
  rasa/core/policies/ensemble.py,sha256=XoHxU0jcb_io_LBOpjJffylzqtGEB7CH9ivhRyO8pDc,12960
322
- rasa/core/policies/enterprise_search_policy.py,sha256=cb48JXKZq7FBCNc4yE-VhSVNyvMRTiBEQxQNtTru9pQ,37152
322
+ rasa/core/policies/enterprise_search_policy.py,sha256=mPiqAplOfe5MtgEzoF6TclVnlA4QgpMqXJsKuBGFv3o,37011
323
323
  rasa/core/policies/enterprise_search_prompt_template.jinja2,sha256=dCS_seyBGxMQoMsOjjvPp0dd31OSzZCJSZeev1FJK5Q,1187
324
324
  rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256=va9rpP97dN3PKoJZOVfyuISt3cPBlb10Pqyz25RwO_Q,3294
325
325
  rasa/core/policies/flow_policy.py,sha256=597G62hrLF_CAMCvu-TPRldFnjMP2XEIkhcIaPWcQAc,7489
@@ -327,7 +327,7 @@ rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
327
327
  rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
328
328
  rasa/core/policies/flows/flow_executor.py,sha256=sT7ZFrm_CKVKBv5SO0M_QE984ZFw8t6trm8dMxCXbv8,25649
329
329
  rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
330
- rasa/core/policies/intentless_policy.py,sha256=zxqlhawgqIjLCGkCzw1iOqq1iPCb8dPZFcJ-mTVrQjY,36511
330
+ rasa/core/policies/intentless_policy.py,sha256=TPpnBY5r9ajtDuAhHJtl5uojC6auDr7sd_Nb8tXPIFE,36314
331
331
  rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
332
332
  rasa/core/policies/memoization.py,sha256=CX2d3yP7FehSMW92Wi9NYLZei7tBzoT3T6yybu-Nb5s,19377
333
333
  rasa/core/policies/policy.py,sha256=5SUnPajSTSf8PzB1-jFbQPtsvR-zLN-xkjeotWOxuJc,27432
@@ -363,7 +363,7 @@ rasa/dialogue_understanding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
363
363
  rasa/dialogue_understanding/coexistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
364
  rasa/dialogue_understanding/coexistence/constants.py,sha256=RpgLKMG4s7AgII0fRV0siS0Zh2QVI0OVRunhgm4q_j4,94
365
365
  rasa/dialogue_understanding/coexistence/intent_based_router.py,sha256=JlYBZdScnhflLK__i4bG0-PIkuFv0B7L4yOdnLgYWAY,7609
366
- rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=Bl38ZdQWJesb3NeR7sUvoQXXRzDTwSoLqnsNf_hH5rw,11897
366
+ rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=6OSdje9ZMJuJ7eoPHAuVIQGaVx0qtLg6YdpfUAuGbj0,11752
367
367
  rasa/dialogue_understanding/coexistence/router_template.jinja2,sha256=CHWFreN0sv1EbPh-hf5AlCt3zxy2_llX1Pdn9Q11Y18,357
368
368
  rasa/dialogue_understanding/commands/__init__.py,sha256=F-pLETYRUjhIkjjDfXGUuPsK_ac1HcLmJkrUUP0RhME,2259
369
369
  rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=fKOj9ScLxuaFO9Iw0p7og_4zMiw2weBdx322rBKlnCI,3519
@@ -378,7 +378,7 @@ rasa/dialogue_understanding/commands/error_command.py,sha256=LTEsxkGGGZR6wEEGuTt
378
378
  rasa/dialogue_understanding/commands/free_form_answer_command.py,sha256=XlQrHXrcOemzu1LHZiDhBAluiSlnUQ2V7ET5Z-aG7gc,224
379
379
  rasa/dialogue_understanding/commands/handle_code_change_command.py,sha256=Cp2e1iD0zacXmljJ8vDXHJu9Fp6BwB7cGx8NF748akw,2192
380
380
  rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=vfMXBWKm7fsaabCcLti1r8c1GrjS_0bvRKzgxJ8s6rU,2965
381
- rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=ZS5XyqYhUDqe0pcGSoEsjbr2tDGMHRMyX5CUzq5qIeI,2860
381
+ rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=hnU6hOVr9aR7KfuxIV-LFycQWk7fsl4b9ZuAqpjBjvM,2852
382
382
  rasa/dialogue_understanding/commands/noop_command.py,sha256=aIaLBjSV84qy9X4aGlJfMIYhF57maH5CiKNWL_-giD4,1485
383
383
  rasa/dialogue_understanding/commands/prompt_command.py,sha256=slKQkvtrM353I3gltiett5xrZ7IxQ0omdqJHi6IowGk,2569
384
384
  rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=8SavUvMk6FmWz4Yr-j_JDTuwAwLfGy0RYZOLqn16wx0,2933
@@ -395,7 +395,7 @@ rasa/dialogue_understanding/generator/__init__.py,sha256=pBm0o6pnJA_0W0UOrGuVsiG
395
395
  rasa/dialogue_understanding/generator/_jinja_filters.py,sha256=KuK7nGKvKzKJz6Wg3AmrLFvzneGgIyeK825MCE379wc,248
396
396
  rasa/dialogue_understanding/generator/command_generator.py,sha256=WAlDCzpQuQnoWSHozq3a6xIN5UWMxxiKFFIRp9AXvA0,15640
397
397
  rasa/dialogue_understanding/generator/command_parser.py,sha256=wf6FSgqBw5F0legg06SqKlzajIN6sc_Cov2lFY_O9MI,8109
398
- rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
398
+ rasa/dialogue_understanding/generator/constants.py,sha256=PuUckBGUZ-Tu31B0cs8yxN99BDW3PGoExZa-BlIL5v8,1108
399
399
  rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
400
400
  rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=DavL-37e0tksMWkxvFImoqlsmYeYeSdDN3u7wZI0K-8,17817
401
401
  rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=dori1F756kxOv-VkYetGPnacTsoTYHIUt1mTqt050Qs,23585
@@ -408,9 +408,9 @@ rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=cisxLlPVQXgb
408
408
  rasa/dialogue_understanding/generator/prompt_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
409
  rasa/dialogue_understanding/generator/prompt_templates/command_prompt_template.jinja2,sha256=nMayu-heJYH1QmcL1cFmXb8SeiJzfdDR_9Oy5IRUXsM,3937
410
410
  rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2,sha256=z-cnFVfIE_kEnY1o52YE2CdCWwgYTv7R3xVxsjXWlnw,3808
411
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2,sha256=AWRm7PjtxYjhwAFWuC4BEoRlskxQEwoWiWJtztL5XJQ,4813
411
+ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2,sha256=4076ARsy0E0iADBX6li19IoM3F4F-2wK3bL6UEOvCdo,3620
412
412
  rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=Lm688m3m_Z2ZvIrpTQlmxeA2Op-S0ViSPk3wIknyCmM,22413
413
+ rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=P732pdylTR_EM7xZIXbSWZuQY2lOQZ7EKkpMDhpHrps,22391
414
414
  rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=RWTPdeBfdGUmdFSUzdQejcbJJLhc_815G0g6AabTK04,5100
415
415
  rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
416
416
  rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -537,7 +537,7 @@ rasa/llm_fine_tuning/annotation_module.py,sha256=6wBBjGwONVlikp79xAHp5g3rydEhPM6
537
537
  rasa/llm_fine_tuning/conversations.py,sha256=QZVaUsfXe5iIE830Bv-_3oo8luhGfHpirvubxzOoEvA,4116
538
538
  rasa/llm_fine_tuning/llm_data_preparation_module.py,sha256=jZ2ItgawV6PzakQVg5JHOrt-_9CwaSAJ01qGZND8uLI,6246
539
539
  rasa/llm_fine_tuning/paraphrasing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
540
- rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py,sha256=vbzj26IQRX_iJLsA7EHZu7Z-adVzfb9xjNe2Y3-1CCs,10242
540
+ rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py,sha256=YwY4btMR-GOOuL_YgMpiMMrJYbby3kLXAv9HUwsrdHU,10147
541
541
  rasa/llm_fine_tuning/paraphrasing/default_rephrase_prompt_template.jina2,sha256=sOHiE0WYEp7v7U6FUwHdlG7dAYDCDIWWPEP3eAj6elE,1340
542
542
  rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py,sha256=Gj6_CGq5cfPW8doBHIeppY2fs8p4b0r0keCq9Jb1x8w,4796
543
543
  rasa/llm_fine_tuning/paraphrasing/rephrased_user_message.py,sha256=cOEmZ71yDXW9-7aZm1gjNHVn_N2kNTHttDqSAz0-lEA,292
@@ -624,7 +624,7 @@ rasa/nlu/utils/spacy_utils.py,sha256=5EnHR-MVAZhGbg2rq8VpOu7I0tagV3ThRTlM0-WO2Cg
624
624
  rasa/plugin.py,sha256=fJPnjqoLlLZP-DjLddSVIDf8jGYBZiZHy-RJsp5RhIs,3000
625
625
  rasa/server.py,sha256=0GQ9rML75EOuRDpUHZjz-uYbkSbnNuK0SRIGQJeiR-I,59599
626
626
  rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
627
- rasa/shared/constants.py,sha256=u9GnSSQYRjYN_mjd7XHMGgoVc6ipoiZQuLt3bFOF0O0,12264
627
+ rasa/shared/constants.py,sha256=PBpmxNQM29MoLp1pY7RGQ1I1hPt3N0_r2l_y5KguEnQ,12129
628
628
  rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
629
629
  rasa/shared/core/command_payload_reader.py,sha256=puHYsp9xbX0YQm2L1NDBItOFmdzI7AzmfGefgcHiCc0,3871
630
630
  rasa/shared/core/constants.py,sha256=gwIZHjQYafHnBlMe9_jUiIPm17hxYG9R1MOCtxeC1Ns,6337
@@ -710,14 +710,14 @@ rasa/shared/nlu/training_data/util.py,sha256=SCd97o6dDhbodasRK3JuaiAA1Xcy0faEMTj
710
710
  rasa/shared/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
711
711
  rasa/shared/providers/_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
712
712
  rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=MnvWRlCN-nFv5wb8AtFPM1tymCr72jmhI-MQgZZphAs,19392
713
- rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=xUmPM3MRMPdje0q_2MH4FHj77uiMjZ6H2yky37UATUg,10804
713
+ rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=1S_CGS_mIjDBHkBphdptYXdIFmngzGtI2y0f94mMi8c,10653
714
714
  rasa/shared/providers/_configs/client_config.py,sha256=nQ469h1XI970_7Vs49hNIpBIwlAeiAg-cwV0JFp7Hg0,1618
715
715
  rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=tViurJ1NDbiBn9b5DbzhFHO1pJM889MC-GakWhEX07E,4352
716
716
  rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py,sha256=q8ddTFwddDhx654ZQmg9eP_yo77N3Xg77hAmfXOmzPg,8200
717
717
  rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=OX7egiQXkGSYxIfEOFrGFwCIKFJc3IgBKrZGqdjeMVQ,7265
718
718
  rasa/shared/providers/_configs/model_group_config.py,sha256=gcvRY86StqCLqAOxLh-2sWEPxMNnwt43vR3QaviElZI,5618
719
719
  rasa/shared/providers/_configs/oauth_config.py,sha256=eMHaXdSwiYqe4LC_UhDPJcrE7tqv3HDc8ghgkhwcYo4,791
720
- rasa/shared/providers/_configs/openai_client_config.py,sha256=NVlm76Ug0LHxEEVqEJeEavCtRYQZBw7NzwgCtvTG1zs,5990
720
+ rasa/shared/providers/_configs/openai_client_config.py,sha256=tKCQSjtpVmPO_30sRmcFFDk0tNFs5bVseyI7iBU6ZOY,5839
721
721
  rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=elpbqVNSgkAiM0Dg-0N3ayVkSi6TAERepdZG7Bv8NdI,2245
722
722
  rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=l2JnypPXFL6KVxhftKTYvh-NqpXJ8--pjbJ-IQHoPRs,5963
723
723
  rasa/shared/providers/_configs/utils.py,sha256=u2Ram05YwQ7-frm_r8n9rafjZoF8i0qSC7XjYQRuPgo,3732
@@ -725,7 +725,7 @@ rasa/shared/providers/_ssl_verification_utils.py,sha256=vUnP0vocf0GQ0wG8IQpPcCet
725
725
  rasa/shared/providers/_utils.py,sha256=EZIrz3ugcI-9PWgC7v0VMUNYondAAOeeRLIE8ZmResw,5886
726
726
  rasa/shared/providers/constants.py,sha256=hgV8yNGxIbID_2h65OoSfSjIE4UkazrsqRg4SdkPAmI,234
727
727
  rasa/shared/providers/embedding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
728
- rasa/shared/providers/embedding/_base_litellm_embedding_client.py,sha256=1CUYxps_TrLVyPsPfOw7iDS502fDePseBIKnqc3ncwQ,9005
728
+ rasa/shared/providers/embedding/_base_litellm_embedding_client.py,sha256=PFavNnD6EVDQiqc9sLnBRV0hebW4iCjIh_dvpwzg4RI,8796
729
729
  rasa/shared/providers/embedding/_langchain_embedding_client_adapter.py,sha256=IR2Rb3ReJ9C9sxOoOGRXgtz8STWdMREs_4AeSMKFjl4,2135
730
730
  rasa/shared/providers/embedding/azure_openai_embedding_client.py,sha256=HKHMx6m669CC19u6GPnpSLzA0PwvHlquhaK3QhqHI78,12469
731
731
  rasa/shared/providers/embedding/default_litellm_embedding_client.py,sha256=da17WeHjZp95Uv9jmTKxklNRcNpn-qRsRPcwDQusElg,4397
@@ -735,7 +735,7 @@ rasa/shared/providers/embedding/huggingface_local_embedding_client.py,sha256=Zo3
735
735
  rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=eafDk6IgQtL_kiKgpa6sJs1oATyRi2NT2leUFQsED2s,4551
736
736
  rasa/shared/providers/embedding/openai_embedding_client.py,sha256=XNRGE7apo2v3kWRrtgxE-Gq4rvNko3IiXtvgC4krDYE,5429
737
737
  rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
738
- rasa/shared/providers/llm/_base_litellm_client.py,sha256=Ua5Kt6VGe5vRzSzWWWx2Q3LH2PCDd8V7V4zfYD464yU,11634
738
+ rasa/shared/providers/llm/_base_litellm_client.py,sha256=uhVNIQQx8DXfA_baxavCgjvcF31bTjS_JcxHYRNneIM,11415
739
739
  rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=ui85vothxR2P_-eLc4nLgbpjnpEKY2BXnIjLxBZoYz8,12504
740
740
  rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=mPDehyLxt3Q9fPSyaMArkVAMkMTf5lfSzhgv--pMTt4,4083
741
741
  rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=_6vAdPLAVSI_sBJLaXLnE87M-0ip_klfQ78fQ_pyoyI,7947
@@ -824,9 +824,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
824
824
  rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
825
825
  rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
826
826
  rasa/validator.py,sha256=524VlFTYK0B3iXYveVD6BDC3K0j1QfpzJ9O-TAWczmc,83166
827
- rasa/version.py,sha256=NzwKX15YQUGobP20TGy0TgOhnwVoOTuok5z38_A5obI,122
828
- rasa_pro-3.13.0.dev7.dist-info/METADATA,sha256=nNTLFwKCpEtatZuhF84RstyYyPqNkZRY-zVk7DTDKJ0,10621
829
- rasa_pro-3.13.0.dev7.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
830
- rasa_pro-3.13.0.dev7.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
831
- rasa_pro-3.13.0.dev7.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
832
- rasa_pro-3.13.0.dev7.dist-info/RECORD,,
827
+ rasa/version.py,sha256=1xvake--eyg5iTQKp8QCyGzsN465U8K4kvV4ls9Jj7A,129
828
+ rasa_pro-3.13.0.dev20250612.dist-info/METADATA,sha256=KfBISHMBtVxi6gulqQ4zP-ZqOcEcQ-0hAvlShtYFL_A,10628
829
+ rasa_pro-3.13.0.dev20250612.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
830
+ rasa_pro-3.13.0.dev20250612.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
831
+ rasa_pro-3.13.0.dev20250612.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
832
+ rasa_pro-3.13.0.dev20250612.dist-info/RECORD,,