rasa-pro 3.15.0a1__py3-none-any.whl → 3.15.0a3__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/builder/constants.py +5 -0
- rasa/builder/copilot/models.py +80 -28
- rasa/builder/download.py +110 -0
- rasa/builder/evaluator/__init__.py +0 -0
- rasa/builder/evaluator/constants.py +15 -0
- rasa/builder/evaluator/copilot_executor.py +89 -0
- rasa/builder/evaluator/dataset/models.py +173 -0
- rasa/builder/evaluator/exceptions.py +4 -0
- rasa/builder/evaluator/response_classification/__init__.py +0 -0
- rasa/builder/evaluator/response_classification/constants.py +66 -0
- rasa/builder/evaluator/response_classification/evaluator.py +346 -0
- rasa/builder/evaluator/response_classification/langfuse_runner.py +463 -0
- rasa/builder/evaluator/response_classification/models.py +61 -0
- rasa/builder/evaluator/scripts/__init__.py +0 -0
- rasa/builder/evaluator/scripts/run_response_classification_evaluator.py +152 -0
- rasa/builder/jobs.py +208 -1
- rasa/builder/logging_utils.py +25 -24
- rasa/builder/main.py +6 -1
- rasa/builder/models.py +23 -0
- rasa/builder/project_generator.py +29 -10
- rasa/builder/service.py +104 -22
- rasa/builder/training_service.py +13 -1
- rasa/builder/validation_service.py +2 -1
- rasa/core/actions/action_clean_stack.py +32 -0
- rasa/core/actions/constants.py +4 -0
- rasa/core/actions/custom_action_executor.py +70 -12
- rasa/core/actions/grpc_custom_action_executor.py +41 -2
- rasa/core/actions/http_custom_action_executor.py +49 -25
- rasa/core/channels/voice_stream/voice_channel.py +14 -2
- rasa/dialogue_understanding/generator/llm_based_command_generator.py +6 -3
- rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py +15 -7
- rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py +15 -8
- rasa/dialogue_understanding/processor/command_processor.py +49 -7
- rasa/shared/providers/_configs/azure_openai_client_config.py +4 -5
- rasa/shared/providers/_configs/default_litellm_client_config.py +4 -4
- rasa/shared/providers/_configs/litellm_router_client_config.py +3 -2
- rasa/shared/providers/_configs/openai_client_config.py +5 -7
- rasa/shared/providers/_configs/rasa_llm_client_config.py +4 -4
- rasa/shared/providers/_configs/self_hosted_llm_client_config.py +4 -4
- rasa/shared/providers/llm/_base_litellm_client.py +42 -14
- rasa/shared/providers/llm/litellm_router_llm_client.py +38 -15
- rasa/shared/providers/llm/self_hosted_llm_client.py +34 -32
- rasa/shared/utils/configs.py +5 -8
- rasa/utils/endpoints.py +6 -0
- rasa/version.py +1 -1
- {rasa_pro-3.15.0a1.dist-info → rasa_pro-3.15.0a3.dist-info}/METADATA +12 -12
- {rasa_pro-3.15.0a1.dist-info → rasa_pro-3.15.0a3.dist-info}/RECORD +50 -37
- {rasa_pro-3.15.0a1.dist-info → rasa_pro-3.15.0a3.dist-info}/NOTICE +0 -0
- {rasa_pro-3.15.0a1.dist-info → rasa_pro-3.15.0a3.dist-info}/WHEEL +0 -0
- {rasa_pro-3.15.0a1.dist-info → rasa_pro-3.15.0a3.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.15.
|
|
3
|
+
Version: 3.15.0a3
|
|
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
|
|
@@ -39,16 +39,16 @@ Requires-Dist: apscheduler (>=3.11,<3.12)
|
|
|
39
39
|
Requires-Dist: attrs (>=23.1,<25.0)
|
|
40
40
|
Requires-Dist: audioop-lts (>=0.2.2,<0.3.0) ; python_version >= "3.13"
|
|
41
41
|
Requires-Dist: aws-msk-iam-sasl-signer-python (>=1.0.2,<1.1.0)
|
|
42
|
-
Requires-Dist: azure-identity (>=1.
|
|
43
|
-
Requires-Dist: azure-storage-blob (>=12.
|
|
44
|
-
Requires-Dist: boto3 (>=1.40.
|
|
42
|
+
Requires-Dist: azure-identity (>=1.25.1,<1.26.0)
|
|
43
|
+
Requires-Dist: azure-storage-blob (>=12.27.0,<12.28.0)
|
|
44
|
+
Requires-Dist: boto3 (>=1.40.60,<1.41.0)
|
|
45
45
|
Requires-Dist: certifi (>=2025.10.5,<2025.11.0)
|
|
46
46
|
Requires-Dist: colorama (>=0.4.6,<0.5.0) ; sys_platform == "win32"
|
|
47
47
|
Requires-Dist: colorclass (>=2.2,<2.3)
|
|
48
48
|
Requires-Dist: coloredlogs (>=15,<16)
|
|
49
49
|
Requires-Dist: colorhash (>=2.0,<2.1.0)
|
|
50
50
|
Requires-Dist: confluent-kafka (>=2.11.0,<3.0.0)
|
|
51
|
-
Requires-Dist: cryptography (>=
|
|
51
|
+
Requires-Dist: cryptography (>=46.0.3,<46.1.0)
|
|
52
52
|
Requires-Dist: cvg-python-sdk (>=0.5.1,<0.6.0) ; extra == "full" or extra == "channels"
|
|
53
53
|
Requires-Dist: dask (>=2024.8.0,<2024.9.0)
|
|
54
54
|
Requires-Dist: demoji (>=1.1.0,<2.0.0)
|
|
@@ -59,8 +59,8 @@ Requires-Dist: fbmessenger (>=6.0.0,<6.1.0) ; extra == "full" or extra == "chann
|
|
|
59
59
|
Requires-Dist: github3.py (>=3.2.0,<3.3.0) ; extra == "gh-release-notes"
|
|
60
60
|
Requires-Dist: gitpython (>=3.1.41,<3.2.0) ; extra == "full"
|
|
61
61
|
Requires-Dist: gliner (>=0.2.20,<0.3.0) ; extra == "full" or extra == "pii"
|
|
62
|
-
Requires-Dist: google-auth (>=2.
|
|
63
|
-
Requires-Dist: google-cloud-storage (>=
|
|
62
|
+
Requires-Dist: google-auth (>=2.41.1,<2.42.0)
|
|
63
|
+
Requires-Dist: google-cloud-storage (>=3.4.1,<3.5.0)
|
|
64
64
|
Requires-Dist: hvac (>=2.3.0,<2.4.0)
|
|
65
65
|
Requires-Dist: importlib-metadata (>=8.5.0,<8.6.0)
|
|
66
66
|
Requires-Dist: importlib-resources (>=6.5.2,<7.0.0)
|
|
@@ -104,7 +104,7 @@ Requires-Dist: python-dateutil (>=2.8.2,<2.9.0)
|
|
|
104
104
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
105
105
|
Requires-Dist: python-engineio (>=4.12.2,<4.13.0)
|
|
106
106
|
Requires-Dist: python-keycloak (>=5.8.1,<5.9.0)
|
|
107
|
-
Requires-Dist: python-socketio (>=5.
|
|
107
|
+
Requires-Dist: python-socketio (>=5.14.0,<5.15.0)
|
|
108
108
|
Requires-Dist: pytz (>=2022.7.1,<2023.0)
|
|
109
109
|
Requires-Dist: pyyaml (>=6.0.2,<6.1.0)
|
|
110
110
|
Requires-Dist: qdrant-client (>=1.9.1,<1.10.0)
|
|
@@ -127,14 +127,14 @@ Requires-Dist: scikit-learn (>=1.6.1,<1.7.0)
|
|
|
127
127
|
Requires-Dist: scipy (>=1.13.1,<1.14.0) ; python_version < "3.12"
|
|
128
128
|
Requires-Dist: scipy (>=1.14.0,<1.15.0) ; python_version >= "3.12"
|
|
129
129
|
Requires-Dist: sentencepiece (>=0.1.99,<0.2.0) ; (python_version < "3.12") and (extra == "transformers" or extra == "full" or extra == "full" or extra == "nlu")
|
|
130
|
-
Requires-Dist: sentry-sdk (>=2.
|
|
130
|
+
Requires-Dist: sentry-sdk (>=2.35.2,<2.36.0)
|
|
131
131
|
Requires-Dist: setuptools (>=78.1.1,<78.2.0)
|
|
132
132
|
Requires-Dist: sklearn-crfsuite (>=0.5.0,<0.6.0) ; extra == "full" or extra == "nlu"
|
|
133
133
|
Requires-Dist: skops (>=0.13.0,<0.14.0) ; extra == "full" or extra == "nlu"
|
|
134
|
-
Requires-Dist: slack-sdk (>=3.
|
|
134
|
+
Requires-Dist: slack-sdk (>=3.37.0,<3.38.0) ; extra == "full" or extra == "channels"
|
|
135
135
|
Requires-Dist: spacy (>=3.5.4,<4.0.0) ; extra == "spacy" or extra == "full" or extra == "nlu"
|
|
136
136
|
Requires-Dist: structlog (>=25.4.0,<25.5.0)
|
|
137
|
-
Requires-Dist: structlog-sentry (>=2.
|
|
137
|
+
Requires-Dist: structlog-sentry (>=2.2.1,<2.3.0)
|
|
138
138
|
Requires-Dist: tarsafe (>=0.0.5,<0.0.6)
|
|
139
139
|
Requires-Dist: tenacity (>=8.4.1,<8.5.0)
|
|
140
140
|
Requires-Dist: tensorflow (>=2.19.0,<3.0.0) ; (sys_platform != "darwin" or platform_machine != "arm64" and python_version < "3.12") and (extra == "full" or extra == "nlu")
|
|
@@ -149,7 +149,7 @@ Requires-Dist: tf-keras (>=2.15.0,<3.0.0) ; (python_version < "3.12") and (extra
|
|
|
149
149
|
Requires-Dist: tiktoken (>=0.9.0,<0.10.0)
|
|
150
150
|
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
151
151
|
Requires-Dist: transformers (>=4.38.2,<4.39.0) ; extra == "transformers" or extra == "full" or extra == "nlu"
|
|
152
|
-
Requires-Dist: twilio (>=9.
|
|
152
|
+
Requires-Dist: twilio (>=9.8.4,<9.9.0) ; extra == "full" or extra == "channels"
|
|
153
153
|
Requires-Dist: types-cachetools (>=6.2.0.20250827,<6.3.0.0)
|
|
154
154
|
Requires-Dist: types-protobuf (==4.25.0.20240417)
|
|
155
155
|
Requires-Dist: typing-extensions (>=4.7.1,<5.0.0)
|
|
@@ -30,13 +30,14 @@ rasa/builder/README.md,sha256=7WYioSzBHFY25h1QCFellv7bIOW9VLH7Gf7dwQEc1k0,3715
|
|
|
30
30
|
rasa/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
rasa/builder/auth.py,sha256=naswg4P1o_zB1GQDybqySbhnY0OPIp7cH2Ze98Uhwgc,5436
|
|
32
32
|
rasa/builder/config.py,sha256=xj-7ANjm-MLoLjVog89Hjk03k7x3Z9DGmES9HlByoz8,4119
|
|
33
|
+
rasa/builder/constants.py,sha256=o2bN5Ze1O_Gk3-c6e0dYslhGwzNK2KnN8Fqxo27VVrI,222
|
|
33
34
|
rasa/builder/copilot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
35
|
rasa/builder/copilot/constants.py,sha256=WLhmiFnaNMt-b4-IO0sujzDos3CdQM3Jlf03Nz88jnA,1501
|
|
35
36
|
rasa/builder/copilot/copilot.py,sha256=wKy-X3LBsX5juc1OuCdMjkbFR7gJRvYti0kvqB9FhgU,21912
|
|
36
37
|
rasa/builder/copilot/copilot_response_handler.py,sha256=teozaZFKR-XADdK2Nvkqu3wp48Bg1iqB7VT8rn5HcI4,20257
|
|
37
38
|
rasa/builder/copilot/copilot_templated_message_provider.py,sha256=7wU63Nxtn6akRgDswzkWBzbuR1Z48swnRxtAT0d5CoU,2408
|
|
38
39
|
rasa/builder/copilot/exceptions.py,sha256=6alRMH8pyyXyjfKjtfSdjP1LunztC_c6Xu1OtlaUC2E,663
|
|
39
|
-
rasa/builder/copilot/models.py,sha256=
|
|
40
|
+
rasa/builder/copilot/models.py,sha256=TpZtNv_xrCNqyC-kkdFwQb-LspSyKVYN_J5_PDBr_ss,30836
|
|
40
41
|
rasa/builder/copilot/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
42
|
rasa/builder/copilot/prompts/copilot_system_prompt.jinja2,sha256=b-ztkMwDu1xGO1BaQNxJoOZpMTf7UDP-MTl5c9Gkps4,31647
|
|
42
43
|
rasa/builder/copilot/prompts/copilot_training_error_handler_prompt.jinja2,sha256=mo2Il7jd0bYcorceejqQSmHtK8-Y_PhFl_zFLCrJBa4,1833
|
|
@@ -51,7 +52,19 @@ rasa/builder/document_retrieval/constants.py,sha256=bqG88KtCqxXgMFeiEFEDV5P1fe0J
|
|
|
51
52
|
rasa/builder/document_retrieval/inkeep-rag-response-schema.json,sha256=ePVbGo6u6sm_CPS8EeECX3UayIvcfUe6yTy2gtexKlk,1498
|
|
52
53
|
rasa/builder/document_retrieval/inkeep_document_retrieval.py,sha256=kWMJX02mbQk0lmVmtCEw1JuQb5RgBi32SKvS8Lw3FYo,9135
|
|
53
54
|
rasa/builder/document_retrieval/models.py,sha256=-kftLcgpUeW3oB9ojOHJKShmEhYkd68Qk5RWGZS8vUw,2001
|
|
54
|
-
rasa/builder/download.py,sha256=
|
|
55
|
+
rasa/builder/download.py,sha256=F1kRm3AzJ8aC-khf-cxpC1AXO1-HOILF41ItKBRnGZ8,7979
|
|
56
|
+
rasa/builder/evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
rasa/builder/evaluator/constants.py,sha256=yJn0SOPPxu3fwgTMwdWDT_98kJzOhp4RwobdL1IXeG8,532
|
|
58
|
+
rasa/builder/evaluator/copilot_executor.py,sha256=pLxiAOMwf-Hx6HMd2pTu6gVRAP1RFgGpLaz6vmWjhO8,3019
|
|
59
|
+
rasa/builder/evaluator/dataset/models.py,sha256=sCpNvh_pvdjw-C3FdAwpVc7PY9EwOM4rOV9NkMV-7bg,5965
|
|
60
|
+
rasa/builder/evaluator/exceptions.py,sha256=4xJfL3Mla3AgQqP-UVc2RpTHkE3igi0ZfV5N0MiMKic,100
|
|
61
|
+
rasa/builder/evaluator/response_classification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
rasa/builder/evaluator/response_classification/constants.py,sha256=OWYPmDyHi6fNbSoUyczOpoGxByyWUMgZaj7KvFLOGto,2498
|
|
63
|
+
rasa/builder/evaluator/response_classification/evaluator.py,sha256=mHVGwIluoQkPKjumNU5CFZkWKhVqRzhlXOwQ6zR379Y,14182
|
|
64
|
+
rasa/builder/evaluator/response_classification/langfuse_runner.py,sha256=nUtJslVXk9mKKEIkIadpmNqs7sI0uAK7iSjZpbT4KmI,18961
|
|
65
|
+
rasa/builder/evaluator/response_classification/models.py,sha256=1cfiOTf1u8PAXy5ELYU2iTJRSGUB5THAY-KNDAlYJZE,2386
|
|
66
|
+
rasa/builder/evaluator/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
+
rasa/builder/evaluator/scripts/run_response_classification_evaluator.py,sha256=T4VJE8NU6_dCeBifqSSW9s8GcFvK2fwyl__YJow2dn0,4455
|
|
55
68
|
rasa/builder/exceptions.py,sha256=tnfufzfyFRJBhwHtzHpgTmpSN_7Z_C98xCNORPsD2KY,2477
|
|
56
69
|
rasa/builder/guardrails/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
57
70
|
rasa/builder/guardrails/clients.py,sha256=csjdVtMk2q-S39fnp74JPaE9lI3CcFm8ldQXREOfY6g,8967
|
|
@@ -62,22 +75,22 @@ rasa/builder/guardrails/policy_checker.py,sha256=06zIeI5z4gMlRxsp6iazk05L4r2ZSRC
|
|
|
62
75
|
rasa/builder/guardrails/store.py,sha256=-mJdsCnHgSI08uPnPwZRObIyRV9u98zcpQ5QkeHdVK0,7660
|
|
63
76
|
rasa/builder/guardrails/utils.py,sha256=3B-ybAkIYhpx7G1HSEnMKW8NW_bY4UCg3w73e7aYogw,3027
|
|
64
77
|
rasa/builder/job_manager.py,sha256=eQ5HRff-U4Cj3joHKqpjDcfCMWj4nz4D_oQmoozpwPM,2507
|
|
65
|
-
rasa/builder/jobs.py,sha256=
|
|
78
|
+
rasa/builder/jobs.py,sha256=6VCKGBth7vQIubDyfdWkTEaEZf_iYvgyKu0rBbYHNA0,28047
|
|
66
79
|
rasa/builder/llm_service.py,sha256=5yN4d7W1DYJIk4XLNz7Uvj2ZPp6RzdHoZ7tGh4H9ZVY,9974
|
|
67
|
-
rasa/builder/logging_utils.py,sha256=
|
|
68
|
-
rasa/builder/main.py,sha256=
|
|
69
|
-
rasa/builder/models.py,sha256=
|
|
70
|
-
rasa/builder/project_generator.py,sha256=
|
|
80
|
+
rasa/builder/logging_utils.py,sha256=9feIiq8v5flbvTK73JIpMSm5n3HxbOQL5UgKnPtEh8U,9263
|
|
81
|
+
rasa/builder/main.py,sha256=gNKurt2SwFAH2v_Kkj8UcNUk86cIfkzWyNhzoqBU0cs,7724
|
|
82
|
+
rasa/builder/models.py,sha256=uI_WIDB4zHRvrq6DF6C4fn8KoFm7rv0BffN25HMB9JM,7281
|
|
83
|
+
rasa/builder/project_generator.py,sha256=F3Pfep75a7n5-T7pA6PmIBQrZS3Y-N6b_LsYt2LqP28,19107
|
|
71
84
|
rasa/builder/project_info.py,sha256=ZBwFCigZLSo1RBMhlZDYBoVl2G-9OnhRrYxdMWHn6S4,2093
|
|
72
|
-
rasa/builder/service.py,sha256=
|
|
85
|
+
rasa/builder/service.py,sha256=e4XB_qgT5sMHXvwGKH-ngl53osXf1QNg4fpzdW6VrSo,55005
|
|
73
86
|
rasa/builder/shared/tracker_context.py,sha256=2P-DsWjWEkZ32dqrx6s4zVxdo0_mokZNrU3LYisu6MY,7691
|
|
74
87
|
rasa/builder/skill_to_bot_prompt.jinja2,sha256=h2Fgoh9k3XinN0blEEqMuOWuvwXxJifP3GJs-GczgBU,5530
|
|
75
88
|
rasa/builder/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
89
|
rasa/builder/telemetry/copilot_langfuse_telemetry.py,sha256=2RL3sBxOlVei8Zozw5WGsAa8dfjKVY8GRuqb8bAPlso,13945
|
|
77
90
|
rasa/builder/telemetry/copilot_segment_telemetry.py,sha256=53dVxu09v28BamSaUl5Db4YTA0G6ZkRGfa3ahs2VW_o,9166
|
|
78
91
|
rasa/builder/template_cache.py,sha256=0ms5P4zvAtio9AhwKbazUwaYZQZxa8DToC3ieLi-UZ8,2350
|
|
79
|
-
rasa/builder/training_service.py,sha256=
|
|
80
|
-
rasa/builder/validation_service.py,sha256=
|
|
92
|
+
rasa/builder/training_service.py,sha256=V0uXkGYSoHz1ZxW_MWUkRLmWMaa3bLps1IDvmJHozVI,6295
|
|
93
|
+
rasa/builder/validation_service.py,sha256=DXCCdp_1gf_K3W1380gmTrdsktZHSOMhT1cAyqmjp5Q,3301
|
|
81
94
|
rasa/cli/__init__.py,sha256=eO5vp9rFCANtbTVU-pxN3iMBKw4p9WRcgzytt9MzinY,115
|
|
82
95
|
rasa/cli/arguments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
96
|
rasa/cli/arguments/data.py,sha256=vvkc3JOkdSNi2nr59ifLwfXGbK_MblGR4UueeA2lWcw,3322
|
|
@@ -354,7 +367,7 @@ rasa/constants.py,sha256=VAVFr6K8WWP2TU4Nigd05VY8WnCQsv1Fbaock8f1Gz4,1644
|
|
|
354
367
|
rasa/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
368
|
rasa/core/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
369
|
rasa/core/actions/action.py,sha256=MTzMalvZPCj025h-cybGh6FKRTYkd0tyC-g8UO9ced4,44361
|
|
357
|
-
rasa/core/actions/action_clean_stack.py,sha256=
|
|
370
|
+
rasa/core/actions/action_clean_stack.py,sha256=Zs3Pq9za8HamJq3H6IYTXd8dKE-NC0ThSWgdbTNmCFU,3670
|
|
358
371
|
rasa/core/actions/action_exceptions.py,sha256=3ic3t7vgOFi3ZyjxLRYNgzYYAKIP9MNiTMPwd3kXjW4,736
|
|
359
372
|
rasa/core/actions/action_hangup.py,sha256=o5iklHG-F9IcRgWis5C6AumVXznxzAV3o9zdduhozEM,994
|
|
360
373
|
rasa/core/actions/action_repeat_bot_messages.py,sha256=T7bJH0fsxFQgbkCZZ5dnPi8v18-2X9QZZLfAHmmn7WI,3466
|
|
@@ -362,13 +375,13 @@ rasa/core/actions/action_run_slot_rejections.py,sha256=973BG3tST-TlizJ36P7SVjJfG
|
|
|
362
375
|
rasa/core/actions/action_trigger_chitchat.py,sha256=krOPqCXBihxOskqmm05A4mFEm4lj4ohvzuddy7rELVQ,1084
|
|
363
376
|
rasa/core/actions/action_trigger_flow.py,sha256=IydYAGafTtoY6XSgCX124xJQhzudUg8JAICstqsV3VA,3487
|
|
364
377
|
rasa/core/actions/action_trigger_search.py,sha256=QfYqnaGRCqRYJ4msYsLAbnVYW5ija_tqhCcKIN8aEfw,1064
|
|
365
|
-
rasa/core/actions/constants.py,sha256=
|
|
366
|
-
rasa/core/actions/custom_action_executor.py,sha256=
|
|
378
|
+
rasa/core/actions/constants.py,sha256=7ek4eYaaDzDudP40pFJ38nU2f-Kh2cnvhEff8mr3jsE,301
|
|
379
|
+
rasa/core/actions/custom_action_executor.py,sha256=mcs8xfZn9lbp5uV2JLhDFC64ivnH5J7ZzpFxaHpJ1jc,8212
|
|
367
380
|
rasa/core/actions/direct_custom_actions_executor.py,sha256=zGHI3cXVRfyzaaGSH7VePXHQxsDAvF0iAZSEcOuM-_M,4026
|
|
368
381
|
rasa/core/actions/e2e_stub_custom_action_executor.py,sha256=D-kECC1QjVLv4owNxstW2xJPPsXTGfGepvquMeWB_ec,2282
|
|
369
382
|
rasa/core/actions/forms.py,sha256=MPGxp3vg-EgFcU5UQYqWM2tycSFIuoF6vWvNSSWPhSA,26967
|
|
370
|
-
rasa/core/actions/grpc_custom_action_executor.py,sha256=
|
|
371
|
-
rasa/core/actions/http_custom_action_executor.py,sha256=
|
|
383
|
+
rasa/core/actions/grpc_custom_action_executor.py,sha256=tOCEeqvWAITg9kjRbDO4PVrvtXSDW-_ZVEShnxp66Uc,10757
|
|
384
|
+
rasa/core/actions/http_custom_action_executor.py,sha256=GLYxCjoj-GohrVaqxjNtm9npN47kYZfHa06u15ThTBQ,6662
|
|
372
385
|
rasa/core/actions/loops.py,sha256=3-kt_Sn_Y05PLYoYMsnuIn9e5mxYp31DJIx2omqy0dU,3531
|
|
373
386
|
rasa/core/actions/two_stage_fallback.py,sha256=k8PkD25fvH3kThG9lpC6oLMK7o15kV4yEbv2E2nyans,6065
|
|
374
387
|
rasa/core/agent.py,sha256=dy5zjug_r42DIETkf6xt_yJ6UjaaVvzsmr6OBHUYMqs,22596
|
|
@@ -561,7 +574,7 @@ rasa/core/channels/voice_stream/tts/tts_cache.py,sha256=K4S2d8zWX2h2ylYALp7IdqFS
|
|
|
561
574
|
rasa/core/channels/voice_stream/tts/tts_engine.py,sha256=JMCWGHxT8QiqKoBeI6F4RX_-Q9EEqG3vUtkgOUnlt-w,1812
|
|
562
575
|
rasa/core/channels/voice_stream/twilio_media_streams.py,sha256=XzhxFkbmCs8WhPiziAs7wCGMYDVZtirpVh0jVq5NXWk,9734
|
|
563
576
|
rasa/core/channels/voice_stream/util.py,sha256=nbr0yUl0NIn4-94VUYjPEg_NB2kadcFCq-i9rRJMv4U,2323
|
|
564
|
-
rasa/core/channels/voice_stream/voice_channel.py,sha256=
|
|
577
|
+
rasa/core/channels/voice_stream/voice_channel.py,sha256=iLDFW8KYtnHSC_MYYgg5SWlvOKdzr3exr7yHcY5XqC4,26940
|
|
565
578
|
rasa/core/channels/webexteams.py,sha256=z_o_jnc6B7hsHpd6XorImFkF43wB4yx_kiTPKAjPSuo,4805
|
|
566
579
|
rasa/core/concurrent_lock_store.py,sha256=sDO7Zcl-IdZrGnOMVJa_lN7ht9uJVfaRkSbyXaTizlc,11375
|
|
567
580
|
rasa/core/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -694,7 +707,7 @@ rasa/dialogue_understanding/generator/command_parser_validator.py,sha256=qUIaKBR
|
|
|
694
707
|
rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
|
|
695
708
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
696
709
|
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=TF0QEM7q8KpyDYIJDu0Ym6K-ObjCOw4EEUbGXdpgPvY,17732
|
|
697
|
-
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=
|
|
710
|
+
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=yZy4MMTCjL3cdFENhXkNpG8s4t0jAPhll3bvJD9zm1Q,25364
|
|
698
711
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=CMzsivtKfQZYN8PbDYIBH_1RJg856JSjUx8HqLvbvx4,2589
|
|
699
712
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
700
713
|
rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2,sha256=Y0m673tAML3cFPaLM-urMXDsBYUUcXIw9YUpkAhGUuA,2933
|
|
@@ -712,8 +725,8 @@ rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v2_gpt_4o_
|
|
|
712
725
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_claude_3_5_sonnet_20240620_template.jinja2,sha256=r8EKbUFCWV2_x8rZIAZgebEBkusdqokGQR65fiTE5a4,4863
|
|
713
726
|
rasa/dialogue_understanding/generator/prompt_templates/command_prompt_v3_gpt_4o_2024_11_20_template.jinja2,sha256=IHoD5g3YlZjMLCAjlNtp2NmFsyyio7L1LxLlDvXrZ7Y,4862
|
|
714
727
|
rasa/dialogue_understanding/generator/single_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
715
|
-
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=
|
|
716
|
-
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=
|
|
728
|
+
rasa/dialogue_understanding/generator/single_step/compact_llm_command_generator.py,sha256=pbSxy5bYTkk5XDiHtH6FvamIw0ZJGWbRJkiEM921CVU,7063
|
|
729
|
+
rasa/dialogue_understanding/generator/single_step/search_ready_llm_command_generator.py,sha256=kDGh6SowCFI34NHIBpIoXuJYAcol5OCsd0Z_cp1JjzI,6977
|
|
717
730
|
rasa/dialogue_understanding/generator/single_step/single_step_based_llm_command_generator.py,sha256=IsUp3Sf59HAogVsM7zgSbViusyH46Y35GiOzLuvYBmM,18086
|
|
718
731
|
rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py,sha256=_cT866aB8TuSqe6_ybPaSQVCY0l4qgX4lg6QZUUryo4,3494
|
|
719
732
|
rasa/dialogue_understanding/generator/utils.py,sha256=jxtb-AfngN59y2rHynqJDK80xM_yooEvr3aW1MWl6H0,2760
|
|
@@ -739,7 +752,7 @@ rasa/dialogue_understanding/patterns/skip_question.py,sha256=fJ1MC0WEEtS-BpnGJEf
|
|
|
739
752
|
rasa/dialogue_understanding/patterns/user_silence.py,sha256=xP-QMnd-MsybH5z4g01hBv4OLOHcw6m3rc26LQfe2zo,1140
|
|
740
753
|
rasa/dialogue_understanding/patterns/validate_slot.py,sha256=hqd5AEGT3M3HLNhMwuI9W9kZNCvgU6GyI-2xc2b4kz8,2085
|
|
741
754
|
rasa/dialogue_understanding/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
742
|
-
rasa/dialogue_understanding/processor/command_processor.py,sha256=
|
|
755
|
+
rasa/dialogue_understanding/processor/command_processor.py,sha256=vgsPri80NrfL2cuWBSvLrEKdQnE7US_VB3j2dthJGpk,39454
|
|
743
756
|
rasa/dialogue_understanding/processor/command_processor_component.py,sha256=rkErI_Uo7s3LsEojUSGSRbWGyGaX7GtGOYSJn0V-TI4,1650
|
|
744
757
|
rasa/dialogue_understanding/stack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
745
758
|
rasa/dialogue_understanding/stack/dialogue_stack.py,sha256=6DbVVorC-a-A9hnkuF8S3kPqyyFs5UBTiQQg4l37Z_M,8693
|
|
@@ -1035,16 +1048,16 @@ rasa/shared/nlu/training_data/util.py,sha256=SCd97o6dDhbodasRK3JuaiAA1Xcy0faEMTj
|
|
|
1035
1048
|
rasa/shared/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1036
1049
|
rasa/shared/providers/_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1037
1050
|
rasa/shared/providers/_configs/azure_entra_id_config.py,sha256=MnvWRlCN-nFv5wb8AtFPM1tymCr72jmhI-MQgZZphAs,19392
|
|
1038
|
-
rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=
|
|
1051
|
+
rasa/shared/providers/_configs/azure_openai_client_config.py,sha256=dbqWydyDsjMqYkPNSyavFKG75Aih8KwfAxIczb2MFkA,10785
|
|
1039
1052
|
rasa/shared/providers/_configs/client_config.py,sha256=nQ469h1XI970_7Vs49hNIpBIwlAeiAg-cwV0JFp7Hg0,1618
|
|
1040
|
-
rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=
|
|
1053
|
+
rasa/shared/providers/_configs/default_litellm_client_config.py,sha256=qIogX-S9g9bnFWwB5-FZ7WGongaR4L_YKlInhSMaYQo,4262
|
|
1041
1054
|
rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py,sha256=aOIN_t0bM6Nfh5IkrNZd-_l8zo8UplM3iMlWuIkuYRg,8189
|
|
1042
|
-
rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=
|
|
1055
|
+
rasa/shared/providers/_configs/litellm_router_client_config.py,sha256=KsL4XeaOTzAAf3gQq9jouxj05NViB6GoXiYn2A567Vg,7266
|
|
1043
1056
|
rasa/shared/providers/_configs/model_group_config.py,sha256=gcvRY86StqCLqAOxLh-2sWEPxMNnwt43vR3QaviElZI,5618
|
|
1044
1057
|
rasa/shared/providers/_configs/oauth_config.py,sha256=eMHaXdSwiYqe4LC_UhDPJcrE7tqv3HDc8ghgkhwcYo4,791
|
|
1045
|
-
rasa/shared/providers/_configs/openai_client_config.py,sha256=
|
|
1046
|
-
rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=
|
|
1047
|
-
rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=
|
|
1058
|
+
rasa/shared/providers/_configs/openai_client_config.py,sha256=U8DP1G7OrRXJSRumTc5XS6kg2okLHNP0VXGhqXmmYZc,5956
|
|
1059
|
+
rasa/shared/providers/_configs/rasa_llm_client_config.py,sha256=ob5HZfOG5kp6jqVwsVsAdgFGI6i0KqWYyIsI1k8S6Hs,2226
|
|
1060
|
+
rasa/shared/providers/_configs/self_hosted_llm_client_config.py,sha256=HTB31Uk6nhuW98h10sO5n0bIUBqchQTGcdCOf3I1fDQ,5944
|
|
1048
1061
|
rasa/shared/providers/_configs/utils.py,sha256=AUnvh4qF9VfLoXpTPoZfwYQ9YsVW8HPMbWa-vG6wOHw,453
|
|
1049
1062
|
rasa/shared/providers/_ssl_verification_utils.py,sha256=vUnP0vocf0GQ0wG8IQpPcCet4c1C9-wQWQNckNWbDBk,4165
|
|
1050
1063
|
rasa/shared/providers/_utils.py,sha256=LVPsZbl6zzF4hZE6bNVwgY4BkbeIWnRD0dhEqA-kWkk,6975
|
|
@@ -1060,15 +1073,15 @@ rasa/shared/providers/embedding/huggingface_local_embedding_client.py,sha256=Zo3
|
|
|
1060
1073
|
rasa/shared/providers/embedding/litellm_router_embedding_client.py,sha256=eafDk6IgQtL_kiKgpa6sJs1oATyRi2NT2leUFQsED2s,4551
|
|
1061
1074
|
rasa/shared/providers/embedding/openai_embedding_client.py,sha256=XNRGE7apo2v3kWRrtgxE-Gq4rvNko3IiXtvgC4krDYE,5429
|
|
1062
1075
|
rasa/shared/providers/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1063
|
-
rasa/shared/providers/llm/_base_litellm_client.py,sha256=
|
|
1076
|
+
rasa/shared/providers/llm/_base_litellm_client.py,sha256=HO1hxXuM-82FUxYuftiBT7-vRdeiN1tI0An9DUcSgSc,13895
|
|
1064
1077
|
rasa/shared/providers/llm/azure_openai_llm_client.py,sha256=ui85vothxR2P_-eLc4nLgbpjnpEKY2BXnIjLxBZoYz8,12504
|
|
1065
1078
|
rasa/shared/providers/llm/default_litellm_llm_client.py,sha256=q6QoyPPq0K7V9aeD0zr08ZK69xlH4GseGFdhUxpWcG8,4210
|
|
1066
|
-
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=
|
|
1079
|
+
rasa/shared/providers/llm/litellm_router_llm_client.py,sha256=HP-Z07DDBlpwLHiDKGDHjK5lS02XZCHOwsh7zY7GdTE,8832
|
|
1067
1080
|
rasa/shared/providers/llm/llm_client.py,sha256=tzdzh7sYb64zrsfbJ_SYNgUfBp7TAn77IekgJzLFeLs,3443
|
|
1068
1081
|
rasa/shared/providers/llm/llm_response.py,sha256=UnC31Mm3R__77u6pWxAdw1a1qevIu8pD_M4UHG-rII4,5663
|
|
1069
1082
|
rasa/shared/providers/llm/openai_llm_client.py,sha256=rSdLj29Hl1Wm5G6Uwo77j4WqogK_3QIbTA7fyt63YAg,5013
|
|
1070
1083
|
rasa/shared/providers/llm/rasa_llm_client.py,sha256=44Tvtnkq4mxDIxtdrGUkwBWAvX1OLaswqmpAsyBH8e8,3504
|
|
1071
|
-
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=
|
|
1084
|
+
rasa/shared/providers/llm/self_hosted_llm_client.py,sha256=I_ry_x-zLlxhHX8itUq7uFWZlNyLdmKNiwUMAMqd_k8,10315
|
|
1072
1085
|
rasa/shared/providers/mappings.py,sha256=QSD3XWvhYCtBLNpGycN30vEnLULYIaqCsAtmfPfSZ3U,3674
|
|
1073
1086
|
rasa/shared/providers/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1074
1087
|
rasa/shared/providers/router/_base_litellm_router_client.py,sha256=JV9lYnhIG_CWMtPB5nofjNdRO5V-Wl0DH-HyPm__eJ0,11003
|
|
@@ -1076,7 +1089,7 @@ rasa/shared/providers/router/router_client.py,sha256=5BBEg-_JtClOVxBy1hu-HceG329
|
|
|
1076
1089
|
rasa/shared/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1077
1090
|
rasa/shared/utils/cli.py,sha256=Md1KOje2v_gsY9xH7T-U_aKNZaI4D2zdpyt_gehbvs8,3034
|
|
1078
1091
|
rasa/shared/utils/common.py,sha256=UxJIxRJy-pFZIuroctWQNV1aSPIbcszXf85RfXnoyoQ,13285
|
|
1079
|
-
rasa/shared/utils/configs.py,sha256=
|
|
1092
|
+
rasa/shared/utils/configs.py,sha256=ePHeYae3MGgj7vq7d6K7fpNFuHSGGpeGqmw20xVys5U,3531
|
|
1080
1093
|
rasa/shared/utils/constants.py,sha256=Y3lnqtSMacVXS47m_G2T3QUuBIAEoMPinmNVcbCt-R8,252
|
|
1081
1094
|
rasa/shared/utils/health_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1082
1095
|
rasa/shared/utils/health_check/embeddings_health_check_mixin.py,sha256=ASOzDtI3i6HlRLzee8pafejlTkUesOhY6FZb5-wAZMI,1034
|
|
@@ -1127,7 +1140,7 @@ rasa/utils/beta.py,sha256=h2xwGagMh2SnpMuqhkEAEjL7C_CyU6b1te7sbtF-lm4,3240
|
|
|
1127
1140
|
rasa/utils/cli.py,sha256=L-DT4nPdVBWfc2m1COHrziLitVWJxazSreb6JLbTho4,865
|
|
1128
1141
|
rasa/utils/common.py,sha256=fEy80okTfhJdqWNgNK2zB_KS-KQMmFzGc3Hi7NUz0Hg,24926
|
|
1129
1142
|
rasa/utils/converter.py,sha256=H4LHpoAK7MXMmvNZG_uSn0gbccCJvHtsA2-6Zya4u6M,1656
|
|
1130
|
-
rasa/utils/endpoints.py,sha256=
|
|
1143
|
+
rasa/utils/endpoints.py,sha256=uGgrkKxP6hZslmwVWewlIRlUqg9BovxYqCLBZYiAcXA,11605
|
|
1131
1144
|
rasa/utils/installation_utils.py,sha256=5PKXGGuVtzFBhRnavMBbLB6IURkEexnPWN8VKymdLcA,3844
|
|
1132
1145
|
rasa/utils/io.py,sha256=E5zl3j2k7_-o-tzXKRkW5zcXcslnj7R_cke2AYKZ14g,7800
|
|
1133
1146
|
rasa/utils/json_utils.py,sha256=7qqojac0JKwoF0t4XbKWa43sxCkTk_QIQ9pyLhP-Zv8,1886
|
|
@@ -1161,9 +1174,9 @@ rasa/utils/train_utils.py,sha256=0_yuHkktrquqPVoDjsk5jSwl-gDThYmZOcrxQUJzJU0,225
|
|
|
1161
1174
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
1162
1175
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
1163
1176
|
rasa/validator.py,sha256=peO1q1z73a_JCsWj0rq92MfmGh5uvl7Pb2A9xFTKsb0,88309
|
|
1164
|
-
rasa/version.py,sha256=
|
|
1165
|
-
rasa_pro-3.15.
|
|
1166
|
-
rasa_pro-3.15.
|
|
1167
|
-
rasa_pro-3.15.
|
|
1168
|
-
rasa_pro-3.15.
|
|
1169
|
-
rasa_pro-3.15.
|
|
1177
|
+
rasa/version.py,sha256=ewSPk0ROcyZND31PTRX3cuBxvICRWAU-bzV04Ze1oDM,119
|
|
1178
|
+
rasa_pro-3.15.0a3.dist-info/METADATA,sha256=HjnY3wAtQplySkUEZVAlI2h9yXgxF7AyLduedHuZWnY,12640
|
|
1179
|
+
rasa_pro-3.15.0a3.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
1180
|
+
rasa_pro-3.15.0a3.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
1181
|
+
rasa_pro-3.15.0a3.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
1182
|
+
rasa_pro-3.15.0a3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|