rasa-pro 3.12.12.dev1__py3-none-any.whl → 3.12.14__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 (37) hide show
  1. rasa/cli/llm_fine_tuning.py +11 -10
  2. rasa/core/nlg/contextual_response_rephraser.py +4 -2
  3. rasa/core/policies/enterprise_search_policy.py +7 -4
  4. rasa/core/policies/intentless_policy.py +15 -9
  5. rasa/core/run.py +7 -2
  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 +2 -2
  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/llm_based_command_generator.py +1 -1
  12. rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.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/llm_fine_tuning/annotation_module.py +39 -9
  16. rasa/llm_fine_tuning/conversations.py +3 -0
  17. rasa/llm_fine_tuning/llm_data_preparation_module.py +66 -49
  18. rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py +4 -2
  19. rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py +52 -44
  20. rasa/llm_fine_tuning/paraphrasing_module.py +10 -12
  21. rasa/llm_fine_tuning/storage.py +4 -4
  22. rasa/llm_fine_tuning/utils.py +63 -1
  23. rasa/server.py +6 -2
  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 +28 -0
  31. rasa/telemetry.py +1 -1
  32. rasa/version.py +1 -1
  33. {rasa_pro-3.12.12.dev1.dist-info → rasa_pro-3.12.14.dist-info}/METADATA +3 -3
  34. {rasa_pro-3.12.12.dev1.dist-info → rasa_pro-3.12.14.dist-info}/RECORD +37 -37
  35. {rasa_pro-3.12.12.dev1.dist-info → rasa_pro-3.12.14.dist-info}/NOTICE +0 -0
  36. {rasa_pro-3.12.12.dev1.dist-info → rasa_pro-3.12.14.dist-info}/WHEEL +0 -0
  37. {rasa_pro-3.12.12.dev1.dist-info → rasa_pro-3.12.14.dist-info}/entry_points.txt +0 -0
rasa/telemetry.py CHANGED
@@ -915,7 +915,7 @@ def initialize_error_reporting() -> None:
915
915
  OSError,
916
916
  ],
917
917
  in_app_include=["rasa"], # only submit errors in this package
918
- with_locals=False, # don't submit local variables
918
+ include_local_variables=False, # don't submit local variables
919
919
  release=f"rasa-{rasa.__version__}",
920
920
  default_integrations=False,
921
921
  environment="development" if in_continuous_integration() else "production",
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.12.dev1"
3
+ __version__ = "3.12.14"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rasa-pro
3
- Version: 3.12.12.dev1
3
+ Version: 3.12.14
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
@@ -26,7 +26,7 @@ Requires-Dist: SQLAlchemy (>=2.0.22,<2.1.0)
26
26
  Requires-Dist: absl-py (>=2.0,<2.1)
27
27
  Requires-Dist: aio-pika (>=8.2.3,<9.4.4)
28
28
  Requires-Dist: aiogram (>=3.15,<3.16)
29
- Requires-Dist: aiohttp (>=3.9.4,<3.10)
29
+ Requires-Dist: aiohttp (>=3.10,<3.11)
30
30
  Requires-Dist: apscheduler (>=3.10,<3.11)
31
31
  Requires-Dist: attrs (>=23.1,<23.2)
32
32
  Requires-Dist: azure-identity (>=1.19.0,<1.20.0)
@@ -115,7 +115,7 @@ Requires-Dist: sanic-routing (>=22.8.0,<23.0.0)
115
115
  Requires-Dist: scikit-learn (>=1.5.1,<1.6.0)
116
116
  Requires-Dist: scipy (>=1.13.1,<1.14.0)
117
117
  Requires-Dist: sentencepiece[sentencepiece] (>=0.1.99,<0.2.0) ; extra == "transformers" or extra == "full"
118
- Requires-Dist: sentry-sdk (>=1.14.0,<1.15.0)
118
+ Requires-Dist: sentry-sdk (>=2.8.0,<3)
119
119
  Requires-Dist: setuptools (>=78.1.0,<78.2.0)
120
120
  Requires-Dist: sklearn-crfsuite (>=0.3.6,<0.4.0)
121
121
  Requires-Dist: skops (>=0.10.0,<0.11.0)
@@ -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,7 +318,7 @@ 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=usLMDY5BBbpUJYmx6hcVs0kzCHfr1cX-MCNuQWfnCm4,13678
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
@@ -327,7 +327,7 @@ rasa/core/nlg/translate.py,sha256=ZXRvysqXGdtHBJ7x3YkW6zfmnb9DuEGHCMTL41v-M8M,21
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
@@ -343,7 +343,7 @@ rasa/core/policies/rule_policy.py,sha256=EItfUn07JIBLRIbriPKDprsvWq_-xzZTGrlTS2e
343
343
  rasa/core/policies/ted_policy.py,sha256=0RzIuyrtt4PxLcqQ-bfaExkZvU-TnsMbgmDcwh2SakY,87710
