rasa-pro 3.12.0rc1__py3-none-any.whl → 3.12.0rc3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rasa-pro might be problematic. Click here for more details.

Files changed (70) hide show
  1. README.md +10 -13
  2. rasa/cli/dialogue_understanding_test.py +5 -8
  3. rasa/cli/llm_fine_tuning.py +47 -12
  4. rasa/cli/project_templates/calm/domain/list_contacts.yml +1 -2
  5. rasa/cli/project_templates/calm/domain/remove_contact.yml +1 -2
  6. rasa/cli/project_templates/calm/domain/shared.yml +1 -4
  7. rasa/core/actions/action_handle_digressions.py +35 -13
  8. rasa/core/channels/voice_stream/asr/asr_event.py +5 -0
  9. rasa/core/channels/voice_stream/audiocodes.py +19 -6
  10. rasa/core/channels/voice_stream/call_state.py +3 -9
  11. rasa/core/channels/voice_stream/genesys.py +40 -55
  12. rasa/core/channels/voice_stream/voice_channel.py +61 -39
  13. rasa/core/policies/flows/flow_executor.py +7 -2
  14. rasa/core/processor.py +0 -1
  15. rasa/core/tracker_store.py +123 -34
  16. rasa/dialogue_understanding/commands/can_not_handle_command.py +1 -1
  17. rasa/dialogue_understanding/commands/cancel_flow_command.py +1 -1
  18. rasa/dialogue_understanding/commands/change_flow_command.py +1 -1
  19. rasa/dialogue_understanding/commands/chit_chat_answer_command.py +1 -1
  20. rasa/dialogue_understanding/commands/clarify_command.py +1 -1
  21. rasa/dialogue_understanding/commands/command_syntax_manager.py +1 -1
  22. rasa/dialogue_understanding/commands/handle_digressions_command.py +1 -7
  23. rasa/dialogue_understanding/commands/human_handoff_command.py +1 -1
  24. rasa/dialogue_understanding/commands/knowledge_answer_command.py +1 -1
  25. rasa/dialogue_understanding/commands/repeat_bot_messages_command.py +1 -1
  26. rasa/dialogue_understanding/commands/set_slot_command.py +2 -1
  27. rasa/dialogue_understanding/commands/skip_question_command.py +1 -1
  28. rasa/dialogue_understanding/commands/start_flow_command.py +3 -1
  29. rasa/dialogue_understanding/commands/utils.py +2 -32
  30. rasa/dialogue_understanding/generator/command_parser.py +41 -0
  31. rasa/dialogue_understanding/generator/constants.py +7 -2
  32. rasa/dialogue_understanding/generator/llm_based_command_generator.py +9 -2
  33. rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +1 -1
  34. rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2 +29 -48
  35. rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_fallback_other_models_template.jinja2 +57 -0
  36. rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2 +23 -50
  37. rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +141 -27
  38. rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +32 -18
  39. rasa/dialogue_understanding/processor/command_processor.py +43 -23
  40. rasa/dialogue_understanding/stack/utils.py +49 -6
  41. rasa/dialogue_understanding_test/du_test_case.py +30 -10
  42. rasa/dialogue_understanding_test/du_test_result.py +1 -1
  43. rasa/e2e_test/assertions.py +6 -8
  44. rasa/e2e_test/llm_judge_prompts/answer_relevance_prompt_template.jinja2 +5 -1
  45. rasa/e2e_test/llm_judge_prompts/groundedness_prompt_template.jinja2 +4 -0
  46. rasa/engine/language.py +67 -25
  47. rasa/llm_fine_tuning/conversations.py +3 -31
  48. rasa/llm_fine_tuning/llm_data_preparation_module.py +5 -3
  49. rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py +18 -13
  50. rasa/llm_fine_tuning/paraphrasing_module.py +6 -2
  51. rasa/llm_fine_tuning/train_test_split_module.py +27 -27
  52. rasa/llm_fine_tuning/utils.py +7 -0
  53. rasa/shared/constants.py +4 -0
  54. rasa/shared/core/domain.py +2 -0
  55. rasa/shared/core/slots.py +6 -0
  56. rasa/shared/providers/_configs/azure_entra_id_config.py +8 -8
  57. rasa/shared/providers/llm/litellm_router_llm_client.py +1 -0
  58. rasa/shared/providers/llm/openai_llm_client.py +2 -2
  59. rasa/shared/providers/router/_base_litellm_router_client.py +38 -7
  60. rasa/shared/utils/llm.py +69 -10
  61. rasa/telemetry.py +13 -3
  62. rasa/tracing/instrumentation/attribute_extractors.py +2 -5
  63. rasa/validator.py +2 -2
  64. rasa/version.py +1 -1
  65. {rasa_pro-3.12.0rc1.dist-info → rasa_pro-3.12.0rc3.dist-info}/METADATA +12 -14
  66. {rasa_pro-3.12.0rc1.dist-info → rasa_pro-3.12.0rc3.dist-info}/RECORD +69 -68
  67. rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_default.jinja2 +0 -68
  68. {rasa_pro-3.12.0rc1.dist-info → rasa_pro-3.12.0rc3.dist-info}/NOTICE +0 -0
  69. {rasa_pro-3.12.0rc1.dist-info → rasa_pro-3.12.0rc3.dist-info}/WHEEL +0 -0
  70. {rasa_pro-3.12.0rc1.dist-info → rasa_pro-3.12.0rc3.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,4 @@
1
- README.md,sha256=hu3oA1lnwNcUZbeb3AlbNJidVy64MCYzXIqai8rPORY,3298
1
+ README.md,sha256=rn81McEFcq6MM6i5ZVs-MV7HQd4ffBVtBeVV2DvF7Bo,3175
2
2
  rasa/__init__.py,sha256=YXG8RzVxiSJ__v-AewtV453YoCbmzWlHsU_4S0O2XpE,206
3
3
  rasa/__main__.py,sha256=OmUXcaA9l7KR_eSYCwaCSetuczxjrcN2taNnZ2ZUTbA,6472
4
4
  rasa/anonymization/__init__.py,sha256=Z-ZUW2ofZGfI6ysjYIS7U0JL4JSzDNOkHiiXK488Zik,86
@@ -23,14 +23,14 @@ rasa/cli/arguments/train.py,sha256=bnBIvSMxeY8qOswCdp6-MfXwCf5OIzDmNjDjW84yzYQ,8
23
23
  rasa/cli/arguments/visualize.py,sha256=e8yhvc6Jfy1JKSOIVFV5mY5QPowkf0o1kt6IGujVxcY,861
24
24
  rasa/cli/arguments/x.py,sha256=_23reqNwiit2VoCqmv23kQZudA3iZVXaBV_zEXJjV6w,1028
25
25
  rasa/cli/data.py,sha256=J_L9E0LnNJj6HjiJZkUok0VIhEzjk4Gf5DnXGaTA8nI,13305
26
- rasa/cli/dialogue_understanding_test.py,sha256=IacPnkRfrO_oBHcIZG7t-FI2aGScZpkR9k70baQO300,13536
26
+ rasa/cli/dialogue_understanding_test.py,sha256=DmmY9onitEiyxvsSJvauFnXGJngEgFxp0RGvqqSchC8,13575
27
27
  rasa/cli/e2e_test.py,sha256=guHIeX7qPwv8db4j9zsDG7MQbfUq92xO51u0iOR3eqw,8359
28
28
  rasa/cli/evaluate.py,sha256=104vTMKNQPhuEUm5n1OMVxH4qywaZx14kE_5ULGNMbg,7946
29
29
  rasa/cli/export.py,sha256=vohrKZpUrNVXE2xZM3V-IgWc6UsWUoUl-5tRXSg6Nag,8203
30
30
  rasa/cli/inspect.py,sha256=ZEBd773v_XWgDbghisjGzieKcO0lL2zJOSsmslQAIWo,3295
31
31
  rasa/cli/interactive.py,sha256=_PwvTLF9Sozt0xzDo4W_zYs3SBCoDcxuGDDumD-JtUo,6012
32
32
  rasa/cli/license.py,sha256=oFZU5cQ6CD2DvBgnlss9DgJVHzkSpEVI6eNKlMHgAMM,3565
33
- rasa/cli/llm_fine_tuning.py,sha256=cT9Vgmpsjoyoj1sJjcini47bdyoTnr9xzFKyrpRwpOQ,13670
33
+ rasa/cli/llm_fine_tuning.py,sha256=CPJBjTRHMy1CHpEf0YmUGqkCtcLZDJQ7xQ-m8bDWtm4,15202
34
34
  rasa/cli/markers.py,sha256=DIYfP5ZVRqiwbDiXfgONjwSFckThHdpGsGl6Kqn_CN8,2484
35
35
  rasa/cli/project_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  rasa/cli/project_templates/calm/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -46,9 +46,9 @@ rasa/cli/project_templates/calm/data/flows/list_contacts.yml,sha256=hwm484n_o1-2
46
46
  rasa/cli/project_templates/calm/data/flows/remove_contact.yml,sha256=moo4ShJqW3dnnFGyyIUhFtqC4BAYSa014rbjunLZTQk,969
47
47
  rasa/cli/project_templates/calm/db/contacts.json,sha256=5IxR4hab60DyOLHnCG03dmrQN4B03Sg7Bng5d52xYV4,110
48
48
  rasa/cli/project_templates/calm/domain/add_contact.yml,sha256=ItDgPQM0Hx8cWOwpUaxPfkHhgCpKSOhWRAw7a_HqlCU,1124
49
- rasa/cli/project_templates/calm/domain/list_contacts.yml,sha256=8398tP9LXqqugiBA6tjxLmUndUtvR2PzqwKCShzMRQI,327
50
- rasa/cli/project_templates/calm/domain/remove_contact.yml,sha256=ecY7pILAOrpRoEXn8wl0AEvD4Xs7AJEMQPZlSDoKdjc,1131
51
- rasa/cli/project_templates/calm/domain/shared.yml,sha256=aaSNQmtPH7Q77QTwf2heIAT6mdEHVSPWzZQqXnPFD9U,168
49
+ rasa/cli/project_templates/calm/domain/list_contacts.yml,sha256=iELDp7D-lnGeI44T1XywnrRvboMqFW5qE_E_0SLU6lU,301
50
+ rasa/cli/project_templates/calm/domain/remove_contact.yml,sha256=Kc9JQvt5K8rkd3fLzlQCtlwFjAMoPCBDtoKBKrZpME8,1104
51
+ rasa/cli/project_templates/calm/domain/shared.yml,sha256=l3MJZN1l44OyciUxeWQ_fDuZkmtnI2tHw3AcCGPleMM,92
52
52
  rasa/cli/project_templates/calm/e2e_tests/cancelations/user_cancels_during_a_correction.yml,sha256=2dhrQ9BAL-7L0NlLqU-Cp8dyEhLBkQ8kHpip4zmhXqE,575
53
53
  rasa/cli/project_templates/calm/e2e_tests/cancelations/user_changes_mind_on_a_whim.yml,sha256=7n5jT1oXD3O2Fjv93wZHi8Bir68pxO_XulqvOKJj2h0,214
54
54
  rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_handle.yml,sha256=ENWTNgKZp6iAbB26qDEjo2FwnE0RUiEvlYQGRW43lqQ,658
@@ -96,7 +96,7 @@ rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
96
96
  rasa/core/actions/action.py,sha256=Kqup2dXUREQRA7vPk3-VjLZCVubbRR2I998cOSDRNkg,43336
97
97
  rasa/core/actions/action_clean_stack.py,sha256=xUP-2ipPsPAnAiwP17c-ezmHPSrV4JSUZr-eSgPQwIs,2279
98
98
  rasa/core/actions/action_exceptions.py,sha256=hghzXYN6VeHC-O_O7WiPesCNV86ZTkHgG90ZnQcbai8,724
99
- rasa/core/actions/action_handle_digressions.py,sha256=u1woxFGmDbsoRyEB9yFDJonojRUeYosbm1_afzfecWo,4442
99
+ rasa/core/actions/action_handle_digressions.py,sha256=p3cjzTfT0GEsJlYip-TPnr-PJQ545vQnNp0JPKBUs8A,5234
100
100
  rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
101
101
  rasa/core/actions/action_repeat_bot_messages.py,sha256=2DZFHPS7SKslz_Pm3Tyn0154xTws3E7lMYKl2ktQPTQ,3522
102
102
  rasa/core/actions/action_run_slot_rejections.py,sha256=xsb0AHEWLV9AtX7dsCyxaJBbF0t7REC353YWerHIhts,7274
@@ -276,14 +276,14 @@ rasa/core/channels/voice_ready/utils.py,sha256=Tmq0OOAN2sAvxPP64x298zX1TZYTdszK3
276
276
  rasa/core/channels/voice_stream/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
277
  rasa/core/channels/voice_stream/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
278
  rasa/core/channels/voice_stream/asr/asr_engine.py,sha256=DpWEhkCHJPM1WDsBI5R3czqwvFiyaRMlgCubBNXO4U4,3237
279
- rasa/core/channels/voice_stream/asr/asr_event.py,sha256=QDn8OdeQ-7uBedT6Eqvs8wyR5T4UNHQ32TSMPaRHXwQ,246
279
+ rasa/core/channels/voice_stream/asr/asr_event.py,sha256=skPwrkRrcsptmeWXu9q68i4B-ZbvambCFFLtQ0TIgMo,297
280
280
  rasa/core/channels/voice_stream/asr/azure.py,sha256=uqg2xAmGfP8N9pts_AT6KxobiuQIqRy1lkyU7vqC564,5845
281
281
  rasa/core/channels/voice_stream/asr/deepgram.py,sha256=9cIqRuv9gWzOfEKxeDbhijGoT8EPUV7Oo493WXaHlBo,5682
282
282
  rasa/core/channels/voice_stream/audio_bytes.py,sha256=3V0QQplPD-kVfebaaeVcKgV7pwIJyjnTenujVD3y3sY,340
283
- rasa/core/channels/voice_stream/audiocodes.py,sha256=Qs2JwA_auI474ybnvA7sgCjXjiRvX5ZOuQ2coMt6XW4,9735
283
+ rasa/core/channels/voice_stream/audiocodes.py,sha256=Iu7fifJee0qgaPvfFZPf4RMwYFl_NLvls7rKvOqFnm0,10175
284
284
  rasa/core/channels/voice_stream/browser_audio.py,sha256=fDwp-yaalik8R92EOJHsgHMuNAg9yoeGWVRGMCH2lJQ,3939
285
- rasa/core/channels/voice_stream/call_state.py,sha256=KZ-6GeA7l2KcUwf2oR61tA3r5y0qJA90PmMm1SxGJ2c,1114
286
- rasa/core/channels/voice_stream/genesys.py,sha256=K-0KIc2HOq7rPymD-EOBqa3WQGGX6ncnWyzJjNk5Zqw,12824
285
+ rasa/core/channels/voice_stream/call_state.py,sha256=fbwVbT0ddE7AjTYjx-Mq5jBMEGXanbug5wlBwstaews,899
286
+ rasa/core/channels/voice_stream/genesys.py,sha256=-XznlXrSs4q7pXXDJICI5GEtu3aCzejvHNwtYtcoGM8,11957
287
287
  rasa/core/channels/voice_stream/tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
288
  rasa/core/channels/voice_stream/tts/azure.py,sha256=Fj9vLg-8d6aCoDcycDMG0oIPl5gw7Nhb8MXb-wBvLhE,4221
289
289
  rasa/core/channels/voice_stream/tts/cartesia.py,sha256=cH2eHicZ_NCWtDH-cn9Chq8SSm-1agJRy-ieDJCVlD4,5407
@@ -291,7 +291,7 @@ rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFS
291
291
  rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
292
292
  rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=MA2cWls1Q3hAdLA5ybgqZ7kkG-P5PVeUjg18q8ZdVfY,6403
293
293
  rasa/core/channels/voice_stream/util.py,sha256=d0Tl0tGAnVj3SgGovsUMHx-QL44nrPI29OTYKYleH0U,1987
294
- rasa/core/channels/voice_stream/voice_channel.py,sha256=8ZjmCP_2HBYGfIwTvP-L2gs-91nGKVyRmonii8t5MGg,17304
294
+ rasa/core/channels/voice_stream/voice_channel.py,sha256=e5rwpdxRLD1gFUYffsEvOYPiCEWZGIBGrf4DHlowoOY,18354
295
295
  rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
296
296
  rasa/core/concurrent_lock_store.py,sha256=ycd-aeJJWXIokMRimCdQFHdwuMfl512hZSUHE8oSd2c,7722
297
297
  rasa/core/constants.py,sha256=dEokmEf6XkOFA_xpuwjqwNtlZv-a5Tz5dLMRc7Vu4CU,4070
@@ -333,7 +333,7 @@ rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2,sha256
333
333
  rasa/core/policies/flow_policy.py,sha256=597G62hrLF_CAMCvu-TPRldFnjMP2XEIkhcIaPWcQAc,7489
334
334
  rasa/core/policies/flows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
335
  rasa/core/policies/flows/flow_exceptions.py,sha256=_FQuN-cerQDM1pivce9bz4zylh5UYkljvYS1gjDukHI,1527
336
- rasa/core/policies/flows/flow_executor.py,sha256=gZ7PJ6GQk19r9VUIRA2XacBgaDk_tWwz2Igq_yuuGzc,26810
336
+ rasa/core/policies/flows/flow_executor.py,sha256=1KJhBovD9INHVF7PQD4N7CH46JFfPrsy7QXnnGAPlNU,26938
337
337
  rasa/core/policies/flows/flow_step_result.py,sha256=agjPrD6lahGSe2ViO5peBeoMdI9ngVGRSgtytgxmJmg,1360
338
338
  rasa/core/policies/intentless_policy.py,sha256=p9e54sSjTOGAFxLbPdF0jspQNETmtBvg-RXQNPviIbE,37898
339
339
  rasa/core/policies/intentless_prompt_template.jinja2,sha256=KhIL3cruMmkxhrs5oVbqgSvK6ZiN_6TQ_jXrgtEB-ZY,677
@@ -342,7 +342,7 @@ rasa/core/policies/policy.py,sha256=5SUnPajSTSf8PzB1-jFbQPtsvR-zLN-xkjeotWOxuJc,
342
342
  rasa/core/policies/rule_policy.py,sha256=EItfUn07JIBLRIbriPKDprsvWq_-xzZTGrlTS2erByA,50730
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
- rasa/core/processor.py,sha256=x8GaYuDkelCwFpmjjrpkN3xtzaewiAxlVgpZHG3tOU0,59265
345
+ rasa/core/processor.py,sha256=KWCu91DQghe1ZN_p8EduwjWA3mtog39nqeuai3iB3to,59224
346
346
  rasa/core/run.py,sha256=5qq1Z-GiIrFejsthOnnkhQtNiqccuYHYf8ixP49PSHk,11484
347
347
  rasa/core/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
348
  rasa/core/secrets_manager/constants.py,sha256=dTDHenvG1JBVi34QIR6FpdO5RDOXQwAjAxLlgJ2ZNEI,1193
@@ -351,7 +351,7 @@ rasa/core/secrets_manager/factory.py,sha256=7AWdpcqnZvg6uk54gxmgTKwoQQwr8e_ezSgu
351
351
  rasa/core/secrets_manager/secret_manager.py,sha256=oYihfIMIMUKA8U_ZRA3blcErFlCozNUecwFlfkPHvck,8791
352
352
  rasa/core/secrets_manager/vault.py,sha256=02wlsrN3QoHSZkqygHaM_CWDtkpkJ25iD-ksEu3ejBw,20481
353
353
  rasa/core/test.py,sha256=VGlGvmrXRqHaPMaetvvN1fa65oZMryN5ot9L3otNH5E,49282
354
- rasa/core/tracker_store.py,sha256=zdpRiekGw0WTKk4AqueNhyEpcasZaZ5jTmfCbNsXQyM,60182
354
+ rasa/core/tracker_store.py,sha256=esI6BCn0EHyQfdcBSFshB6r5JOWV3bIx4XlRTDpXNRE,63829
355
355
  rasa/core/train.py,sha256=ESBhZ9vZySziZIG8fvshHO4AYApD0hywRFCmA9h1wFI,3521
356
356
  rasa/core/training/__init__.py,sha256=23DaZynwsxIaGYvZBSwQRxanaMWa-ihfON7f-NetK_g,3213
357
357
  rasa/core/training/converters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -368,53 +368,53 @@ rasa/dialogue_understanding/coexistence/intent_based_router.py,sha256=JlYBZdScnh
368
368
  rasa/dialogue_understanding/coexistence/llm_based_router.py,sha256=UTLMZpynSRt8qnQSSV-dTgFQbBHaMEgrLIUWCMyH1BE,11354
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
- rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=k3N2qT9pdptJb6oAxtQV1YvKt_ujLbidLD0CeC8P43A,3506
372
- rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=2UoNPgJ3WsX2btDcWq5FL7qBp0DvNQACGaMZV3qYk4Y,7636
373
- rasa/dialogue_understanding/commands/change_flow_command.py,sha256=S0ZUvFPl7ppksyKyADJboY93wByj_SWI3onxDXLIpRs,2396
374
- rasa/dialogue_understanding/commands/chit_chat_answer_command.py,sha256=UI2Jvo9OVkiOH74Y1n9qSDzOvj8WbK-Zp03zk6nc5ZM,2829
375
- rasa/dialogue_understanding/commands/clarify_command.py,sha256=HbmswhwAznFKzP5ghqkGtvlR3EEPx1xTKO9zb0nUPys,4278
371
+ rasa/dialogue_understanding/commands/can_not_handle_command.py,sha256=fKOj9ScLxuaFO9Iw0p7og_4zMiw2weBdx322rBKlnCI,3519
372
+ rasa/dialogue_understanding/commands/cancel_flow_command.py,sha256=eNsXlANhsHbTjT2TaPZvVAm3w8EMqJ6nuDn-2_hMttk,7649
373
+ rasa/dialogue_understanding/commands/change_flow_command.py,sha256=NnD9PM0B9o4oxTtYdcb-lDBC0-oQkbAQRB-55iYCkng,2409
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
376
376
  rasa/dialogue_understanding/commands/command.py,sha256=rhxHmllTMwvb4Uq-pDqmUdlKtu-87y8nqN5DRO-KDwE,2529
377
- rasa/dialogue_understanding/commands/command_syntax_manager.py,sha256=vPX-ckjD58YHchrk2phcQ4ZXEZmO1penyIH0fpKPHas,1892
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
379
379
  rasa/dialogue_understanding/commands/error_command.py,sha256=LTEsxkGGGZR6wEEGuTtQ4K4EK_u2UFhNK4eAKyPfyME,2436
380
380
  rasa/dialogue_understanding/commands/free_form_answer_command.py,sha256=XlQrHXrcOemzu1LHZiDhBAluiSlnUQ2V7ET5Z-aG7gc,224
381
381
  rasa/dialogue_understanding/commands/handle_code_change_command.py,sha256=Cp2e1iD0zacXmljJ8vDXHJu9Fp6BwB7cGx8NF748akw,2192
382
- rasa/dialogue_understanding/commands/handle_digressions_command.py,sha256=uSotn4xHsOnfQPOnltU5ZxBabW9gfjm2RsnvkXEefbA,5127
383
- rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=qEBaeHWcKHpsAE-WjNX-bC9mknH79v8Vb2IGNQjfwmg,2952
384
- rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=2fVTYzL3irCWA_BQmGZC4LwpCwo9UdaTCex2jNZIk3Q,2839
382
+ rasa/dialogue_understanding/commands/handle_digressions_command.py,sha256=KKEqyW6HROsZ0xcCUKqOIQapK6oSKWXyDNOHyzU-5KA,4889
383
+ rasa/dialogue_understanding/commands/human_handoff_command.py,sha256=vfMXBWKm7fsaabCcLti1r8c1GrjS_0bvRKzgxJ8s6rU,2965
384
+ rasa/dialogue_understanding/commands/knowledge_answer_command.py,sha256=hnU6hOVr9aR7KfuxIV-LFycQWk7fsl4b9ZuAqpjBjvM,2852
385
385
  rasa/dialogue_understanding/commands/noop_command.py,sha256=aIaLBjSV84qy9X4aGlJfMIYhF57maH5CiKNWL_-giD4,1485
386
386
  rasa/dialogue_understanding/commands/prompt_command.py,sha256=slKQkvtrM353I3gltiett5xrZ7IxQ0omdqJHi6IowGk,2569
387
- rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=YnaG1Ugw55OwTttY8Wp7-AdpwHc53LD7wBo9AQbbK2E,2920
387
+ rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=8SavUvMk6FmWz4Yr-j_JDTuwAwLfGy0RYZOLqn16wx0,2933
388
388
  rasa/dialogue_understanding/commands/restart_command.py,sha256=vvmucwlVtfh6VMgdOn5hZfsP9U5HhfbDeBSG2IndX0Y,1639
389
389
  rasa/dialogue_understanding/commands/session_end_command.py,sha256=ZecUpYZDTX_68_kV1Hv4i317bbeBeVHHyhW_A7r5yzs,1770
390
390
  rasa/dialogue_understanding/commands/session_start_command.py,sha256=FA4yocMnFt5bn2dmXj48S4Pq_yTlEnOBxgK_mq-qAxg,1704
391
- rasa/dialogue_understanding/commands/set_slot_command.py,sha256=2AlLUBPKB2YbfGjOJx6R6B9O2o2EWgkNUxSUIA8sBo0,6725
392
- rasa/dialogue_understanding/commands/skip_question_command.py,sha256=q13cRbTXL9ioaTWTQwIf6Ew2GPGKcnYY7hpmg1KcL0Q,3283
393
- rasa/dialogue_understanding/commands/start_flow_command.py,sha256=NQo8SbB6FWSsE0v95XKqDaYsK6obrWnwd7rGjbzaAzM,6381
391
+ rasa/dialogue_understanding/commands/set_slot_command.py,sha256=_Ce8OAikmwYVtiCnTUpUVGsCC2Zj-6Iz7iLbISDEu3U,6768
392
+ rasa/dialogue_understanding/commands/skip_question_command.py,sha256=PvGpiW0Dk1xwvmntzhz7pEn99XqPv5nMQfR-cwNKxXk,3296
393
+ rasa/dialogue_understanding/commands/start_flow_command.py,sha256=yWHjXu7IYIMD_Y49hvztvowapELNyf3a1sgAgQYIdL4,6420
394
394
  rasa/dialogue_understanding/commands/user_silence_command.py,sha256=DQjRfZk09sV1o2emnLkmX7cZpsJwBHNeJGBDQVkejjY,1686
395
- rasa/dialogue_understanding/commands/utils.py,sha256=ZymuPFPJCS48VKwvVcZmqnhCpG_DiIqnw8w69wDE17w,5171
395
+ rasa/dialogue_understanding/commands/utils.py,sha256=lyl8FSdR2kQogqdjX2NSpQVQ9D2FZpwYUG6z4yFIMlU,4057
396
396
  rasa/dialogue_understanding/constants.py,sha256=_kB0edGV23uvhujlF193N2jk6YG0R6LC599YDX5B5vo,129
397
397
  rasa/dialogue_understanding/generator/__init__.py,sha256=pBm0o6pnJA_0W0UOrGuVsiG4hsTNH_n5GLrz8BYQHM8,830
398
398
  rasa/dialogue_understanding/generator/command_generator.py,sha256=QvYHF3w_WgyItMySUtf0B2Qmb_7SEOLONmQXdLseIt8,13184
399
- rasa/dialogue_understanding/generator/command_parser.py,sha256=uS-Z2YAk1s9LnE3jExL33_pwvkIqCpnX0vWaXN1bcjI,6598
400
- rasa/dialogue_understanding/generator/constants.py,sha256=QQSIIfqvSVU4jFUKeZdp7qrkiaI7M7dz3HfgcNELSRs,824
399
+ rasa/dialogue_understanding/generator/command_parser.py,sha256=wf6FSgqBw5F0legg06SqKlzajIN6sc_Cov2lFY_O9MI,8109
400
+ rasa/dialogue_understanding/generator/constants.py,sha256=nA184YgNRaoA9Q0XlLp7VKxGCX4nN_b3zLyDaL22rQw,1018
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=wlGnMj17-X1-siQmdSvOd7K61sRzBf82MQEL2pqDQMI,17891
403
- rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=3SjW38VMjZYjIR1p0j-PQVT1_2rrmZuEAJtU5InNK-w,22203
403
+ rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=SA7SG1TIgDImlOsX-9wUHQB2rOLs8zqZ7XP9Qtb7Gec,22420
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
407
407
  rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2,sha256=8l93_QBKBYnqLICVdiTu5ejZDE8F36BU8-qwba0px44,1927
408
- rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=921KrV-9p0vEqqQzjRMK3dseG2qgl-tmhyC24FKZxTo,31946
408
+ rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py,sha256=kvVbUibV-OgiaLhgnmbA7UWKXKsN7TN_OjmLJfI49M8,31969
409
409
  rasa/dialogue_understanding/generator/nlu_command_adapter.py,sha256=28QdoZ330DL5X-SdUQASjsmyf9KIY3GGHbrl2xEeZMU,10868
410
410
  rasa/dialogue_understanding/generator/prompt_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
411
  rasa/dialogue_understanding/generator/prompt_templates/command_prompt_template.jinja2,sha256=nMayu-heJYH1QmcL1cFmXb8SeiJzfdDR_9Oy5IRUXsM,3937
412
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2,sha256=5e_BCU_FlRV7JYpNKbO2x9w_cQtXQcQG1e800Pe4-qU,3407
413
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_default.jinja2,sha256=walH6RpfjxT43lhe4er7zl7FFHLYsIyRev4zGTR5VOQ,3051
414
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2,sha256=Nk6dXFR-eBWh9gSH6XLh7bdlKIoWUcaoQuxCkiD9l-Q,3555
412
+ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2,sha256=XKRIUuBGBacmj7bGAbOfHwPUPeSOdqk64vBTiLy4sR8,3716
413
+ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_fallback_other_models_template.jinja2,sha256=pUiNfYUdPJksFtn0uIpTg-B9MqskpFLrpiEaV5HzOgs,3528
414
+ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2,sha256=pUiNfYUdPJksFtn0uIpTg-B9MqskpFLrpiEaV5HzOgs,3528
415
415
  rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
416
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=4aawT_0cMo_LkjffiLVPeYuCMAC7xmZxIkYHCsmVDL8,17462
417
- rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=tfRanDYEuZLJExGwDrAoncwr8udfoGVNAYWMFtTHFXI,3973
416
+ rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=9xB3SD7wJLHquJdCHe5Ti7C9sOFrikaLFqpooZShpHc,21739
417
+ rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=cvWsl-hYUgZ_tIQmWjMM1RQwsgRTlZ_osfLaUQiBk-U,4543
418
418
  rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
419
419
  rasa/dialogue_understanding/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
420
  rasa/dialogue_understanding/patterns/cancel.py,sha256=8D66Q7lPD6xcHoiTR90eU2DW6EFtRWFoItIMY9WYHig,3869
@@ -438,7 +438,7 @@ rasa/dialogue_understanding/patterns/skip_question.py,sha256=fJ1MC0WEEtS-BpnGJEf
438
438
  rasa/dialogue_understanding/patterns/user_silence.py,sha256=xP-QMnd-MsybH5z4g01hBv4OLOHcw6m3rc26LQfe2zo,1140
439
439
  rasa/dialogue_understanding/patterns/validate_slot.py,sha256=hqd5AEGT3M3HLNhMwuI9W9kZNCvgU6GyI-2xc2b4kz8,2085
440
440
  rasa/dialogue_understanding/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
441
- rasa/dialogue_understanding/processor/command_processor.py,sha256=l2CPJCNzA5X1W_i08QpXBwF8ys5eqMItRsKK-9CyP-g,30510
441
+ rasa/dialogue_understanding/processor/command_processor.py,sha256=s1zPmOfuP5bkus1spgjqN3f4HP2fXpW118zx-txlIYQ,31005
442
442
  rasa/dialogue_understanding/processor/command_processor_component.py,sha256=9NWJxMibKeaOBLDRT9lcylJr0ki5sQ0hJRtLlKHIlnI,1526
443
443
  rasa/dialogue_understanding/stack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
444
444
  rasa/dialogue_understanding/stack/dialogue_stack.py,sha256=cYV6aQeh0EuOJHODDqK3biqXozYTX8baPgLwHhPxFqs,5244
@@ -448,15 +448,15 @@ rasa/dialogue_understanding/stack/frames/dialogue_stack_frame.py,sha256=SBTmCV4S
448
448
  rasa/dialogue_understanding/stack/frames/flow_stack_frame.py,sha256=827ppz6PKr1tSN34BuMlm_iWZCYsZTgvqaNaq1QQFkc,5078
449
449
  rasa/dialogue_understanding/stack/frames/pattern_frame.py,sha256=EVrYWv5dCP7XTvNV-HqtOOrseP-IkF0jD2_JacAvIYw,235
450
450
  rasa/dialogue_understanding/stack/frames/search_frame.py,sha256=Eo6tSSbJpslKcs6DLu250NmtoKMe4bDHC8_ebx5sJ60,759
451
- rasa/dialogue_understanding/stack/utils.py,sha256=FRdsnfHB-6ydCMGs7e6E9v-raOJSL4cy3FcenXK9GEU,7672
451
+ rasa/dialogue_understanding/stack/utils.py,sha256=7TKutRQ_Jguo5DwBR3tbCy-Rb7y-Xz7v27Tr8g1ilk4,9461
452
452
  rasa/dialogue_understanding/utils.py,sha256=s3Y-REFv2HKYGpPS8nCgISQh86SnQgaRA8KukeFSf9Y,5445
453
453
  rasa/dialogue_understanding_test/README.md,sha256=klUCq_FYd0MkIeyxlwYCfsB9EEsSmXUpTTDTxdR7EPc,17764
454
454
  rasa/dialogue_understanding_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
455
455
  rasa/dialogue_understanding_test/command_comparison.py,sha256=LvCZGgZVFpKjWqaZE5OqPClM5xDNdFZQ4FslvNerB7s,1812
456
456
  rasa/dialogue_understanding_test/command_metric_calculation.py,sha256=ys1BobRxqEhsfKk5Op9OB_IXUIsGGSiK6ox8246W-9E,3889
457
457
  rasa/dialogue_understanding_test/constants.py,sha256=G63FEzswDUOonTxoXQicEJwI6ICkSx3YP1ILkGH1ijw,790
458
- rasa/dialogue_understanding_test/du_test_case.py,sha256=NZ76ZT_Cz0q8WwSPw7WEzWW3JyiUMVxtYw5PJnFgHJM,14573
459
- rasa/dialogue_understanding_test/du_test_result.py,sha256=9cg_BVmZmm41bnA41Z9h80tKu9ehmG7pCYIa9mKoyPs,15065
458
+ rasa/dialogue_understanding_test/du_test_case.py,sha256=72gfbvtVgkEVnevG5ttikL9QcWgho-XOrapm38MkGH0,15179
459
+ rasa/dialogue_understanding_test/du_test_result.py,sha256=AL1T5f9OoEeTFmCIN5wmqPELXBnYrWwRn3ZtAEIBLfA,15086
460
460
  rasa/dialogue_understanding_test/du_test_runner.py,sha256=ZG-TNfu-Ak9l_gg9NNadzKzARgICJ9wlsYooCBi1WKU,11943
461
461
  rasa/dialogue_understanding_test/du_test_schema.yml,sha256=zgIhb6PE8LnoigVmv4NbU3cjSsr2SkGoO-5Xh4Et9KA,4767
462
462
  rasa/dialogue_understanding_test/io.py,sha256=A797fXYvjFZM4ejA7ozZwp71eFLg-ebTM4I_rZwH4yk,15127
@@ -467,7 +467,7 @@ rasa/dialogue_understanding_test/utils.py,sha256=YxaYvxlrMOBeS4PcpvVy5NIuN3-Pliq
467
467
  rasa/dialogue_understanding_test/validation.py,sha256=JFsDIjdB-CNPKhRjBBNKzNoNq9nfnEtRC15YhG1AUg0,2701
468
468
  rasa/e2e_test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
469
469
  rasa/e2e_test/aggregate_test_stats_calculator.py,sha256=Ys2Zfc8OOPNN2KHtfKqRdyrWvUzbgSzzfvuCa-Pu21k,4924
470
- rasa/e2e_test/assertions.py,sha256=u3NBg5jRUf7t6-V2Rm51i59--uEfXMwZhwA3mmYEDgE,47042
470
+ rasa/e2e_test/assertions.py,sha256=yATtyCRQpuBeQF-2Vhd5IYf4rQAeKlo72HAX0x9gS4M,46928
471
471
  rasa/e2e_test/assertions_schema.yml,sha256=NJ-3uuK2lHKKGn4GV3XsnNSvRRQFJznzknUSIBQZMws,3250
472
472
  rasa/e2e_test/constants.py,sha256=iQVJm2kFYj9Ex1SKSZEg2evEbg73bKQpn3Jzj1pRNQs,1496
473
473
  rasa/e2e_test/e2e_config.py,sha256=C1gZ_AGP3pe9xhtfB42dtMo7AjO8MI5D3hN1zWa7vZE,9198
@@ -479,8 +479,8 @@ rasa/e2e_test/e2e_test_coverage_report.py,sha256=zO_3hQIuCf4r9YIbQ2_DHM7HCWHe9pZ
479
479
  rasa/e2e_test/e2e_test_result.py,sha256=qVurjFC4cAWIY7rOsc-A-4nIdcnnw98TaK86-bDwI7Y,1649
480
480
  rasa/e2e_test/e2e_test_runner.py,sha256=eXV5DJ0rAVY7FAXYI9aKvYqZXdfsE92y6deEUqUvrTY,47965
481
481
  rasa/e2e_test/e2e_test_schema.yml,sha256=0deWjuKRHNo6e_LSCnUoiw9NLIYf6dj1-zFPl_AqLYA,5632
482
- rasa/e2e_test/llm_judge_prompts/answer_relevance_prompt_template.jinja2,sha256=kJZnYwQ_vy72PP_mLm8j3rIfMrBydAEzpVqn1s-lo4Y,2589
483
- rasa/e2e_test/llm_judge_prompts/groundedness_prompt_template.jinja2,sha256=30mc3VLKBcKozAyqI0s441mN2piwfRnDuEt18bmjQ7I,8088
482
+ rasa/e2e_test/llm_judge_prompts/answer_relevance_prompt_template.jinja2,sha256=W8sb_6mDRxuRpyC8hf5jdP6KkdiFj5n7E9O1LDgQFLA,2726
483
+ rasa/e2e_test/llm_judge_prompts/groundedness_prompt_template.jinja2,sha256=jCgDbZvWn5fncr4zvB5UQSK1VJu9xDQtpY4B8GKtlmA,8226
484
484
  rasa/e2e_test/pykwalify_extensions.py,sha256=OGYKIKYJXd2S0NrWknoQuijyBQaE-oMLkfV_eMRkGSM,1331
485
485
  rasa/e2e_test/stub_custom_action.py,sha256=aGOdZEQVZJpfY5zaHUcG447_tdJCncgD3G85eDUlVj0,2369
486
486
  rasa/e2e_test/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -493,7 +493,7 @@ rasa/engine/caching.py,sha256=K69amXY6cvKd0Sc5SLe02ujSb3WtQHYsWhcGAwwKyxA,16449
493
493
  rasa/engine/constants.py,sha256=rRSg4vUPWJCLlYnU4VQSabKXFcoAF_TFnRGRq8ieTds,623
494
494
  rasa/engine/exceptions.py,sha256=1aV48nLrlAGzEeIDuXeB0qjxe5qaqzOhrK52OBs66xc,437
495
495
  rasa/engine/graph.py,sha256=CmsRHRolDx0VV5JqUuo1tcy6h0MuP3LZhD0xgyCh46I,24492
496
- rasa/engine/language.py,sha256=93Q2J5bCYHrcnWOISs2AqO7gNZ4h5uyZQguK87XXElk,4675
496
+ rasa/engine/language.py,sha256=iDb5gh5ZNhVw4jl-ncDDXzuK3RMjxKktepUv_nMll_c,6535
497
497
  rasa/engine/loader.py,sha256=fCE3L3uweuGrluyisqkbayeIxqo1NUE-EnlwjwwaFcY,1922
498
498
  rasa/engine/recipes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
499
499
  rasa/engine/recipes/config_files/default_config.yml,sha256=E1sAW6Qq_T0QXBDK8NzkhkmSESX9g8Op85h5aCVbYlA,1194
@@ -536,16 +536,17 @@ rasa/hooks.py,sha256=5ZMrqNz323w56MMY6E8jeZ_YXgRqq8p-yi18S2XOmbo,4061
536
536
  rasa/jupyter.py,sha256=TCYVD4QPQIMmfA6ZwDUBOBTAECwCwbU2XOkosodLO9k,1782
537
537
  rasa/llm_fine_tuning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
538
538
  rasa/llm_fine_tuning/annotation_module.py,sha256=6wBBjGwONVlikp79xAHp5g3rydEhPM6kP1bw1g-maYk,8578
539
- rasa/llm_fine_tuning/conversations.py,sha256=yWK1EwBDoek8WoTuBUEJq8Pln8sZrss00PXishH7QcU,5197
540
- rasa/llm_fine_tuning/llm_data_preparation_module.py,sha256=TW57W13s3z7KvfZJt6k2D6XOaH7PDh3RX3nUldlYtsg,6082
539
+ rasa/llm_fine_tuning/conversations.py,sha256=QZVaUsfXe5iIE830Bv-_3oo8luhGfHpirvubxzOoEvA,4116
540
+ rasa/llm_fine_tuning/llm_data_preparation_module.py,sha256=jZ2ItgawV6PzakQVg5JHOrt-_9CwaSAJ01qGZND8uLI,6246
541
541
  rasa/llm_fine_tuning/paraphrasing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
542
542
  rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py,sha256=73ltYqukJoLGEalMTf2kpiHVeyqlOUnC8pZHahd0GzY,9945
543
543
  rasa/llm_fine_tuning/paraphrasing/default_rephrase_prompt_template.jina2,sha256=sOHiE0WYEp7v7U6FUwHdlG7dAYDCDIWWPEP3eAj6elE,1340
544
- rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py,sha256=EGDtVA0VMDJ7viDI2UhnUpGKOWxVd3lx65rXZepu0tA,4484
544
+ rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py,sha256=Gj6_CGq5cfPW8doBHIeppY2fs8p4b0r0keCq9Jb1x8w,4796
545
545
  rasa/llm_fine_tuning/paraphrasing/rephrased_user_message.py,sha256=cOEmZ71yDXW9-7aZm1gjNHVn_N2kNTHttDqSAz0-lEA,292
546
- rasa/llm_fine_tuning/paraphrasing_module.py,sha256=l7Y7140eD_BZpge28-rHaYl5oOkAhEsLl4kTiJ2mlyg,4602
546
+ rasa/llm_fine_tuning/paraphrasing_module.py,sha256=JqcS_a4hCHnuwY2KMNfJbxu-LXTs9PPbbYzTIoRsBI8,4802
547
547
  rasa/llm_fine_tuning/storage.py,sha256=dC2Lc4LS_Kpw97MC7LRVkn5TuZ5bOOUnu9QsCm-QDUc,5700
548
- rasa/llm_fine_tuning/train_test_split_module.py,sha256=xqttcnXTw5ChAJ1STalwafuVT7b9Z8p9g1HztDHWq-Q,16570
548
+ rasa/llm_fine_tuning/train_test_split_module.py,sha256=z1sFYN3-5rmABiJqOjabLMEbkLK8bNfrXkooLCKDZM4,16832
549
+ rasa/llm_fine_tuning/utils.py,sha256=08XJhxwMhKZg7P3QDlRJNOTwW-RP4ShZ7IebBpGrJLk,260
549
550
  rasa/markers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
550
551
  rasa/markers/marker.py,sha256=TCLhJ-wHcvVlajIsaMm_NOqL_H6X553Oey5UZ05uCSc,9147
551
552
  rasa/markers/marker_base.py,sha256=7yxUQB2Sw7issHZBFF9mcPvO9IhabywExAEvK_mm0Ks,33467
@@ -625,12 +626,12 @@ rasa/nlu/utils/spacy_utils.py,sha256=5EnHR-MVAZhGbg2rq8VpOu7I0tagV3ThRTlM0-WO2Cg
625
626
  rasa/plugin.py,sha256=cSmFhSWr5WQyYXdJOWwgH4ra_2kbhoNLZAtnqcsGny4,3071
626
627
  rasa/server.py,sha256=iAAiExxCkwfcxqsy4omasIdmP-BzeC9op_Qyj3MCJ1E,59321
627
628
  rasa/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
628
- rasa/shared/constants.py,sha256=t8kP4ne1Ksht2pUPeXYSHsydex_douGbYfboT9AOOS0,11853
629
+ rasa/shared/constants.py,sha256=tguaOMTw-3w9evkNoc_aSfDvF1ac_WotHQ2t1pORwRc,11963
629
630
  rasa/shared/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
630
631
  rasa/shared/core/command_payload_reader.py,sha256=puHYsp9xbX0YQm2L1NDBItOFmdzI7AzmfGefgcHiCc0,3871
631
632
  rasa/shared/core/constants.py,sha256=zT2zHFUqqbExPN9A0QmN3hKJic_YHoO9fBBP_np_iXs,6601
632
633
  rasa/shared/core/conversation.py,sha256=0nUhcbQkPDnO3_Rig7oiinrWmPy5fsVQs_U6Fx1hG5c,1384
633
- rasa/shared/core/domain.py,sha256=ylQPC61M5TMBJ-PkRxfG403H1FLJpQ1xZj1TgsyYcvE,80918
634
+ rasa/shared/core/domain.py,sha256=ChX7z0Na24fjuF90gM00AZjmhEIKRoeNibF9LHZXov4,81000
634
635
  rasa/shared/core/events.py,sha256=WNo5AeL9lMroIpznVfgyboBrIy9bIivYLJNxsP0POmE,84405
635
636
  rasa/shared/core/flows/__init__.py,sha256=Z4pBY0qcEbHeOwgmKsyg2Nz4dX9CF67fFCwj2KXSMpg,180
636
637
  rasa/shared/core/flows/constants.py,sha256=0HN3k-apOb_fi8E2AJtUxMxro8jwFVyXQpil-tHEzbM,340
@@ -659,7 +660,7 @@ rasa/shared/core/flows/validation.py,sha256=4IfTR8LoaJcqP8I7NQXjl0Ysmwc7VO7YzCsh
659
660
  rasa/shared/core/flows/yaml_flows_io.py,sha256=85ln95jpkh7ZqDl1cheFa8Q21gnadLjWrW8ADmQlrUQ,14385
660
661
  rasa/shared/core/generator.py,sha256=UAuBPu5UjUhL9djVK-PvrWZcNhRACOEgnRsTleV7eeY,35686
661
662
  rasa/shared/core/slot_mappings.py,sha256=0jOIk-iSKI-pJObYdk-Bmf-2SPTYFUuCA4H6SONthRA,25847
662
- rasa/shared/core/slots.py,sha256=0vy6laTW7A96sQfImZfTFF0foq_c9cTHKFFh31Gc58k,28934
663
+ rasa/shared/core/slots.py,sha256=2tOpUGLMY3a24zL8pqJ_U38x-h5Du-KpZoNxEGoFOqY,29198
663
664
  rasa/shared/core/trackers.py,sha256=KRmahvRNa3M9q8MS-pv8wu8atzo__sh8uHhkSildSsA,45018
664
665
  rasa/shared/core/training_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
665
666
  rasa/shared/core/training_data/loading.py,sha256=RCx1uTI9iDejFI_sWg3qPzhjln7-hu78f3EDAT6K0No,2894
@@ -708,7 +709,7 @@ rasa/shared/nlu/training_data/training_data.py,sha256=j0LhSxqq-vOveZAF-DZtaQ-szC
708
709
  rasa/shared/nlu/training_data/util.py,sha256=SCd97o6dDhbodasRK3JuaiAA1Xcy0faEMTjcry72GoQ,7050
709
710
  rasa/shared/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
710
711
  rasa/shared/providers/_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
711
- rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=7nd8sPOp1_vdsgtAklrJ0Vf-jZDnqzI9Vf2UtYhmMQE,19398
712
+ rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=MnvWRlCN-nFv5wb8AtFPM1tymCr72jmhI-MQgZZphAs,19392
712
713
  rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=1S_CGS_mIjDBHkBphdptYXdIFmngzGtI2y0f94mMi8c,10653
713
714
  rasa/shared/providers/_configs/client_config.py,sha256=nQ469h1XI970_7Vs49hNIpBIwlAeiAg-cwV0JFp7Hg0,1618
714
715
  rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=tViurJ1NDbiBn9b5DbzhFHO1pJM889MC-GakWhEX07E,4352
@@ -737,15 +738,15 @@ rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
737
738
  rasa/shared/providers/llm/_base_litellm_client.py,sha256=NQ_AxENfnUT_cEsshBLPh-4RtsZEVNAT2OaO8X7yQXk,11411
738
739
  rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=tMHn0i7-HZb01__CuzKvzSbXAq2dE0Oov4U7qIl74no,14989
739
740
  rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=e3f-YMS7-aariB5erRot7NReD-eaVPgeD45rypF-sUw,3974
740
- rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=OHE1IcLg1EFrKXEIQ6ku3XT-9DbgOQ2BlyPcxAG9wL8,7946
741
+ rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=_6vAdPLAVSI_sBJLaXLnE87M-0ip_klfQ78fQ_pyoyI,7947
741
742
  rasa/shared/providers/llm/llm_client.py,sha256=-hTCRsL-A3GCMRHtcyCgcCyra-9OJ8GUC-mURoRXH0k,3242
742
743
  rasa/shared/providers/llm/llm_response.py,sha256=8mOpZdmh4-3yM7aOmNO0yEYUmRDErfoP7ZDMUuHr2Cc,3504
743
- rasa/shared/providers/llm/openai_llm_client.py,sha256=_pfuedqXm2V7C1awLF6HBHN5uFuvQ9dbSovmmWwQOeI,5011
744
+ rasa/shared/providers/llm/openai_llm_client.py,sha256=rSdLj29Hl1Wm5G6Uwo77j4WqogK_3QIbTA7fyt63YAg,5013
744
745
  rasa/shared/providers/llm/rasa_llm_client.py,sha256=44Tvtnkq4mxDIxtdrGUkwBWAvX1OLaswqmpAsyBH8e8,3504
745
746
  rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=X3QyA5nZbQap0tomg0dQozbY39Ry0y-lLnj-EowK6dI,10270
746
747
  rasa/shared/providers/mappings.py,sha256=QSD3XWvhYCtBLNpGycN30vEnLULYIaqCsAtmfPfSZ3U,3674
747
748
  rasa/shared/providers/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
748
- rasa/shared/providers/router/_base_litellm_router_client.py,sha256=O42OHmFznH2YXeNyB8j84wsDAxDCLICkYhlC_fqiL9s,6932
749
+ rasa/shared/providers/router/_base_litellm_router_client.py,sha256=I6ucWfG7dUz_aWR8biDZI90cvd1uOKT8L76uayN3vJs,8592
749
750
  rasa/shared/providers/router/router_client.py,sha256=5BBEg-_JtClOVxBy1hu-HceG329PsKs-2v_qbyX_vSo,2174
750
751
  rasa/shared/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
751
752
  rasa/shared/utils/cli.py,sha256=cCI7-2WSqW_O_3fp_X3UPWKevLtHuts8nueV2PhPqlg,2916
@@ -756,7 +757,7 @@ rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i
756
757
  rasa/shared/utils/health_check/health_check.py,sha256=izixrbc9BxFSsjzwoIw9U0w0VKSX5gMwhey8bcwe1wc,9709
757
758
  rasa/shared/utils/health_check/llm_health_check_mixin.py,sha256=ANP5Q68TRX8p4wWkRCAISsWBV1iYYeGnqWILnR1NawE,957
758
759
  rasa/shared/utils/io.py,sha256=AhuECoXGO367NvWRCBu99utEtTQnyxWVJyKOOpLePpg,15917
759
- rasa/shared/utils/llm.py,sha256=cMtfAuRJ_APadlVEv9PqkQ1D86Op9JOLfRVjjFM1Eks,26466
760
+ rasa/shared/utils/llm.py,sha256=yoS5yd0jwj_wN-IaJhpxOoiG8JAvIGbYhzOoDbo0gAU,28959
760
761
  rasa/shared/utils/pykwalify_extensions.py,sha256=2fvaysurCST_EMelCsECzkBgvClKYbdHb2Ty9rZhszw,1846
761
762
  rasa/shared/utils/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
762
763
  rasa/shared/utils/schemas/config.yml,sha256=czxSADw9hOIZdhvFP8pVUQo810hs9_C8ZGfCPx17taM,27
@@ -774,12 +775,12 @@ rasa/studio/download.py,sha256=Ap_Hq3veKKp5JxWt_qAeTJg0KLKkzowMclx2KPE1fy8,17188
774
775
  rasa/studio/results_logger.py,sha256=eLBi49o_4nkXccRM0h6-sjlV1o_HxTNEVJMdNocTw_I,4963
775
776
  rasa/studio/train.py,sha256=gfPtirITzBDo9gV4hqDNSwPYtVp_22cq8OWI6YIBgyk,4243
776
777
  rasa/studio/upload.py,sha256=K4QJIE-GYWgA1Z6dXOJAA7n0McvlBt0wOQyiCMXtZCk,17784
777
- rasa/telemetry.py,sha256=K2wLw4q-Cls_mQgblLKIJCZvPRcxOqlstNT8hYyzR3c,66730
778
+ rasa/telemetry.py,sha256=6-7-axs_CjWOsz9cfc_66i1S0NiCiLlELgxG_2RBe8Q,67272
778
779
  rasa/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
779
780
  rasa/tracing/config.py,sha256=32X2rqAiHe0e-Iijb5AivjqDs2j03n8xx5mo07NBMI4,12964
780
781
  rasa/tracing/constants.py,sha256=-3vlfI9v_D8f-KB5tuiqBHhszu2WofFQOyjKBn28gyg,2889
781
782
  rasa/tracing/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
782
- rasa/tracing/instrumentation/attribute_extractors.py,sha256=-LjX91Y94Jalccm5tMpbYvXF25abg0NVFr0MKJJOB-Q,29478
783
+ rasa/tracing/instrumentation/attribute_extractors.py,sha256=kGAGnG5WaqjY5ViM62STY3YhOWEyzRkDnYNmDSZSxMU,29397
783
784
  rasa/tracing/instrumentation/instrumentation.py,sha256=BPI5OoZFbl90kVJzlKEz-eD8cf-CaX_x1t4V9XBhDKo,53625
784
785
  rasa/tracing/instrumentation/intentless_policy_instrumentation.py,sha256=RgixI0FVIzBz19E3onidUpSEwjkAh8paA5_w07PMzFo,4821
785
786
  rasa/tracing/instrumentation/metrics.py,sha256=DI_qIS6sz5KYU4QDcPKfnHxKLL_Ma3wV6diH4_vg85c,12051
@@ -819,10 +820,10 @@ rasa/utils/tensorflow/types.py,sha256=PLG7VI5P_3fNZaXYdGyNIRF4dOMTnLtzfvgms67_IS
819
820
  rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,21259
820
821
  rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
821
822
  rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
822
- rasa/validator.py,sha256=Hq8Y_dBflR3pO0YWSoNZ9uoacRaAmMAE3ijK3XH2bnk,88713
823
- rasa/version.py,sha256=-B6bTF_cJDg-krlKwYBHdn3qzGK6oUPnjj1h140Xh-A,120
824
- rasa_pro-3.12.0rc1.dist-info/METADATA,sha256=YvxFxzw8BcDBgGBR_knyMmz72K4NNdVcwDWr_At7Y94,10777
825
- rasa_pro-3.12.0rc1.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
826
- rasa_pro-3.12.0rc1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
827
- rasa_pro-3.12.0rc1.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
828
- rasa_pro-3.12.0rc1.dist-info/RECORD,,
823
+ rasa/validator.py,sha256=10I_61oPTrCHpvcqdSFqOFmq7mJlDNsUbMX3VHU951E,88721
824
+ rasa/version.py,sha256=55YK2O9iwSAkuT6NHAbl-rALO0he7buHJZQLYoEqYEM,120
825
+ rasa_pro-3.12.0rc3.dist-info/METADATA,sha256=b9NYEnbvm_RNeMlzTYoLDp1XOvbnR0D0V0rtVdESJsc,10696
826
+ rasa_pro-3.12.0rc3.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
827
+ rasa_pro-3.12.0rc3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
828
+ rasa_pro-3.12.0rc3.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
829
+ rasa_pro-3.12.0rc3.dist-info/RECORD,,
@@ -1,68 +0,0 @@
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 small talk and knowledge requests.
3
-
4
- --
5
-
6
- ## Available Actions:
7
- * `start flow flow_name`: Starting a flow. For example, `start flow transfer_money` or `start flow list_contacts`
8
- * `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
9
- * `cancel flow`: Cancelling the current flow
10
- * `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".
11
- * `provide info`: Responding to the user's questions by supplying relevant information, such as answering FAQs or explaining services
12
- * `offtopic reply`: Responding to casual or social user messages that are unrelated to any flows, engaging in friendly conversation and addressing off-topic remarks.
13
- * `hand over`: Handing over to a human, in case the user seems frustrated or explicitly asks to speak to one
14
-
15
- --
16
-
17
- ## General Tips
18
- * Do not fill slots with abstract values or placeholders.
19
- * Only use information provided by the user.
20
- * Use clarification in ambiguous cases.
21
- * Multiple flows can be started. If a user wants to digress into a second flow, you do not need to cancel the current flow.
22
- * Strictly adhere to the provided action format.
23
- * For categorical slots try to match the user message with potential slot values. Use "other" if you cannot match it
24
- * Focus on the last message and take it one step at a time.
25
- * Use the previous conversation steps only to aid understanding.
26
-
27
- --
28
-
29
- ## Available Flows and Slots
30
- {% for flow in available_flows %}
31
- * `{{ flow.name }}`: {{ flow.description }}
32
- {% for slot in flow.slots -%}
33
- * `{{ slot.name }}`{% if slot.description %} ({{ slot.description }}){% endif %}{% if slot.allowed_values %}, allowed values: `{{ slot.allowed_values }}`{% endif %}
34
- {% endfor %}
35
- {%- endfor %}
36
-
37
- --
38
-
39
- ## Current State
40
- {% if current_flow != None %}
41
- You are currently in the flow `{{ current_flow }}`.
42
- You have just asked the user for the slot `{{ current_slot }}`{% if current_slot_description %} ({{ current_slot_description }}){% endif %}.
43
-
44
- {% if flow_slots|length > 0 %}
45
- Here are the slots of the flow `{{ current_flow }}`:
46
- {% for slot in flow_slots -%}
47
- * `{{ slot.name }}`
48
- - value: "{{ slot.value }}"
49
- - type: {{ slot.type }}
50
- - description: {{ slot.description}}
51
- {% if slot.allowed_values %} - allowed values: {{ slot.allowed_values }}{% endif %}
52
- {% endfor %}
53
- {% endif %}
54
- {% else %}
55
- You are currently not inside any flow.
56
- {% endif %}
57
-
58
- ---
59
-
60
- ## Conversation History
61
- {{ current_conversation }}
62
-
63
- ---
64
-
65
- ## Task
66
- Create an action list with one action per line in response to the users last message: """{{ user_message }}""".
67
-
68
- Your action list: