dv-pipecat-ai 0.0.74.dev770__py3-none-any.whl → 0.0.82.dev776__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.
- {dv_pipecat_ai-0.0.74.dev770.dist-info → dv_pipecat_ai-0.0.82.dev776.dist-info}/METADATA +137 -93
- dv_pipecat_ai-0.0.82.dev776.dist-info/RECORD +340 -0
- pipecat/__init__.py +17 -0
- pipecat/adapters/base_llm_adapter.py +36 -1
- pipecat/adapters/schemas/direct_function.py +296 -0
- pipecat/adapters/schemas/function_schema.py +15 -6
- pipecat/adapters/schemas/tools_schema.py +55 -7
- pipecat/adapters/services/anthropic_adapter.py +22 -3
- pipecat/adapters/services/aws_nova_sonic_adapter.py +23 -3
- pipecat/adapters/services/bedrock_adapter.py +22 -3
- pipecat/adapters/services/gemini_adapter.py +16 -3
- pipecat/adapters/services/open_ai_adapter.py +17 -2
- pipecat/adapters/services/open_ai_realtime_adapter.py +23 -3
- pipecat/audio/filters/base_audio_filter.py +30 -6
- pipecat/audio/filters/koala_filter.py +37 -2
- pipecat/audio/filters/krisp_filter.py +59 -6
- pipecat/audio/filters/noisereduce_filter.py +37 -0
- pipecat/audio/interruptions/base_interruption_strategy.py +25 -5
- pipecat/audio/interruptions/min_words_interruption_strategy.py +21 -4
- pipecat/audio/mixers/base_audio_mixer.py +30 -7
- pipecat/audio/mixers/soundfile_mixer.py +53 -6
- pipecat/audio/resamplers/base_audio_resampler.py +17 -9
- pipecat/audio/resamplers/resampy_resampler.py +26 -1
- pipecat/audio/resamplers/soxr_resampler.py +32 -1
- pipecat/audio/resamplers/soxr_stream_resampler.py +101 -0
- pipecat/audio/utils.py +194 -1
- pipecat/audio/vad/silero.py +60 -3
- pipecat/audio/vad/vad_analyzer.py +114 -30
- pipecat/clocks/base_clock.py +19 -0
- pipecat/clocks/system_clock.py +25 -0
- pipecat/extensions/voicemail/__init__.py +0 -0
- pipecat/extensions/voicemail/voicemail_detector.py +707 -0
- pipecat/frames/frames.py +590 -156
- pipecat/metrics/metrics.py +64 -1
- pipecat/observers/base_observer.py +58 -19
- pipecat/observers/loggers/debug_log_observer.py +56 -64
- pipecat/observers/loggers/llm_log_observer.py +8 -1
- pipecat/observers/loggers/transcription_log_observer.py +19 -7
- pipecat/observers/loggers/user_bot_latency_log_observer.py +32 -5
- pipecat/observers/turn_tracking_observer.py +26 -1
- pipecat/pipeline/base_pipeline.py +5 -7
- pipecat/pipeline/base_task.py +52 -9
- pipecat/pipeline/parallel_pipeline.py +121 -177
- pipecat/pipeline/pipeline.py +129 -20
- pipecat/pipeline/runner.py +50 -1
- pipecat/pipeline/sync_parallel_pipeline.py +132 -32
- pipecat/pipeline/task.py +263 -280
- pipecat/pipeline/task_observer.py +85 -34
- pipecat/pipeline/to_be_updated/merge_pipeline.py +32 -2
- pipecat/processors/aggregators/dtmf_aggregator.py +29 -22
- pipecat/processors/aggregators/gated.py +25 -24
- pipecat/processors/aggregators/gated_openai_llm_context.py +22 -2
- pipecat/processors/aggregators/llm_response.py +398 -89
- pipecat/processors/aggregators/openai_llm_context.py +161 -13
- pipecat/processors/aggregators/sentence.py +25 -14
- pipecat/processors/aggregators/user_response.py +28 -3
- pipecat/processors/aggregators/vision_image_frame.py +24 -14
- pipecat/processors/async_generator.py +28 -0
- pipecat/processors/audio/audio_buffer_processor.py +78 -37
- pipecat/processors/consumer_processor.py +25 -6
- pipecat/processors/filters/frame_filter.py +23 -0
- pipecat/processors/filters/function_filter.py +30 -0
- pipecat/processors/filters/identity_filter.py +17 -2
- pipecat/processors/filters/null_filter.py +24 -1
- pipecat/processors/filters/stt_mute_filter.py +56 -21
- pipecat/processors/filters/wake_check_filter.py +46 -3
- pipecat/processors/filters/wake_notifier_filter.py +21 -3
- pipecat/processors/frame_processor.py +488 -131
- pipecat/processors/frameworks/langchain.py +38 -3
- pipecat/processors/frameworks/rtvi.py +719 -34
- pipecat/processors/gstreamer/pipeline_source.py +41 -0
- pipecat/processors/idle_frame_processor.py +26 -3
- pipecat/processors/logger.py +23 -0
- pipecat/processors/metrics/frame_processor_metrics.py +77 -4
- pipecat/processors/metrics/sentry.py +42 -4
- pipecat/processors/producer_processor.py +34 -14
- pipecat/processors/text_transformer.py +22 -10
- pipecat/processors/transcript_processor.py +48 -29
- pipecat/processors/user_idle_processor.py +31 -21
- pipecat/runner/__init__.py +1 -0
- pipecat/runner/daily.py +132 -0
- pipecat/runner/livekit.py +148 -0
- pipecat/runner/run.py +543 -0
- pipecat/runner/types.py +67 -0
- pipecat/runner/utils.py +515 -0
- pipecat/serializers/base_serializer.py +42 -0
- pipecat/serializers/exotel.py +17 -6
- pipecat/serializers/genesys.py +95 -0
- pipecat/serializers/livekit.py +33 -0
- pipecat/serializers/plivo.py +16 -15
- pipecat/serializers/protobuf.py +37 -1
- pipecat/serializers/telnyx.py +18 -17
- pipecat/serializers/twilio.py +32 -16
- pipecat/services/ai_service.py +5 -3
- pipecat/services/anthropic/llm.py +113 -43
- pipecat/services/assemblyai/models.py +63 -5
- pipecat/services/assemblyai/stt.py +64 -11
- pipecat/services/asyncai/__init__.py +0 -0
- pipecat/services/asyncai/tts.py +501 -0
- pipecat/services/aws/llm.py +185 -111
- pipecat/services/aws/stt.py +217 -23
- pipecat/services/aws/tts.py +118 -52
- pipecat/services/aws/utils.py +101 -5
- pipecat/services/aws_nova_sonic/aws.py +82 -64
- pipecat/services/aws_nova_sonic/context.py +15 -6
- pipecat/services/azure/common.py +10 -2
- pipecat/services/azure/image.py +32 -0
- pipecat/services/azure/llm.py +9 -7
- pipecat/services/azure/stt.py +65 -2
- pipecat/services/azure/tts.py +154 -23
- pipecat/services/cartesia/stt.py +125 -8
- pipecat/services/cartesia/tts.py +102 -38
- pipecat/services/cerebras/llm.py +15 -23
- pipecat/services/deepgram/stt.py +19 -11
- pipecat/services/deepgram/tts.py +36 -0
- pipecat/services/deepseek/llm.py +14 -23
- pipecat/services/elevenlabs/tts.py +330 -64
- pipecat/services/fal/image.py +43 -0
- pipecat/services/fal/stt.py +48 -10
- pipecat/services/fireworks/llm.py +14 -21
- pipecat/services/fish/tts.py +109 -9
- pipecat/services/gemini_multimodal_live/__init__.py +1 -0
- pipecat/services/gemini_multimodal_live/events.py +83 -2
- pipecat/services/gemini_multimodal_live/file_api.py +189 -0
- pipecat/services/gemini_multimodal_live/gemini.py +218 -21
- pipecat/services/gladia/config.py +17 -10
- pipecat/services/gladia/stt.py +82 -36
- pipecat/services/google/frames.py +40 -0
- pipecat/services/google/google.py +2 -0
- pipecat/services/google/image.py +39 -2
- pipecat/services/google/llm.py +176 -58
- pipecat/services/google/llm_openai.py +26 -4
- pipecat/services/google/llm_vertex.py +37 -15
- pipecat/services/google/rtvi.py +41 -0
- pipecat/services/google/stt.py +65 -17
- pipecat/services/google/test-google-chirp.py +45 -0
- pipecat/services/google/tts.py +390 -19
- pipecat/services/grok/llm.py +8 -6
- pipecat/services/groq/llm.py +8 -6
- pipecat/services/groq/stt.py +13 -9
- pipecat/services/groq/tts.py +40 -0
- pipecat/services/hamsa/__init__.py +9 -0
- pipecat/services/hamsa/stt.py +241 -0
- pipecat/services/heygen/__init__.py +5 -0
- pipecat/services/heygen/api.py +281 -0
- pipecat/services/heygen/client.py +620 -0
- pipecat/services/heygen/video.py +338 -0
- pipecat/services/image_service.py +5 -3
- pipecat/services/inworld/__init__.py +1 -0
- pipecat/services/inworld/tts.py +592 -0
- pipecat/services/llm_service.py +127 -45
- pipecat/services/lmnt/tts.py +80 -7
- pipecat/services/mcp_service.py +85 -44
- pipecat/services/mem0/memory.py +42 -13
- pipecat/services/minimax/tts.py +74 -15
- pipecat/services/mistral/__init__.py +0 -0
- pipecat/services/mistral/llm.py +185 -0
- pipecat/services/moondream/vision.py +55 -10
- pipecat/services/neuphonic/tts.py +275 -48
- pipecat/services/nim/llm.py +8 -6
- pipecat/services/ollama/llm.py +27 -7
- pipecat/services/openai/base_llm.py +54 -16
- pipecat/services/openai/image.py +30 -0
- pipecat/services/openai/llm.py +7 -5
- pipecat/services/openai/stt.py +13 -9
- pipecat/services/openai/tts.py +42 -10
- pipecat/services/openai_realtime_beta/azure.py +11 -9
- pipecat/services/openai_realtime_beta/context.py +7 -5
- pipecat/services/openai_realtime_beta/events.py +10 -7
- pipecat/services/openai_realtime_beta/openai.py +37 -18
- pipecat/services/openpipe/llm.py +30 -24
- pipecat/services/openrouter/llm.py +9 -7
- pipecat/services/perplexity/llm.py +15 -19
- pipecat/services/piper/tts.py +26 -12
- pipecat/services/playht/tts.py +227 -65
- pipecat/services/qwen/llm.py +8 -6
- pipecat/services/rime/tts.py +128 -17
- pipecat/services/riva/stt.py +160 -22
- pipecat/services/riva/tts.py +67 -2
- pipecat/services/sambanova/llm.py +19 -17
- pipecat/services/sambanova/stt.py +14 -8
- pipecat/services/sarvam/tts.py +60 -13
- pipecat/services/simli/video.py +82 -21
- pipecat/services/soniox/__init__.py +0 -0
- pipecat/services/soniox/stt.py +398 -0
- pipecat/services/speechmatics/stt.py +29 -17
- pipecat/services/stt_service.py +47 -11
- pipecat/services/tavus/video.py +94 -25
- pipecat/services/together/llm.py +8 -6
- pipecat/services/tts_service.py +77 -53
- pipecat/services/ultravox/stt.py +46 -43
- pipecat/services/vision_service.py +5 -3
- pipecat/services/websocket_service.py +12 -11
- pipecat/services/whisper/base_stt.py +58 -12
- pipecat/services/whisper/stt.py +69 -58
- pipecat/services/xtts/tts.py +59 -2
- pipecat/sync/base_notifier.py +19 -0
- pipecat/sync/event_notifier.py +24 -0
- pipecat/tests/utils.py +73 -5
- pipecat/transcriptions/language.py +24 -0
- pipecat/transports/base_input.py +112 -8
- pipecat/transports/base_output.py +235 -13
- pipecat/transports/base_transport.py +119 -0
- pipecat/transports/local/audio.py +76 -0
- pipecat/transports/local/tk.py +84 -0
- pipecat/transports/network/fastapi_websocket.py +174 -15
- pipecat/transports/network/small_webrtc.py +383 -39
- pipecat/transports/network/webrtc_connection.py +214 -8
- pipecat/transports/network/websocket_client.py +171 -1
- pipecat/transports/network/websocket_server.py +147 -9
- pipecat/transports/services/daily.py +792 -70
- pipecat/transports/services/helpers/daily_rest.py +122 -129
- pipecat/transports/services/livekit.py +339 -4
- pipecat/transports/services/tavus.py +273 -38
- pipecat/utils/asyncio/task_manager.py +92 -186
- pipecat/utils/base_object.py +83 -1
- pipecat/utils/network.py +2 -0
- pipecat/utils/string.py +114 -58
- pipecat/utils/text/base_text_aggregator.py +44 -13
- pipecat/utils/text/base_text_filter.py +46 -0
- pipecat/utils/text/markdown_text_filter.py +70 -14
- pipecat/utils/text/pattern_pair_aggregator.py +18 -14
- pipecat/utils/text/simple_text_aggregator.py +43 -2
- pipecat/utils/text/skip_tags_aggregator.py +21 -13
- pipecat/utils/time.py +36 -0
- pipecat/utils/tracing/class_decorators.py +32 -7
- pipecat/utils/tracing/conversation_context_provider.py +12 -2
- pipecat/utils/tracing/service_attributes.py +80 -64
- pipecat/utils/tracing/service_decorators.py +48 -21
- pipecat/utils/tracing/setup.py +13 -7
- pipecat/utils/tracing/turn_context_provider.py +12 -2
- pipecat/utils/tracing/turn_trace_observer.py +27 -0
- pipecat/utils/utils.py +14 -14
- dv_pipecat_ai-0.0.74.dev770.dist-info/RECORD +0 -319
- pipecat/examples/daily_runner.py +0 -64
- pipecat/examples/run.py +0 -265
- pipecat/utils/asyncio/watchdog_async_iterator.py +0 -72
- pipecat/utils/asyncio/watchdog_event.py +0 -42
- pipecat/utils/asyncio/watchdog_priority_queue.py +0 -48
- pipecat/utils/asyncio/watchdog_queue.py +0 -48
- {dv_pipecat_ai-0.0.74.dev770.dist-info → dv_pipecat_ai-0.0.82.dev776.dist-info}/WHEEL +0 -0
- {dv_pipecat_ai-0.0.74.dev770.dist-info → dv_pipecat_ai-0.0.82.dev776.dist-info}/licenses/LICENSE +0 -0
- {dv_pipecat_ai-0.0.74.dev770.dist-info → dv_pipecat_ai-0.0.82.dev776.dist-info}/top_level.txt +0 -0
- /pipecat/{examples → extensions}/__init__.py +0 -0
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright (c) 2024–2025, Daily
|
|
3
|
-
#
|
|
4
|
-
# SPDX-License-Identifier: BSD 2-Clause License
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
import asyncio
|
|
8
|
-
from typing import AsyncIterator, Optional
|
|
9
|
-
|
|
10
|
-
from pipecat.utils.asyncio.task_manager import BaseTaskManager
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
class WatchdogAsyncIterator:
|
|
14
|
-
"""An asynchronous iterator that monitors activity and resets the current
|
|
15
|
-
task watchdog timer. This is necessary to avoid task watchdog timers to
|
|
16
|
-
expire while we are waiting to get an item from the iterator.
|
|
17
|
-
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
|
-
def __init__(
|
|
21
|
-
self,
|
|
22
|
-
async_iterable,
|
|
23
|
-
*,
|
|
24
|
-
manager: BaseTaskManager,
|
|
25
|
-
timeout: float = 2.0,
|
|
26
|
-
):
|
|
27
|
-
self._async_iterable = async_iterable
|
|
28
|
-
self._manager = manager
|
|
29
|
-
self._timeout = timeout
|
|
30
|
-
self._iter: Optional[AsyncIterator] = None
|
|
31
|
-
self._current_anext_task: Optional[asyncio.Task] = None
|
|
32
|
-
|
|
33
|
-
def __aiter__(self):
|
|
34
|
-
return self
|
|
35
|
-
|
|
36
|
-
async def __anext__(self):
|
|
37
|
-
if not self._iter:
|
|
38
|
-
self._iter = await self._ensure_async_iterator(self._async_iterable)
|
|
39
|
-
|
|
40
|
-
if self._manager.task_watchdog_enabled:
|
|
41
|
-
return await self._watchdog_anext()
|
|
42
|
-
else:
|
|
43
|
-
return await self._iter.__anext__()
|
|
44
|
-
|
|
45
|
-
async def _watchdog_anext(self):
|
|
46
|
-
while True:
|
|
47
|
-
try:
|
|
48
|
-
if not self._current_anext_task:
|
|
49
|
-
self._current_anext_task = asyncio.create_task(self._iter.__anext__())
|
|
50
|
-
|
|
51
|
-
item = await asyncio.wait_for(
|
|
52
|
-
asyncio.shield(self._current_anext_task),
|
|
53
|
-
timeout=self._timeout,
|
|
54
|
-
)
|
|
55
|
-
|
|
56
|
-
self._manager.task_reset_watchdog()
|
|
57
|
-
|
|
58
|
-
# The task has finish, so we will create a new one for th next item.
|
|
59
|
-
self._current_anext_task = None
|
|
60
|
-
|
|
61
|
-
return item
|
|
62
|
-
except asyncio.TimeoutError:
|
|
63
|
-
self._manager.task_reset_watchdog()
|
|
64
|
-
except StopAsyncIteration:
|
|
65
|
-
self._current_anext_task = None
|
|
66
|
-
raise
|
|
67
|
-
|
|
68
|
-
async def _ensure_async_iterator(self, obj) -> AsyncIterator:
|
|
69
|
-
aiter = obj.__aiter__()
|
|
70
|
-
if asyncio.iscoroutine(aiter):
|
|
71
|
-
aiter = await aiter
|
|
72
|
-
return aiter
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright (c) 2024–2025, Daily
|
|
3
|
-
#
|
|
4
|
-
# SPDX-License-Identifier: BSD 2-Clause License
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
import asyncio
|
|
8
|
-
|
|
9
|
-
from pipecat.utils.asyncio.task_manager import BaseTaskManager
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class WatchdogEvent(asyncio.Event):
|
|
13
|
-
"""An asynchronous event that resets the current task watchdog timer. This
|
|
14
|
-
is necessary to avoid task watchdog timers to expire while we are waiting on
|
|
15
|
-
the event.
|
|
16
|
-
|
|
17
|
-
"""
|
|
18
|
-
|
|
19
|
-
def __init__(
|
|
20
|
-
self,
|
|
21
|
-
manager: BaseTaskManager,
|
|
22
|
-
*,
|
|
23
|
-
timeout: float = 2.0,
|
|
24
|
-
) -> None:
|
|
25
|
-
super().__init__()
|
|
26
|
-
self._manager = manager
|
|
27
|
-
self._timeout = timeout
|
|
28
|
-
|
|
29
|
-
async def wait(self):
|
|
30
|
-
if self._manager.task_watchdog_enabled:
|
|
31
|
-
return await self._watchdog_wait()
|
|
32
|
-
else:
|
|
33
|
-
return await super().wait()
|
|
34
|
-
|
|
35
|
-
async def _watchdog_wait(self):
|
|
36
|
-
while True:
|
|
37
|
-
try:
|
|
38
|
-
await asyncio.wait_for(super().wait(), timeout=self._timeout)
|
|
39
|
-
self._manager.task_reset_watchdog()
|
|
40
|
-
return True
|
|
41
|
-
except asyncio.TimeoutError:
|
|
42
|
-
self._manager.task_reset_watchdog()
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright (c) 2024–2025, Daily
|
|
3
|
-
#
|
|
4
|
-
# SPDX-License-Identifier: BSD 2-Clause License
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
import asyncio
|
|
8
|
-
|
|
9
|
-
from pipecat.utils.asyncio.task_manager import BaseTaskManager
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class WatchdogPriorityQueue(asyncio.PriorityQueue):
|
|
13
|
-
"""An asynchronous priority queue that resets the current task watchdog
|
|
14
|
-
timer. This is necessary to avoid task watchdog timers to expire while we
|
|
15
|
-
are waiting to get an item from the queue.
|
|
16
|
-
|
|
17
|
-
"""
|
|
18
|
-
|
|
19
|
-
def __init__(
|
|
20
|
-
self,
|
|
21
|
-
manager: BaseTaskManager,
|
|
22
|
-
*,
|
|
23
|
-
maxsize: int = 0,
|
|
24
|
-
timeout: float = 2.0,
|
|
25
|
-
) -> None:
|
|
26
|
-
super().__init__(maxsize)
|
|
27
|
-
self._manager = manager
|
|
28
|
-
self._timeout = timeout
|
|
29
|
-
|
|
30
|
-
async def get(self):
|
|
31
|
-
if self._manager.task_watchdog_enabled:
|
|
32
|
-
return await self._watchdog_get()
|
|
33
|
-
else:
|
|
34
|
-
return await super().get()
|
|
35
|
-
|
|
36
|
-
def task_done(self):
|
|
37
|
-
if self._manager.task_watchdog_enabled:
|
|
38
|
-
self._manager.task_reset_watchdog()
|
|
39
|
-
super().task_done()
|
|
40
|
-
|
|
41
|
-
async def _watchdog_get(self):
|
|
42
|
-
while True:
|
|
43
|
-
try:
|
|
44
|
-
item = await asyncio.wait_for(super().get(), timeout=self._timeout)
|
|
45
|
-
self._manager.task_reset_watchdog()
|
|
46
|
-
return item
|
|
47
|
-
except asyncio.TimeoutError:
|
|
48
|
-
self._manager.task_reset_watchdog()
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Copyright (c) 2024–2025, Daily
|
|
3
|
-
#
|
|
4
|
-
# SPDX-License-Identifier: BSD 2-Clause License
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
import asyncio
|
|
8
|
-
|
|
9
|
-
from pipecat.utils.asyncio.task_manager import BaseTaskManager
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class WatchdogQueue(asyncio.Queue):
|
|
13
|
-
"""An asynchronous queue that resets the current task watchdog timer. This
|
|
14
|
-
is necessary to avoid task watchdog timers to expire while we are waiting to
|
|
15
|
-
get an item from the queue.
|
|
16
|
-
|
|
17
|
-
"""
|
|
18
|
-
|
|
19
|
-
def __init__(
|
|
20
|
-
self,
|
|
21
|
-
manager: BaseTaskManager,
|
|
22
|
-
*,
|
|
23
|
-
maxsize: int = 0,
|
|
24
|
-
timeout: float = 2.0,
|
|
25
|
-
) -> None:
|
|
26
|
-
super().__init__(maxsize)
|
|
27
|
-
self._manager = manager
|
|
28
|
-
self._timeout = timeout
|
|
29
|
-
|
|
30
|
-
async def get(self):
|
|
31
|
-
if self._manager.task_watchdog_enabled:
|
|
32
|
-
return await self._watchdog_get()
|
|
33
|
-
else:
|
|
34
|
-
return await super().get()
|
|
35
|
-
|
|
36
|
-
def task_done(self):
|
|
37
|
-
if self._manager.task_watchdog_enabled:
|
|
38
|
-
self._manager.task_reset_watchdog()
|
|
39
|
-
super().task_done()
|
|
40
|
-
|
|
41
|
-
async def _watchdog_get(self):
|
|
42
|
-
while True:
|
|
43
|
-
try:
|
|
44
|
-
item = await asyncio.wait_for(super().get(), timeout=self._timeout)
|
|
45
|
-
self._manager.task_reset_watchdog()
|
|
46
|
-
return item
|
|
47
|
-
except asyncio.TimeoutError:
|
|
48
|
-
self._manager.task_reset_watchdog()
|
|
File without changes
|
{dv_pipecat_ai-0.0.74.dev770.dist-info → dv_pipecat_ai-0.0.82.dev776.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{dv_pipecat_ai-0.0.74.dev770.dist-info → dv_pipecat_ai-0.0.82.dev776.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|