rasa-pro 3.12.13__py3-none-any.whl → 3.12.15__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 (36) hide show
  1. rasa/cli/llm_fine_tuning.py +11 -10
  2. rasa/core/nlg/contextual_response_rephraser.py +38 -11
  3. rasa/core/nlg/summarize.py +39 -5
  4. rasa/core/policies/enterprise_search_policy.py +7 -4
  5. rasa/core/policies/intentless_policy.py +15 -9
  6. rasa/core/utils.py +4 -0
  7. rasa/dialogue_understanding/coexistence/llm_based_router.py +8 -3
  8. rasa/dialogue_understanding/commands/clarify_command.py +1 -1
  9. rasa/dialogue_understanding/commands/set_slot_command.py +1 -1
  10. rasa/dialogue_understanding/generator/constants.py +2 -2
  11. rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +2 -2
  12. rasa/dialogue_understanding/processor/command_processor_component.py +2 -2
  13. rasa/dialogue_understanding_test/du_test_runner.py +3 -21
  14. rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py +2 -6
  15. rasa/engine/recipes/default_recipe.py +26 -2
  16. rasa/llm_fine_tuning/annotation_module.py +39 -9
  17. rasa/llm_fine_tuning/conversations.py +3 -0
  18. rasa/llm_fine_tuning/llm_data_preparation_module.py +66 -49
  19. rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py +4 -2
  20. rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py +52 -44
  21. rasa/llm_fine_tuning/paraphrasing_module.py +10 -12
  22. rasa/llm_fine_tuning/storage.py +4 -4
  23. rasa/llm_fine_tuning/utils.py +63 -1
  24. rasa/shared/constants.py +3 -0
  25. rasa/shared/exceptions.py +4 -0
  26. rasa/shared/providers/_configs/azure_openai_client_config.py +4 -0
  27. rasa/shared/providers/_configs/openai_client_config.py +4 -0
  28. rasa/shared/providers/embedding/_base_litellm_embedding_client.py +3 -0
  29. rasa/shared/providers/llm/_base_litellm_client.py +5 -2
  30. rasa/shared/utils/llm.py +36 -3
  31. rasa/version.py +1 -1
  32. {rasa_pro-3.12.13.dist-info → rasa_pro-3.12.15.dist-info}/METADATA +1 -1
  33. {rasa_pro-3.12.13.dist-info → rasa_pro-3.12.15.dist-info}/RECORD +36 -36
  34. {rasa_pro-3.12.13.dist-info → rasa_pro-3.12.15.dist-info}/NOTICE +0 -0
  35. {rasa_pro-3.12.13.dist-info → rasa_pro-3.12.15.dist-info}/WHEEL +0 -0
  36. {rasa_pro-3.12.13.dist-info → rasa_pro-3.12.15.dist-info}/entry_points.txt +0 -0
@@ -10,6 +10,8 @@ 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,
13
15
  MODEL_CONFIG_KEY,
14
16
  MODEL_NAME_CONFIG_KEY,
15
17
  N_REPHRASES_CONFIG_KEY,
@@ -48,6 +50,8 @@ DEPRECATED_ALIASES_TO_STANDARD_KEY_MAPPING = {
48
50
  OPENAI_API_VERSION_CONFIG_KEY: API_VERSION_CONFIG_KEY,
49
51
  # Timeout aliases
50
52
  REQUEST_TIMEOUT_CONFIG_KEY: TIMEOUT_CONFIG_KEY,
53
+ # Max tokens aliases
54
+ MAX_TOKENS_CONFIG_KEY: MAX_COMPLETION_TOKENS_CONFIG_KEY,
51
55
  }
52
56
 
53
57
  REQUIRED_KEYS = [MODEL_CONFIG_KEY]
@@ -70,7 +70,10 @@ 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
73
74
  **self._litellm_extra_parameters,
75
+ # Model name is constructed in the LiteLLM format from the provided config
76
+ # Non-overridable to ensure consistency
74
77
  "model": self._litellm_model_name,
75
78
  }
76
79
 
@@ -84,12 +84,15 @@ 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,
89
87
  # Since all providers covered by LiteLLM use the OpenAI format, but
90
88
  # not all support every OpenAI parameter, raise an exception if
91
89
  # provider/model uses unsupported parameter
92
90
  "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,
93
96
  }
94
97
 
95
98
  def validate_client_setup(self) -> None:
rasa/shared/utils/llm.py CHANGED
@@ -2,12 +2,14 @@ import importlib.resources
2
2
  import json
3
3
  import logging
4
4
  from copy import deepcopy
5
+ from datetime import datetime
5
6
  from functools import wraps
