rasa-pro 3.12.32__py3-none-any.whl → 3.12.33__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/core/channels/voice_stream/audiocodes.py +1 -0
- rasa/dialogue_understanding/generator/flow_retrieval.py +10 -0
- rasa/version.py +1 -1
- {rasa_pro-3.12.32.dist-info → rasa_pro-3.12.33.dist-info}/METADATA +1 -1
- {rasa_pro-3.12.32.dist-info → rasa_pro-3.12.33.dist-info}/RECORD +8 -8
- {rasa_pro-3.12.32.dist-info → rasa_pro-3.12.33.dist-info}/NOTICE +0 -0
- {rasa_pro-3.12.32.dist-info → rasa_pro-3.12.33.dist-info}/WHEEL +0 -0
- {rasa_pro-3.12.32.dist-info → rasa_pro-3.12.33.dist-info}/entry_points.txt +0 -0
|
@@ -86,6 +86,7 @@ class AudiocodesVoiceOutputChannel(VoiceOutputChannel):
|
|
|
86
86
|
# This is an approximation, as the bot will be sent the audio chunks next
|
|
87
87
|
# which are played to the user immediately.
|
|
88
88
|
call_state.is_bot_speaking = True # type: ignore[attr-defined]
|
|
89
|
+
VoiceInputChannel._cancel_silence_timeout_watcher()
|
|
89
90
|
|
|
90
91
|
async def send_intermediate_marker(self, recipient_id: str) -> None:
|
|
91
92
|
"""Audiocodes doesn't need intermediate markers, so do nothing."""
|
|
@@ -249,6 +249,16 @@ class FlowRetrieval(EmbeddingsHealthCheckMixin):
|
|
|
249
249
|
)
|
|
250
250
|
|
|
251
251
|
flows_to_embedd = flows.exclude_link_only_flows()
|
|
252
|
+
|
|
253
|
+
if not flows_to_embedd:
|
|
254
|
+
structlogger.debug(
|
|
255
|
+
"flow_retrieval.populate_vector_store.no_flows_to_embed",
|
|
256
|
+
event_info=(
|
|
257
|
+
"No flows to embed in the vector store, skipping population."
|
|
258
|
+
),
|
|
259
|
+
)
|
|
260
|
+
return
|
|
261
|
+
|
|
252
262
|
embeddings = self._create_embedder(self.config)
|
|
253
263
|
documents = self._generate_flow_documents(flows_to_embedd, domain)
|
|
254
264
|
try:
|
rasa/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rasa-pro
|
|
3
|
-
Version: 3.12.
|
|
3
|
+
Version: 3.12.33
|
|
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
|
|
@@ -280,7 +280,7 @@ rasa/core/channels/voice_stream/asr/asr_event.py,sha256=skPwrkRrcsptmeWXu9q68i4B
|
|
|
280
280
|
rasa/core/channels/voice_stream/asr/azure.py,sha256=dUFxtNVVwGM2D1VyqQ5FWeSpKwUQekMXUxWZv6tPJ7w,6114
|
|
281
281
|
rasa/core/channels/voice_stream/asr/deepgram.py,sha256=VeVMWg05uL_epGGOZbUHXeIIhoBf0bxiWMp6QwNFe0A,5920
|
|
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=ZUj15x16A3MS3v1wZ7YGR5DOX0GH5PlUwIOmZP7QAwo,12916
|
|
284
284
|
rasa/core/channels/voice_stream/browser_audio.py,sha256=fDwp-yaalik8R92EOJHsgHMuNAg9yoeGWVRGMCH2lJQ,3939
|
|
285
285
|
rasa/core/channels/voice_stream/call_state.py,sha256=fbwVbT0ddE7AjTYjx-Mq5jBMEGXanbug5wlBwstaews,899
|
|
286
286
|
rasa/core/channels/voice_stream/genesys.py,sha256=EyZ4G3gfiQ5HXP6jslTjXRBYVEhpyO8nK5r6znQtHtE,16965
|
|
@@ -399,7 +399,7 @@ rasa/dialogue_understanding/generator/command_generator.py,sha256=huRDWC2gv_bRHF
|
|
|
399
399
|
rasa/dialogue_understanding/generator/command_parser.py,sha256=wf6FSgqBw5F0legg06SqKlzajIN6sc_Cov2lFY_O9MI,8109
|
|
400
400
|
rasa/dialogue_understanding/generator/constants.py,sha256=ulqmLIwrBOZLyhsCChI_4CdOnA0I8MfuBxxuKGyFp7U,1130
|
|
401
401
|
rasa/dialogue_understanding/generator/flow_document_template.jinja2,sha256=f4H6vVd-_nX_RtutMh1xD3ZQE_J2OyuPHAtiltfiAPY,253
|
|
402
|
-
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=
|
|
402
|
+
rasa/dialogue_understanding/generator/flow_retrieval.py,sha256=D-D6bvYt_GDLoRQzhvlTEPnmZI4ceESLJBLWrMgUyrA,18120
|
|
403
403
|
rasa/dialogue_understanding/generator/llm_based_command_generator.py,sha256=P1Hwjt8ph2oQQ2PzWaaBRcU36ia4mN21nTzhLtEF5Wc,23586
|
|
404
404
|
rasa/dialogue_understanding/generator/llm_command_generator.py,sha256=z7jhIJ3W_5GFH-p15kVoWbigMIoY8fIJjc_j_uX7yxw,2581
|
|
405
405
|
rasa/dialogue_understanding/generator/multi_step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -822,9 +822,9 @@ rasa/utils/train_utils.py,sha256=ClJx-6x3-h3Vt6mskacgkcCUJTMXjFPe3zAcy_DfmaU,212
|
|
|
822
822
|
rasa/utils/url_tools.py,sha256=dZ1HGkVdWTJB7zYEdwoDIrEuyX9HE5WsxKKFVsXBLE0,1218
|
|
823
823
|
rasa/utils/yaml.py,sha256=KjbZq5C94ZP7Jdsw8bYYF7HASI6K4-C_kdHfrnPLpSI,2000
|
|
824
824
|
rasa/validator.py,sha256=524VlFTYK0B3iXYveVD6BDC3K0j1QfpzJ9O-TAWczmc,83166
|
|
825
|
-
rasa/version.py,sha256=
|
|
826
|
-
rasa_pro-3.12.
|
|
827
|
-
rasa_pro-3.12.
|
|
828
|
-
rasa_pro-3.12.
|
|
829
|
-
rasa_pro-3.12.
|
|
830
|
-
rasa_pro-3.12.
|
|
825
|
+
rasa/version.py,sha256=7JatnMAciHDSavVAX_RufsdQixgGhtJ91pKmkbgBBqw,118
|
|
826
|
+
rasa_pro-3.12.33.dist-info/METADATA,sha256=2wNpVczdaKeheXr4MGkBbF0DeT3Xvx3P3rpnw6SUYKM,10609
|
|
827
|
+
rasa_pro-3.12.33.dist-info/NOTICE,sha256=7HlBoMHJY9CL2GlYSfTQ-PZsVmLmVkYmMiPlTjhuCqA,218
|
|
828
|
+
rasa_pro-3.12.33.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
829
|
+
rasa_pro-3.12.33.dist-info/entry_points.txt,sha256=ckJ2SfEyTPgBqj_I6vm_tqY9dZF_LAPJZA335Xp0Q9U,43
|
|
830
|
+
rasa_pro-3.12.33.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|