rasa-pro 3.12.0rc2__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.
- rasa/cli/dialogue_understanding_test.py +5 -8
- rasa/cli/llm_fine_tuning.py +47 -12
- rasa/core/channels/voice_stream/asr/asr_event.py +5 -0
- rasa/core/channels/voice_stream/audiocodes.py +19 -6
- rasa/core/channels/voice_stream/call_state.py +3 -9
- rasa/core/channels/voice_stream/genesys.py +40 -55
- rasa/core/channels/voice_stream/voice_channel.py +61 -39
- rasa/core/tracker_store.py +123 -34
- rasa/dialogue_understanding/commands/set_slot_command.py +1 -0
- rasa/dialogue_understanding/commands/utils.py +1 -4
- rasa/dialogue_understanding/generator/command_parser.py +41 -0
- rasa/dialogue_understanding/generator/constants.py +7 -2
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +9 -2
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_claude_3_5_sonnet_20240620_template.jinja2 +29 -48
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_fallback_other_models_template.jinja2 +57 -0
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2 +23 -50
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +76 -24
- rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +32 -18
- rasa/dialogue_understanding/processor/command_processor.py +39 -19
- rasa/dialogue_understanding/stack/utils.py +11 -6
- rasa/engine/language.py +67 -25
- rasa/llm_fine_tuning/conversations.py +3 -31
- rasa/llm_fine_tuning/llm_data_preparation_module.py +5 -3
- rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py +18 -13
- rasa/llm_fine_tuning/paraphrasing_module.py +6 -2
- rasa/llm_fine_tuning/train_test_split_module.py +27 -27
- rasa/llm_fine_tuning/utils.py +7 -0
- rasa/shared/constants.py +4 -0
- rasa/shared/core/domain.py +2 -0
- rasa/shared/providers/_configs/azure_entra_id_config.py +8 -8
- rasa/shared/providers/llm/litellm_router_llm_client.py +1 -0
- rasa/shared/providers/router/_base_litellm_router_client.py +38 -7
- rasa/shared/utils/llm.py +69 -13
- rasa/telemetry.py +13 -3
- rasa/tracing/instrumentation/attribute_extractors.py +2 -5
- rasa/validator.py +2 -2
- rasa/version.py +1 -1
- {rasa_pro-3.12.0rc2.dist-info → rasa_pro-3.12.0rc3.dist-info}/METADATA +1 -1
- {rasa_pro-3.12.0rc2.dist-info → rasa_pro-3.12.0rc3.dist-info}/RECORD +42 -41
- rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_default.jinja2 +0 -68
- {rasa_pro-3.12.0rc2.dist-info → rasa_pro-3.12.0rc3.dist-info}/NOTICE +0 -0
- {rasa_pro-3.12.0rc2.dist-info → rasa_pro-3.12.0rc3.dist-info}/WHEEL +0 -0
- {rasa_pro-3.12.0rc2.dist-info → rasa_pro-3.12.0rc3.dist-info}/entry_points.txt +0 -0
rasa/validator.py
CHANGED
|
@@ -1429,7 +1429,7 @@ class Validator:
|
|
|
1429
1429
|
event_info=(
|
|
1430
1430
|
f"{count} response{' is' if count == 1 else 's are'} "
|
|
1431
1431
|
f"missing translations for some languages. "
|
|
1432
|
-
"Run 'rasa data validate
|
|
1432
|
+
"Run 'rasa data validate translations' for details."
|
|
1433
1433
|
),
|
|
1434
1434
|
)
|
|
1435
1435
|
if flow_warnings:
|
|
@@ -1440,7 +1440,7 @@ class Validator:
|
|
|
1440
1440
|
event_info=(
|
|
1441
1441
|
f"{count} flow{' is' if count == 1 else 's are'} "
|
|
1442
1442
|
f"missing translations for some languages. "
|
|
1443
|
-
"Run 'rasa data validate
|
|
1443
|
+
"Run 'rasa data validate translations' for details."
|
|
1444
1444
|
),
|
|
1445
1445
|
)
|
|
1446
1446
|
else:
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.12.
|
|
3
|
+
Version: 3.12.0rc3
|
|
4
4
|
Summary: State-of-the-art open-core Conversational AI framework for Enterprises that natively leverages generative AI for effortless assistant development.
|
|
5
5
|
Home-page: https://rasa.com
|
|
6
6
|
Keywords: nlp,machine-learning,machine-learning-library,bot,bots,botkit,rasa conversational-agents,conversational-ai,chatbot,chatbot-framework,bot-framework
|
|
@@ -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=
|
|
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=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
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=
|
|
286
|
-
rasa/core/channels/voice_stream/genesys.py,sha256
|
|
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=
|
|
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
|
|
@@ -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=
|
|
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
|
|
@@ -388,19 +388,19 @@ rasa/dialogue_understanding/commands/repeat_bot_messages_command.py,sha256=8SavU
|
|
|
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=
|
|
391
|
+
rasa/dialogue_understanding/commands/set_slot_command.py,sha256=_Ce8OAikmwYVtiCnTUpUVGsCC2Zj-6Iz7iLbISDEu3U,6768
|
|
392
392
|
rasa/dialogue_understanding/commands/skip_question_command.py,sha256=PvGpiW0Dk1xwvmntzhz7pEn99XqPv5nMQfR-cwNKxXk,3296
|
|
393
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=
|
|
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=
|
|
400
|
-
rasa/dialogue_understanding/generator/constants.py,sha256=
|
|
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=
|
|
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
|
|
@@ -409,12 +409,12 @@ rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generato
|
|
|
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=
|
|
413
|
-
rasa/dialogue_understanding/generator/prompt_templates/
|
|
414
|
-
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_2024_11_20_template.jinja2,sha256=
|
|
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=
|
|
417
|
-
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=
|
|
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=
|
|
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,7 +448,7 @@ 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=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
540
|
-
rasa/llm_fine_tuning/llm_data_preparation_module.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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
|
|
@@ -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=
|
|
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,7 +738,7 @@ 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=
|
|
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
744
|
rasa/shared/providers/llm/openai_llm_client.py,sha256=rSdLj29Hl1Wm5G6Uwo77j4WqogK_3QIbTA7fyt63YAg,5013
|
|
@@ -745,7 +746,7 @@ rasa/shared/providers/llm/rasa_llm_client.py,sha256=44Tvtnkq4mxDIxtdrGUkwBWAvX1O
|
|
|
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=
|
|
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=
|
|
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=
|
|
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
|
|
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=
|
|
823
|
-
rasa/version.py,sha256=
|
|
824
|
-
rasa_pro-3.12.
|
|
825
|
-
rasa_pro-3.12.
|
|
826
|
-
rasa_pro-3.12.
|
|
827
|
-
rasa_pro-3.12.
|
|
828
|
-
rasa_pro-3.12.
|
|
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:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|