6
7
  from typing import (
7
8
  TYPE_CHECKING,
8
9
  Any,
9
10
  Callable,
10
11
  Dict,
12
+ List,
11
13
  Literal,
12
14
  Optional,
13
15
  Text,
@@ -64,6 +66,7 @@ from rasa.shared.providers.mappings import (
64
66
  from rasa.shared.utils.constants import LOG_COMPONENT_SOURCE_METHOD_INIT
65
67
 
66
68
  if TYPE_CHECKING:
69
+ from rasa.core.agent import Agent
67
70
  from rasa.shared.core.trackers import DialogueStateTracker
68
71
 
69
72
 
@@ -191,6 +194,7 @@ def tracker_as_readable_transcript(
191
194
  human_prefix: str = USER,
192
195
  ai_prefix: str = AI,
193
196
  max_turns: Optional[int] = 20,
197
+ turns_wrapper: Optional[Callable[[List[str]], List[str]]] = None,
194
198
  ) -> str:
195
199
  """Creates a readable dialogue from a tracker.
196
200
 
@@ -199,6 +203,7 @@ def tracker_as_readable_transcript(
199
203
  human_prefix: the prefix to use for human utterances
200
204
  ai_prefix: the prefix to use for ai utterances
201
205
  max_turns: the maximum number of turns to include in the transcript
206
+ turns_wrapper: optional function to wrap the turns in a custom way
202
207
 
203
208
  Example:
204
209
  >>> tracker = Tracker(
@@ -235,8 +240,11 @@ def tracker_as_readable_transcript(
235
240
  elif isinstance(event, BotUttered):
236
241
  transcript.append(f"{ai_prefix}: {sanitize_message_for_prompt(event.text)}")
237
242
 
238
- if max_turns:
239
- transcript = transcript[-max_turns:]
243
+ # turns_wrapper to count multiple utterances by bot/user as single turn
244
+ if turns_wrapper:
245
+ transcript = turns_wrapper(transcript)
246
+ # otherwise, just take the last `max_turns` lines of the transcript
247
+ transcript = transcript[-max_turns if max_turns is not None else None :]
240
248
 
241
249
  return "\n".join(transcript)
242
250
 
@@ -678,7 +686,6 @@ def get_prompt_template(
678
686
  Returns:
679
687
  The prompt template.
680
688
  """
681
-
682
689
  try:
683
690
  if jinja_file_path is not None:
684
691
  prompt_template = rasa.shared.utils.io.read_file(jinja_file_path)
@@ -886,3 +893,29 @@ def resolve_model_client_config(
886
893
  )
887
894
 
888
895
  return model_group[0]
896
+
897
+
898
+ def generate_sender_id(test_case_name: str) -> str:
899
+ # add timestamp suffix to ensure sender_id is unique
900
+ return f"{test_case_name}_{datetime.now()}"
901
+
902
+
903
+ async def create_tracker_for_user_step(
904
+ step_sender_id: str,
905
+ agent: "Agent",
906
+ test_case_tracker: "DialogueStateTracker",
907
+ index_user_uttered_event: int,
908
+ ) -> None:
909
+ """Creates a tracker for the user step."""
910
+ tracker = test_case_tracker.copy()
911
+ # modify the sender id so that the original tracker is not overwritten
912
+ tracker.sender_id = step_sender_id
913
+
914
+ if tracker.events:
915
+ # get the timestamp of the event just before the user uttered event
916
+ timestamp = tracker.events[index_user_uttered_event - 1].timestamp
917
+ # revert the tracker to the event just before the user uttered event
918
+ tracker = tracker.travel_back_in_time(timestamp)
919
+
920
+ # store the tracker with the unique sender id
921
+ await agent.tracker_store.save(tracker)
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.13"
3
+ __version__ = "3.12.15"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rasa-pro
3
- Version: 3.12.13
3
+ Version: 3.12.15
4
4
  Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
5
5
  Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
6
6
  Author: Rasa Technologies GmbH
@@ -29,7 +29,7 @@ rasa/cli/export.py,sha256=vohrKZpUrNVXE2xZM3V-IgWc6UsWUoUl-5tRXSg6Nag,8203
29
29
  rasa/cli/inspect.py,sha256=94yDzwq-cMnVVOqVkbIaDmhbuFtOb6ghxxyJiRa8DxU,3381
30
30
  rasa/cli/interactive.py,sha256=_PwvTLF9Sozt0xzDo4W_zYs3SBCoDcxuGDDumD-JtUo,6012
31
31
  rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
32
- rasa/cli/llm_fine_tuning.py,sha256=CPJBjTRHMy1CHpEf0YmUGqkCtcLZDJQ7xQ-m8bDWtm4,15202
32
+ rasa/cli/llm_fine_tuning.py,sha256=oDZDu-JxFZPv7PyEzfwK1IpivYyuKrsamyhNdasxOoI,15029
33
33
  rasa/cli/markers.py,sha256=DIYfP5ZVRqiwbDiXfgONjwSFckThHdpGsGl6Kqn_CN8,2484
34
34
  rasa/cli/project_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
35
  rasa/cli/project_templates/calm/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -318,16 +318,16 @@ rasa/core/lock_store.py,sha256=weupfBiYMz-B_N-LAONCvp-po1uPRdie9imLYn7hFDU,12504
318
318
  rasa/core/migrate.py,sha256=h1dOpXxmVmZlbLVGy1yOU_Obp2KzRiOiL0iuEacA0Cg,14618
319
319
  rasa/core/nlg/__init__.py,sha256=jZuQAhOUcxO-KqqHGqICHSY3oDeXlUiGr2trQDYfG6o,240
320
320
  rasa/core/nlg/callback.py,sha256=0zDQsOa3uV66G3smCVQ9cUdvj-it8tFneIzqShM7NeI,5208
321
- rasa/core/nlg/contextual_response_rephraser.py,sha256=hpAK_0QFXrpFh3RxQZraqxQndjdBivknTxJmzy-ex8Y,13583
321
+ rasa/core/nlg/contextual_response_rephraser.py,sha256=kW4C54rWh17a011hMesR1AzYPOurDNdbUIh775O4qsQ,14567
322
322
  rasa/core/nlg/generator.py,sha256=iMTqt0sPRMc55ontZU1svQVPKixDojBXN-cFuOvLMGo,11647
323
323
  rasa/core/nlg/interpolator.py,sha256=hEOhqfMXrAqTZiqjg2t6ZfTK6DJQ5IiX4tJIz2b8Fbw,5190
324
324
  rasa/core/nlg/response.py,sha256=SecKyoBQjEnZr4t-Gg5fkUpkozwGT2lzswIKgD63Dac,7248
325
- rasa/core/nlg/summarize.py,sha256=liXcbJMBm0NaaSH0LwlSs1l0dTby0OEprSzeKeyRyv0,2109
325
+ rasa/core/nlg/summarize.py,sha256=Snm3u80JTIwUuFLGpnLi3AdOnnVxFoBFbNlAfQLG7pE,3193
326
326
  rasa/core/nlg/translate.py,sha256=ZXRvysqXGdtHBJ7x3YkW6zfmnb9DuEGHCMTL41v-M8M,2112
327
327
  rasa/core/persistor.py,sha256=7LCZHAwCM-xrUI38aaJ5dkxJvLdJXWI1TEUKsBo4_EE,21295
328
328
  rasa/core/policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
329
  rasa/core/policies/ensemble.py,sha256=XoHxU0jcb_io_LBOpjJffylzqtGEB7CH9ivhRyO8pDc,12960
330
- rasa/core/policies/enterprise_search_policy.py,sha256=mPiqAplOfe5MtgEzoF6TclVnlA4QgpMqXJsKuBGFv3o,37011
330
+ rasa/core/policies/enterprise_search_policy.py,sha256=cb48JXKZq7FBCNc4yE-VhSVNyvMRTiBEQxQNtTru9pQ,37152
331
331
  rasa/core/policies/enterprise_search_prompt_template.jinja2,sha256=dCS_seyBGxMQoMsOjjvPp0dd31OSzZCJSZeev1FJK5Q,1187
332
332
  rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256=va9rpP97dN3PKoJZOVfyuISt3cPBlb10Pqyz25RwO_Q,3294
333
333
  rasa/core/policies/flow_policy.py,sha256=597G62hrLF_CAMCvu-TPRldFnjMP2XEIkhcIaPWcQAc,7489
@@ -335,7 +335,7 @@ rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
335
335
  rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
336
336
  rasa/core/policies/flows/flow_executor.py,sha256=sT7ZFrm_CKVKBv5SO0M_QE984ZFw8t6trm8dMxCXbv8,25649
337
337
  rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
338
- rasa/core/policies/intentless_policy.py,sha256=TPpnBY5r9ajtDuAhHJtl5uojC6auDr7sd_Nb8tXPIFE,36314
338
+ rasa/core/policies/intentless_policy.py,sha256=zxqlhawgqIjLCGkCzw1iOqq1iPCb8dPZFcJ-mTVrQjY,36511
339
339
  rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
340
340
  rasa/core/policies/memoization.py,sha256=CX2d3yP7FehSMW92Wi9NYLZei7tBzoT3T6yybu-Nb5s,19377
341
341
  rasa/core/policies/policy.py,sha256=5SUnPajSTSf8PzB1-jFbQPtsvR-zLN-xkjeotWOxuJc,27432
@@ -359,20 +359,20 @@ rasa/core/training/converters/responses_prefix_converter.py,sha256=D4wZ8XWBowUNq
359
359
  rasa/core/training/interactive.py,sha256=OKTg2asZ_gC8S9GIJtDfK2q-hvtZeOC6CEkbr5jy8BU,60342
360
360
  rasa/core/training/story_conflict.py,sha256=sr-DOpBMz2VikXcmpYiqrlRY2O_4ErX9GKlFI1fjjcM,13592
361
361
  rasa/core/training/training.py,sha256=A7f3O4Nnfik1VVAGAI1VM3ZoxmZxNxqZxe_UGKO4Ado,3031
362
- rasa/core/utils.py,sha256=i83G-AnFaNuGlsqCE-jJ-JNPr7V1y6rDrp5xQsmurk4,14048
362
+ rasa/core/utils.py,sha256=BuSZklSJilk_Pgy3xopGtyqheeZEgEei6oMhuQHyfM8,14132
363
363
  rasa/core/visualize.py,sha256=ZP5k8YI3r7A_ZKUhBmXZ6PvBQ-dSw19xwUjHxCAfr3g,2125
364
364
  rasa/dialogue_understanding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  rasa/dialogue_understanding/coexistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
366
366
  rasa/dialogue_understanding/coexistence/constants.py,sha256=RpgLKMG4s7AgII0fRV0siS0Zh2QVI0OVRunhgm4q_j4,94
367
367
  rasa/dialogue_understanding/coexistence/intent_based_router.py,sha256=JlYBZdScnhflLK__i4bG0-PIkuFv0B7L4yOdnLgYWAY,7609
368
- rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=6OSdje9ZMJuJ7eoPHAuVIQGaVx0qtLg6YdpfUAuGbj0,11752
368
+ rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=Bl38ZdQWJesb3NeR7sUvoQXXRzDTwSoLqnsNf_hH5rw,11897
369
369
  rasa/dialogue_understanding/coexistence/router_template.jinja2,sha256=CHWFreN0sv1EbPh-hf5AlCt3zxy2_llX1Pdn9Q11Y18,357
370
370
  rasa/dialogue_understanding/commands/__init__.py,sha256=F-pLETYRUjhIkjjDfXGUuPsK_ac1HcLmJkrUUP0RhME,2259
371
371
  rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=fKOj9ScLxuaFO9Iw0p7og_4zMiw2weBdx322rBKlnCI,3519
372
372
  rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=7Jcvza6OBT8vM7bwJlTCujKsCMrC8gxR0DE6uaIb5_0,5340
373
373
  rasa/dialogue_understanding/commands/change_flow_command.py,sha256=NnD9PM0B9o4oxTtYdcb-lDBC0-oQkbAQRB-55iYCkng,2409
374
374
  rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=PtwNuAHJdIUQ_PIOv5bguVJMyZ_2jPtoozQQdiebKB4,2842
375
- rasa/dialogue_understanding/commands/clarify_command.py,sha256=BpJ2CQHaA7ck6Vh5WKD7v4m7MOA_Kie-DSBoHR8oVbk,4291
375
+ rasa/dialogue_understanding/commands/clarify_command.py,sha256=wFQroQnSTuuTwFg7pQm6XNB-K1ZaLNMRSaR7IXRp96g,4293
376
376
  rasa/dialogue_understanding/commands/command.py,sha256=rhxHmllTMwvb4Uq-pDqmUdlKtu-87y8nqN5DRO-KDwE,2529
377
377
  rasa/dialogue_understanding/commands/command_syntax_manager.py,sha256=vO6sOak0g9GucEtiNximJ9bQFbHQwWJ-M5XNF1gGxz4,1893
378
378
  rasa/dialogue_understanding/commands/correct_slots_command.py,sha256=LlaBtWc3y-DyDPMF-zGG9x_J9uCe78LqiuogHIyoz5Q,10810
@@ -387,7 +387,7 @@ rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=8SavU
387
387
  rasa/dialogue_understanding/commands/restart_command.py,sha256=vvmucwlVtfh6VMgdOn5hZfsP9U5HhfbDeBSG2IndX0Y,1639
388
388
  rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68_kV1Hv4i317bbeBeVHHyhW_A7r5yzs,1770
389
389
  rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
390
- rasa/dialogue_understanding/commands/set_slot_command.py,sha256=_Ce8OAikmwYVtiCnTUpUVGsCC2Zj-6Iz7iLbISDEu3U,6768
390
+ rasa/dialogue_understanding/commands/set_slot_command.py,sha256=DZSr5BGZOuJjGdcfKki8UZpx4pvt54BPD5ZV83HaU00,6770
391
391
  rasa/dialogue_understanding/commands/skip_question_command.py,sha256=PvGpiW0Dk1xwvmntzhz7pEn99XqPv5nMQfR-cwNKxXk,3296
392
392
  rasa/dialogue_understanding/commands/start_flow_command.py,sha256=prPbTh7salW-p44JNQ2kkJHFBtnLXJCBT_3wDNsN_K4,4542
393
393
  rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
@@ -397,7 +397,7 @@ rasa/dialogue_understanding/generator/__init__.py,sha256=pBm0o6pnJA_0W0UOrGuVsiG
397
397
  rasa/dialogue_understanding/generator/_jinja_filters.py,sha256=KuK7nGKvKzKJz6Wg3AmrLFvzneGgIyeK825MCE379wc,248
398
398
  rasa/dialogue_understanding/generator/command_generator.py,sha256=WAlDCzpQuQnoWSHozq3a6xIN5UWMxxiKFFIRp9AXvA0,15640
399
399
  rasa/dialogue_understanding/generator/command_parser.py,sha256=wf6FSgqBw5F0legg06SqKlzajIN6sc_Cov2lFY_O9MI,8109
400
- rasa/dialogue_understanding/generator/constants.py,sha256=PuUckBGUZ-Tu31B0cs8yxN99BDW3PGoExZa-BlIL5v8,1108
400
+ rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
401
401
  rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
402
402
  rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=DavL-37e0tksMWkxvFImoqlsmYeYeSdDN3u7wZI0K-8,17817
403
403
  rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=P1Hwjt8ph2oQQ2PzWaaBRcU36ia4mN21nTzhLtEF5Wc,23586
@@ -412,7 +412,7 @@ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_template.j
412
412
  rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2,sha256=z-cnFVfIE_kEnY1o52YE2CdCWwgYTv7R3xVxsjXWlnw,3808
413
413
  rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2,sha256=4076ARsy0E0iADBX6li19IoM3F4F-2wK3bL6UEOvCdo,3620
414
414
  rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=P732pdylTR_EM7xZIXbSWZuQY2lOQZ7EKkpMDhpHrps,22391
415
+ rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=Lm688m3m_Z2ZvIrpTQlmxeA2Op-S0ViSPk3wIknyCmM,22413
416
416
  rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=RWTPdeBfdGUmdFSUzdQejcbJJLhc_815G0g6AabTK04,5100
417
417
  rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
418
418
  rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -437,7 +437,7 @@ rasa/dialogue_understanding/patterns/user_silence.py,sha256=xP-QMnd-MsybH5z4g01h
437
437
  rasa/dialogue_understanding/patterns/validate_slot.py,sha256=hqd5AEGT3M3HLNhMwuI9W9kZNCvgU6GyI-2xc2b4kz8,2085
438
438
  rasa/dialogue_understanding/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
439
  rasa/dialogue_understanding/processor/command_processor.py,sha256=3Q7vux5xN1oMwF7SPpbgm4934G_M9nF1dLDPiw_pAIk,29952
440
- rasa/dialogue_understanding/processor/command_processor_component.py,sha256=nvp_q-vM2ZEa7sbNMjRhEeuvmCwVWQl1ckTf0UAXuH4,1606
440
+ rasa/dialogue_understanding/processor/command_processor_component.py,sha256=t2O-31xQOV50RNG3RecVk9_vRBzqv8e709-2PfA-MLk,1633
441
441
  rasa/dialogue_understanding/stack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
442
  rasa/dialogue_understanding/stack/dialogue_stack.py,sha256=cYV6aQeh0EuOJHODDqK3biqXozYTX8baPgLwHhPxFqs,5244
443
443
  rasa/dialogue_understanding/stack/frames/__init__.py,sha256=wczg4PXtwGlCcRWT4gdtwgO-ZHVDcEYG11qDMe5hRNw,656
@@ -455,12 +455,12 @@ rasa/dialogue_understanding_test/command_metric_calculation.py,sha256=ys1BobRxqE
455
455
  rasa/dialogue_understanding_test/constants.py,sha256=G63FEzswDUOonTxoXQicEJwI6ICkSx3YP1ILkGH1ijw,790
456
456
  rasa/dialogue_understanding_test/du_test_case.py,sha256=cd47xHkWj4AGuHVqAfqcTCHjJYxBw5TEklpxiB33T3U,15526
457
457
  rasa/dialogue_understanding_test/du_test_result.py,sha256=AL1T5f9OoEeTFmCIN5wmqPELXBnYrWwRn3ZtAEIBLfA,15086
458
- rasa/dialogue_understanding_test/du_test_runner.py,sha256=ZG-TNfu-Ak9l_gg9NNadzKzARgICJ9wlsYooCBi1WKU,11943
458
+ rasa/dialogue_understanding_test/du_test_runner.py,sha256=RnEIgTps9w3_dCW0S7fCm-QfncxyegmofBm_QzeBmEE,11186
459
459
  rasa/dialogue_understanding_test/du_test_schema.yml,sha256=zgIhb6PE8LnoigVmv4NbU3cjSsr2SkGoO-5Xh4Et9KA,4767
460
460
  rasa/dialogue_understanding_test/io.py,sha256=A797fXYvjFZM4ejA7ozZwp71eFLg-ebTM4I_rZwH4yk,15127
461
461
  rasa/dialogue_understanding_test/test_case_simulation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
462
462
  rasa/dialogue_understanding_test/test_case_simulation/exception.py,sha256=RJV8CfoGKmfpC3d28y7IBKfmcAZSm2Vs6p0GkiCHlcc,1034
463
- rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py,sha256=ypRPY3ua5wRrIDfXF1hSBsJzAXpu8qlQP9fR9Neb3jY,12965
463
+ rasa/dialogue_understanding_test/test_case_simulation/test_case_tracker_simulator.py,sha256=sMPDKYPAUQxdx642tLtiWZD-ewpwoorfwFJfEC3p7Kk,12840
464
464
  rasa/dialogue_understanding_test/utils.py,sha256=YxaYvxlrMOBeS4PcpvVy5NIuN3-Pliq1kBhyvYVnABA,2438
465
465
  rasa/dialogue_understanding_test/validation.py,sha256=JFsDIjdB-CNPKhRjBBNKzNoNq9nfnEtRC15YhG1AUg0,2701
466
466
  rasa/e2e_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -496,7 +496,7 @@ rasa/engine/loader.py,sha256=fCE3L3uweuGrluyisqkbayeIxqo1NUE-EnlwjwwaFcY,1922
496
496
  rasa/engine/recipes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
497
497
  rasa/engine/recipes/config_files/default_config.yml,sha256=E1sAW6Qq_T0QXBDK8NzkhkmSESX9g8Op85h5aCVbYlA,1194
498
498
  rasa/engine/recipes/default_components.py,sha256=pFPA5ljoqQcy7s8mhQDEFFKY-2nqEiGfmr5Db06hVjU,3948
499
- rasa/engine/recipes/default_recipe.py,sha256=K35i3COhsmH2bK9Tl5RpoF4pFl-TXPWSeBSI4cwD118,46509
499
+ rasa/engine/recipes/default_recipe.py,sha256=Lh0N-DJmEKpMz9gLJT82f7lR7oXV5mGM09b9FVOiJ9o,47596
500
500
  rasa/engine/recipes/graph_recipe.py,sha256=vG5HkGWgJh2_F7IBKnylKZ5LJMpGx0THWbO7QQ-ElmE,3391
501
501
  rasa/engine/recipes/recipe.py,sha256=aIzV78BiUEE8B8hY5pkNPu-85CwSjCb6YaJvurz7n6c,3346
502
502
  rasa/engine/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -534,18 +534,18 @@ rasa/hooks.py,sha256=5ZMrqNz323w56MMY6E8jeZ_YXgRqq8p-yi18S2XOmbo,4061
534
534
  rasa/jupyter.py,sha256=TCYVD4QPQIMmfA6ZwDUBOBTAECwCwbU2XOkosodLO9k,1782
535
535
  rasa/keys,sha256=2Stg1fstgJ203cOoW1B2gGMY29fhEnjIfTVxKv_fqPo,101
536
536
  rasa/llm_fine_tuning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
537
- rasa/llm_fine_tuning/annotation_module.py,sha256=6wBBjGwONVlikp79xAHp5g3rydEhPM6kP1bw1g-maYk,8578
538
- rasa/llm_fine_tuning/conversations.py,sha256=QZVaUsfXe5iIE830Bv-_3oo8luhGfHpirvubxzOoEvA,4116
539
- rasa/llm_fine_tuning/llm_data_preparation_module.py,sha256=jZ2ItgawV6PzakQVg5JHOrt-_9CwaSAJ01qGZND8uLI,6246
537
+ rasa/llm_fine_tuning/annotation_module.py,sha256=PKYbYtgGQ0tm0PnLANzC3FDTjeRkLH_AJi4RUAkgx4Q,9533
538
+ rasa/llm_fine_tuning/conversations.py,sha256=qzoTFQiwADmzL9mocqML4a-nAgEu6hlOSE3K87LvhM0,4272
539
+ rasa/llm_fine_tuning/llm_data_preparation_module.py,sha256=Vh6HHDvH1ueaNgBWnzIA7ymcTwHpqVvKxIPAnMKZtyY,7153
540
540
  rasa/llm_fine_tuning/paraphrasing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
541
- rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py,sha256=YwY4btMR-GOOuL_YgMpiMMrJYbby3kLXAv9HUwsrdHU,10147
541
+ rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py,sha256=vbzj26IQRX_iJLsA7EHZu7Z-adVzfb9xjNe2Y3-1CCs,10242
542
542
  rasa/llm_fine_tuning/paraphrasing/default_rephrase_prompt_template.jina2,sha256=sOHiE0WYEp7v7U6FUwHdlG7dAYDCDIWWPEP3eAj6elE,1340
543
- rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py,sha256=Gj6_CGq5cfPW8doBHIeppY2fs8p4b0r0keCq9Jb1x8w,4796
543
+ rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py,sha256=DVNyoNB1tXTrDNKz5bGjJiQig-0UH3nKcqObxfYtlkM,4576
544
544
  rasa/llm_fine_tuning/paraphrasing/rephrased_user_message.py,sha256=cOEmZ71yDXW9-7aZm1gjNHVn_N2kNTHttDqSAz0-lEA,292
545
- rasa/llm_fine_tuning/paraphrasing_module.py,sha256=JqcS_a4hCHnuwY2KMNfJbxu-LXTs9PPbbYzTIoRsBI8,4802
546
- rasa/llm_fine_tuning/storage.py,sha256=dC2Lc4LS_Kpw97MC7LRVkn5TuZ5bOOUnu9QsCm-QDUc,5700
545
+ rasa/llm_fine_tuning/paraphrasing_module.py,sha256=DIimTsamitS2k-Mes3OCBc0KPK52pSMRPOH_N7TcTIk,4574
546
+ rasa/llm_fine_tuning/storage.py,sha256=wSurHOYh_hk0rNiHQIcXEdXqakB9M4UiCRlrT8S4WZs,5776
547
547
  rasa/llm_fine_tuning/train_test_split_module.py,sha256=z1sFYN3-5rmABiJqOjabLMEbkLK8bNfrXkooLCKDZM4,16832
548
- rasa/llm_fine_tuning/utils.py,sha256=08XJhxwMhKZg7P3QDlRJNOTwW-RP4ShZ7IebBpGrJLk,260
548
+ rasa/llm_fine_tuning/utils.py,sha256=wAhiwh-CF-gxxRkNI_Mr4wJ4T7HA7jrLjsxjCxosyeE,2357
549
549
  rasa/markers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
550
550
  rasa/markers/marker.py,sha256=TCLhJ-wHcvVlajIsaMm_NOqL_H6X553Oey5UZ05uCSc,9147
551
551
  rasa/markers/marker_base.py,sha256=7yxUQB2Sw7issHZBFF9mcPvO9IhabywExAEvK_mm0Ks,33467
@@ -625,7 +625,7 @@ rasa/nlu/utils/spacy_utils.py,sha256=5EnHR-MVAZhGbg2rq8VpOu7I0tagV3ThRTlM0-WO2Cg
625
625
  rasa/plugin.py,sha256=cSmFhSWr5WQyYXdJOWwgH4ra_2kbhoNLZAtnqcsGny4,3071
626
626
  rasa/server.py,sha256=0GQ9rML75EOuRDpUHZjz-uYbkSbnNuK0SRIGQJeiR-I,59599
627
627
  rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
628
- rasa/shared/constants.py,sha256=PBpmxNQM29MoLp1pY7RGQ1I1hPt3N0_r2l_y5KguEnQ,12129
628
+ rasa/shared/constants.py,sha256=u9GnSSQYRjYN_mjd7XHMGgoVc6ipoiZQuLt3bFOF0O0,12264
629
629
  rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
630
630
  rasa/shared/core/command_payload_reader.py,sha256=puHYsp9xbX0YQm2L1NDBItOFmdzI7AzmfGefgcHiCc0,3871
631
631
  rasa/shared/core/constants.py,sha256=gwIZHjQYafHnBlMe9_jUiIPm17hxYG9R1MOCtxeC1Ns,6337
@@ -678,7 +678,7 @@ rasa/shared/core/training_data/visualization.py,sha256=kZR17ymqgPTbu2U-U6DeKpqhZ
678
678
  rasa/shared/data.py,sha256=HVbdDmlaeCDPuJiwcdxGH_3wnT6WbyI2n_BMvQNJBCM,6873
679
679
  rasa/shared/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
680
680
  rasa/shared/engine/caching.py,sha256=SfiDl-xtkBbOU3qiSYi9rTA136kS4v5fixIS7vJuAP4,742
681
- rasa/shared/exceptions.py,sha256=5vli6aaruH_CJFkVEuHp5NmEzDLV8x6CKXXueDd2_nY,5118
681
+ rasa/shared/exceptions.py,sha256=YAvVWVEX4D95Q_SwlwZUDs5IG9mJnkTVr6jwx6dk__g,5254
682
682
  rasa/shared/importers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
683
683
  rasa/shared/importers/importer.py,sha256=N-I07_uWd_-mlyacT2KrnpRqDkpfG1GbogO-E79CpP0,29281
684
684
  rasa/shared/importers/multi_project.py,sha256=73fzUGDFpzHt9Nhy3EmPZg5mHj1EApmFiLoxitOX-EQ,8137
@@ -711,14 +711,14 @@ rasa/shared/nlu/training_data/util.py,sha256=SCd97o6dDhbodasRK3JuaiAA1Xcy0faEMTj
711
711
  rasa/shared/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
712
712
  rasa/shared/providers/_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
713
713
  rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=MnvWRlCN-nFv5wb8AtFPM1tymCr72jmhI-MQgZZphAs,19392
714
- rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=1S_CGS_mIjDBHkBphdptYXdIFmngzGtI2y0f94mMi8c,10653
714
+ rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=xUmPM3MRMPdje0q_2MH4FHj77uiMjZ6H2yky37UATUg,10804
715
715
  rasa/shared/providers/_configs/client_config.py,sha256=nQ469h1XI970_7Vs49hNIpBIwlAeiAg-cwV0JFp7Hg0,1618
716
716
  rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=tViurJ1NDbiBn9b5DbzhFHO1pJM889MC-GakWhEX07E,4352
717
717
  rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py,sha256=q8ddTFwddDhx654ZQmg9eP_yo77N3Xg77hAmfXOmzPg,8200
718
718
  rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=OX7egiQXkGSYxIfEOFrGFwCIKFJc3IgBKrZGqdjeMVQ,7265
719
719
  rasa/shared/providers/_configs/model_group_config.py,sha256=gcvRY86StqCLqAOxLh-2sWEPxMNnwt43vR3QaviElZI,5618
720
720
  rasa/shared/providers/_configs/oauth_config.py,sha256=eMHaXdSwiYqe4LC_UhDPJcrE7tqv3HDc8ghgkhwcYo4,791
721
- rasa/shared/providers/_configs/openai_client_config.py,sha256=tKCQSjtpVmPO_30sRmcFFDk0tNFs5bVseyI7iBU6ZOY,5839
721
+ rasa/shared/providers/_configs/openai_client_config.py,sha256=NVlm76Ug0LHxEEVqEJeEavCtRYQZBw7NzwgCtvTG1zs,5990
722
722
  rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=elpbqVNSgkAiM0Dg-0N3ayVkSi6TAERepdZG7Bv8NdI,2245
723
723
  rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=l2JnypPXFL6KVxhftKTYvh-NqpXJ8--pjbJ-IQHoPRs,5963
724
724
  rasa/shared/providers/_configs/utils.py,sha256=u2Ram05YwQ7-frm_r8n9rafjZoF8i0qSC7XjYQRuPgo,3732
@@ -726,7 +726,7 @@ rasa/shared/providers/_ssl_verification_utils.py,sha256=vUnP0vocf0GQ0wG8IQpPcCet
726
726
  rasa/shared/providers/_utils.py,sha256=EZIrz3ugcI-9PWgC7v0VMUNYondAAOeeRLIE8ZmResw,5886
727
727
  rasa/shared/providers/constants.py,sha256=hgV8yNGxIbID_2h65OoSfSjIE4UkazrsqRg4SdkPAmI,234
728
728
  rasa/shared/providers/embedding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
729
- rasa/shared/providers/embedding/_base_litellm_embedding_client.py,sha256=PFavNnD6EVDQiqc9sLnBRV0hebW4iCjIh_dvpwzg4RI,8796
729
+ rasa/shared/providers/embedding/_base_litellm_embedding_client.py,sha256=1CUYxps_TrLVyPsPfOw7iDS502fDePseBIKnqc3ncwQ,9005
730
730
  rasa/shared/providers/embedding/_langchain_embedding_client_adapter.py,sha256=IR2Rb3ReJ9C9sxOoOGRXgtz8STWdMREs_4AeSMKFjl4,2135
731
731
  rasa/shared/providers/embedding/azure_openai_embedding_client.py,sha256=HKHMx6m669CC19u6GPnpSLzA0PwvHlquhaK3QhqHI78,12469
732
732
  rasa/shared/providers/embedding/default_litellm_embedding_client.py,sha256=da17WeHjZp95Uv9jmTKxklNRcNpn-qRsRPcwDQusElg,4397
@@ -736,7 +736,7 @@ rasa/shared/providers/embedding/huggingface_local_embedding_client.py,sha256=Zo3
736
736
  rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=eafDk6IgQtL_kiKgpa6sJs1oATyRi2NT2leUFQsED2s,4551
737
737
  rasa/shared/providers/embedding/openai_embedding_client.py,sha256=XNRGE7apo2v3kWRrtgxE-Gq4rvNko3IiXtvgC4krDYE,5429
738
738
  rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
739
- rasa/shared/providers/llm/_base_litellm_client.py,sha256=uhVNIQQx8DXfA_baxavCgjvcF31bTjS_JcxHYRNneIM,11415
739
+ rasa/shared/providers/llm/_base_litellm_client.py,sha256=Ua5Kt6VGe5vRzSzWWWx2Q3LH2PCDd8V7V4zfYD464yU,11634
740
740
  rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=ui85vothxR2P_-eLc4nLgbpjnpEKY2BXnIjLxBZoYz8,12504
741
741
  rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=xx-o-NX_mtx6AszK--ZRj8n8JyEJuVu1-42dt8AynBM,4083
742
742
  rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=_6vAdPLAVSI_sBJLaXLnE87M-0ip_klfQ78fQ_pyoyI,7947
@@ -758,7 +758,7 @@ rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i
758
758
  rasa/shared/utils/health_check/health_check.py,sha256=izixrbc9BxFSsjzwoIw9U0w0VKSX5gMwhey8bcwe1wc,9709
759
759
  rasa/shared/utils/health_check/llm_health_check_mixin.py,sha256=ANP5Q68TRX8p4wWkRCAISsWBV1iYYeGnqWILnR1NawE,957
760
760
  rasa/shared/utils/io.py,sha256=AhuECoXGO367NvWRCBu99utEtTQnyxWVJyKOOpLePpg,15917
761
- rasa/shared/utils/llm.py,sha256=Q8RxUzcDqczco87_M_f9yc4Lirx48m_C9vkpb45y2ro,30861
761
+ rasa/shared/utils/llm.py,sha256=XF_zF0fobuTiFDMvpRCs8BJ3kCXSXMqzyWaP9rxaYRs,32257
762
762
  rasa/shared/utils/pykwalify_extensions.py,sha256=2fvaysurCST_EMelCsECzkBgvClKYbdHb2Ty9rZhszw,1846
763
763
  rasa/shared/utils/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
764
764
  rasa/shared/utils/schemas/config.yml,sha256=czxSADw9hOIZdhvFP8pVUQo810hs9_C8ZGfCPx17taM,27
@@ -822,9 +822,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
822
822
  rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
823
823
  rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
824
824
  rasa/validator.py,sha256=524VlFTYK0B3iXYveVD6BDC3K0j1QfpzJ9O-TAWczmc,83166
825
- rasa/version.py,sha256=xvjgzcMusQj7hAVj2HW5HXv63_EHazJDfb-XQzGy9RU,118
826
- rasa_pro-3.12.13.dist-info/METADATA,sha256=Ol4uriGrH7UxdD7N3Z3Se-9eBZGOm2szhKZCuBJP6VY,10609
827
- rasa_pro-3.12.13.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
828
- rasa_pro-3.12.13.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
829
- rasa_pro-3.12.13.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
830
- rasa_pro-3.12.13.dist-info/RECORD,,
825
+ rasa/version.py,sha256=D-PdFmxWkTPC5meiQRXYdiwBOUJX9NhWvM-c5r8kcEU,118
826
+ rasa_pro-3.12.15.dist-info/METADATA,sha256=wDGZT_6ulp7E1m_zWu4tVOHVDaany1Jz0BvKm0uUtgQ,10609
827
+ rasa_pro-3.12.15.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
828
+ rasa_pro-3.12.15.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
829
+ rasa_pro-3.12.15.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
830
+ rasa_pro-3.12.15.dist-info/RECORD,,