dv-pipecat-ai 0.0.85.dev864__py3-none-any.whl → 0.0.85.dev865__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 dv-pipecat-ai might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dv-pipecat-ai
3
- Version: 0.0.85.dev864
3
+ Version: 0.0.85.dev865
4
4
  Summary: An open source framework for voice (and multimodal) assistants
5
5
  License-Expression: BSD-2-Clause
6
6
  Project-URL: Source, https://github.com/pipecat-ai/pipecat
@@ -1,4 +1,4 @@
1
- dv_pipecat_ai-0.0.85.dev864.dist-info/licenses/LICENSE,sha256=DWY2QGf2eMCFhuu2ChairtT6CB7BEFffNVhXWc4Od08,1301
1
+ dv_pipecat_ai-0.0.85.dev865.dist-info/licenses/LICENSE,sha256=DWY2QGf2eMCFhuu2ChairtT6CB7BEFffNVhXWc4Od08,1301
2
2
  pipecat/__init__.py,sha256=j0Xm6adxHhd7D06dIyyPV_GlBYLlBnTAERVvD_jAARQ,861
3
3
  pipecat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  pipecat/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -114,7 +114,7 @@ pipecat/processors/idle_frame_processor.py,sha256=z8AuhGap61lA5K35P6XCaOpn4kkmK_
114
114
  pipecat/processors/logger.py,sha256=8xa4KKekXQIETlQR7zoGnwUpLNo8CeDVm7YjyXePN-w,2385
115
115
  pipecat/processors/producer_processor.py,sha256=iIIOHZd77APvUGP7JqFbznAHUnCULcq_qYiSEjwXHcc,3265
116
116
  pipecat/processors/text_transformer.py,sha256=LnfWJYzntJhZhrQ1lgSSY4D4VbHtrQJgrC227M69ZYU,1718
117
- pipecat/processors/transcript_processor.py,sha256=P-JLoeZid4HKpYnGVxrOb8qQK3jkT5yVztbRrxiu-08,12559
117
+ pipecat/processors/transcript_processor.py,sha256=IubD2KqfMqluXz6L3X7LFh6ENq7kl24pNQDB9mTDgro,12550
118
118
  pipecat/processors/two_stage_user_idle_processor.py,sha256=uf2aZh_lfW-eMxmFogP3R4taAJ1yXOSqjKsR7oXtD0Y,2938
119
119
  pipecat/processors/user_idle_processor.py,sha256=Dl-Kcg0B4JZqWXXiyGuvYszGimbu2oKOyOJC92R9_hE,9140
120
120
  pipecat/processors/aggregators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -418,7 +418,7 @@ pipecat/utils/tracing/service_decorators.py,sha256=fwzxFpi8DJl6BJbK74G0UEB4ccMJg
418
418
  pipecat/utils/tracing/setup.py,sha256=7TEgPNpq6M8lww8OQvf0P9FzYc5A30xICGklVA-fua0,2892
419
419
  pipecat/utils/tracing/turn_context_provider.py,sha256=ikon3plFOx0XbMrH6DdeHttNpb-U0gzMZIm3bWLc9eI,2485
420
420
  pipecat/utils/tracing/turn_trace_observer.py,sha256=dma16SBJpYSOE58YDWy89QzHyQFc_9gQZszKeWixuwc,9725
421
- dv_pipecat_ai-0.0.85.dev864.dist-info/METADATA,sha256=ZTdIYT9jKhorO_SVRcRrRRt13CjoGKBXtV-w4iiu-Ew,32955
422
- dv_pipecat_ai-0.0.85.dev864.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
423
- dv_pipecat_ai-0.0.85.dev864.dist-info/top_level.txt,sha256=kQzG20CxGf-nSsHmtXHx3hY2-8zHA3jYg8jk0TajqXc,8
424
- dv_pipecat_ai-0.0.85.dev864.dist-info/RECORD,,
421
+ dv_pipecat_ai-0.0.85.dev865.dist-info/METADATA,sha256=Hb2X1OfX8oaOJc7tpkfX9m349ozJxunhggPR2tP_Y18,32955
422
+ dv_pipecat_ai-0.0.85.dev865.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
423
+ dv_pipecat_ai-0.0.85.dev865.dist-info/top_level.txt,sha256=kQzG20CxGf-nSsHmtXHx3hY2-8zHA3jYg8jk0TajqXc,8
424
+ dv_pipecat_ai-0.0.85.dev865.dist-info/RECORD,,
@@ -10,8 +10,8 @@ This module provides processors that convert speech and text frames into structu
10
10
  transcript messages with timestamps, enabling conversation history tracking and analysis.
11
11
  """
12
12
 
13
- from typing import List, Optional
14
13
  import uuid
14
+ from typing import List, Optional
15
15
 
16
16
  from loguru import logger
17
17
 
@@ -92,7 +92,7 @@ class UserTranscriptProcessor(BaseTranscriptProcessor):
92
92
  user_id=frame.user_id,
93
93
  content=frame.text,
94
94
  timestamp=frame.timestamp,
95
- message_id=str(uuid.uuid4()),
95
+ message_id=frame.id,
96
96
  )
97
97
  await self._emit_update([message])
98
98
  elif isinstance(frame, TranscriptDropFrame):