344
344
  rasa/core/policies/unexpected_intent_policy.py,sha256=ZXvbswf2NDy00kHmBQcyXa1OVYFyc79HQKrFkQ4gCfM,39609
345
345
  rasa/core/processor.py,sha256=sUEKKDFHw0uDw8BgorN4DFQa5f_kVbOS344qV4F0oDk,59821
346
- rasa/core/run.py,sha256=5qq1Z-GiIrFejsthOnnkhQtNiqccuYHYf8ixP49PSHk,11484
346
+ rasa/core/run.py,sha256=N-NVdo-2wlKbaC1O1lS0t2Uraw9GjJYgZa0MkMPLdlg,11685
347
347
  rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
348
  rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
349
349
  rasa/core/secrets_manager/endpoints.py,sha256=4b7KXB9amdF23eYGsx8215bOjE5-TQ73qD2hdI8Sm9c,12662
@@ -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=H-sse6PA47nPkFXhx8L6XAztdInSrgU_U4U0VF45EBU,4289
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,10 +397,10 @@ 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
- rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=uzzGufs2oDBXqz4LKz2429Hr3GvkMIKbsmBrgvEG4TA,23587
403
+ rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=P1Hwjt8ph2oQQ2PzWaaBRcU36ia4mN21nTzhLtEF5Wc,23586
404
404
  rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=z7jhIJ3W_5GFH-p15kVoWbigMIoY8fIJjc_j_uX7yxw,2581
405
405
  rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
406
406
  rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
@@ -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
@@ -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
@@ -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
@@ -623,9 +623,9 @@ rasa/nlu/utils/mitie_utils.py,sha256=xf2EoOX8nu--t9f7lZ8bFpDtgJweUTey3aOI1R5vGvQ
623
623
  rasa/nlu/utils/pattern_utils.py,sha256=5Efoc6tpcVmoirAZuCNGNh0QjIs7tUxxk2PfLyPxZAM,5386
624
624
  rasa/nlu/utils/spacy_utils.py,sha256=5EnHR-MVAZhGbg2rq8VpOu7I0tagV3ThRTlM0-WO2Cg,11794
625
625
  rasa/plugin.py,sha256=cSmFhSWr5WQyYXdJOWwgH4ra_2kbhoNLZAtnqcsGny4,3071
626
- rasa/server.py,sha256=eomGM_3SpBxaF_-VfZbkSO_bMk_vI1XLUZjt32f4gcI,59390
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=FNZvQ96vJ-_JWJsbkMB7DcKpKqoRWqbRIXaHH1fuD74,31872
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
@@ -776,7 +776,7 @@ rasa/studio/download.py,sha256=Ap_Hq3veKKp5JxWt_qAeTJg0KLKkzowMclx2KPE1fy8,17188
776
776
  rasa/studio/results_logger.py,sha256=eLBi49o_4nkXccRM0h6-sjlV1o_HxTNEVJMdNocTw_I,4963
777
777
  rasa/studio/train.py,sha256=gfPtirITzBDo9gV4hqDNSwPYtVp_22cq8OWI6YIBgyk,4243
778
778
  rasa/studio/upload.py,sha256=K4QJIE-GYWgA1Z6dXOJAA7n0McvlBt0wOQyiCMXtZCk,17784
779
- rasa/telemetry.py,sha256=6-7-axs_CjWOsz9cfc_66i1S0NiCiLlELgxG_2RBe8Q,67272
779
+ rasa/telemetry.py,sha256=2iFGF9LQIbZJpvecPYWMxVBmhWDHTr6vpuyw-oDFbgI,67284
780
780
  rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
781
781
  rasa/tracing/config.py,sha256=32X2rqAiHe0e-Iijb5AivjqDs2j03n8xx5mo07NBMI4,12964
782
782
  rasa/tracing/constants.py,sha256=-3vlfI9v_D8f-KB5tuiqBHhszu2WofFQOyjKBn28gyg,2889
@@ -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=QWa_BQoCDacPltrsk8lcJtzpUdXacGaAswNtIf0Cwj4,123
826
- rasa_pro-3.12.12.dev1.dist-info/METADATA,sha256=UzGujHcb0oPvZAi81__B4IR-yCkJOkoZx8jXQ23nYrs,10621
827
- rasa_pro-3.12.12.dev1.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
828
- rasa_pro-3.12.12.dev1.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
829
- rasa_pro-3.12.12.dev1.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
830
- rasa_pro-3.12.12.dev1.dist-info/RECORD,,
825
+ rasa/version.py,sha256=PMp-1E28OWut004RIQzUYhsHS7UgOt8Jqa62KVG7EK8,118
826
+ rasa_pro-3.12.14.dist-info/METADATA,sha256=HSngZfB44mZjD5FQS4gF8mVWm_v4EPKTU5PSNwJQAzk,10609
827
+ rasa_pro-3.12.14.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
828
+ rasa_pro-3.12.14.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
829
+ rasa_pro-3.12.14.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
830
+ rasa_pro-3.12.14.dist-info/RECORD,,