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
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
dv_pipecat_ai-0.0.82.dev776.dist-info/licenses/LICENSE,sha256=DWY2QGf2eMCFhuu2ChairtT6CB7BEFffNVhXWc4Od08,1301
|
|
2
|
+
pipecat/__init__.py,sha256=j0Xm6adxHhd7D06dIyyPV_GlBYLlBnTAERVvD_jAARQ,861
|
|
3
|
+
pipecat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
pipecat/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
pipecat/adapters/base_llm_adapter.py,sha256=vGg3HOMuXYrF7ysFRen9yaHhFuv4BjABDaF1SMDPWIY,1819
|
|
6
|
+
pipecat/adapters/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
pipecat/adapters/schemas/direct_function.py,sha256=v2E8eXd3vfbG_6V8U_T8j_PuFJdDhErGFLEWifb-PDQ,10398
|
|
8
|
+
pipecat/adapters/schemas/function_schema.py,sha256=ePXU6mmMTcLCh7Jn5hXpyn-Lc2G7rigjBLjnf1XOBBI,2590
|
|
9
|
+
pipecat/adapters/schemas/tools_schema.py,sha256=TLJ6l_JMt9l_6xTp9c64relYxmLd0nhSD0lGFaWNh44,3062
|
|
10
|
+
pipecat/adapters/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pipecat/adapters/services/anthropic_adapter.py,sha256=fowO85B6b4yL4WeeJLgTFuSq8mYO2oj1zzmqn-UFiBI,1802
|
|
12
|
+
pipecat/adapters/services/aws_nova_sonic_adapter.py,sha256=Equ0MzqvlFbQRDVjVsbCtvJVBbYsrIXOMLzBHX1r62c,1993
|
|
13
|
+
pipecat/adapters/services/bedrock_adapter.py,sha256=xvEuicBRKpMsKDyKi_2VCYd9l85W9NRST2mwWkMUsQM,1873
|
|
14
|
+
pipecat/adapters/services/gemini_adapter.py,sha256=PR-X28IAlzvwU4rMqOVbrq71H8SyNzDCwHe30BLVws0,1469
|
|
15
|
+
pipecat/adapters/services/open_ai_adapter.py,sha256=z3lTfnpNgp4E-ylR5DD68IHvvzTcEGYjNn9gHHFBQbw,1233
|
|
16
|
+
pipecat/adapters/services/open_ai_realtime_adapter.py,sha256=f-YGo85aOSkMPCMiVfmS1eiuwJd4ME3NuerGCPZOHII,1779
|
|
17
|
+
pipecat/audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
pipecat/audio/utils.py,sha256=Qdfe0FowUa3LJMgTje496XIKeOQk79N5Fw6WP_VQHCg,10625
|
|
19
|
+
pipecat/audio/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
pipecat/audio/filters/base_audio_filter.py,sha256=gVsDRRQwK7FUh7pVmh0p-x6mVBLT5yte1zIqLcWcPjY,2165
|
|
21
|
+
pipecat/audio/filters/koala_filter.py,sha256=KHruKNpQp12wmSjYVaIxvgSbcrDb0MalqugwtzaVSKQ,3680
|
|
22
|
+
pipecat/audio/filters/krisp_filter.py,sha256=EZ88cNnV7sfHWAy-97iCh2pi2MAxIDeitVbvfk0rFD4,4872
|
|
23
|
+
pipecat/audio/filters/noisereduce_filter.py,sha256=rWY4SDvz6hgEFjhSnr3PfdpgYAQj6NrE6XFWUgEOjuY,2699
|
|
24
|
+
pipecat/audio/filters/pyrnn_local_filter.py,sha256=m1AU6Zp-5aciXl4xWiLz6g9tVku2kHYgoIE65F1LTo0,7450
|
|
25
|
+
pipecat/audio/interruptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
+
pipecat/audio/interruptions/base_interruption_strategy.py,sha256=TxGQ2sB8T4_k-KJod8NYooEhZNRrlebmg0HMDiSxQKg,1781
|
|
27
|
+
pipecat/audio/interruptions/min_words_interruption_strategy.py,sha256=QW6fxE7dAS2ntLjqxnheTZi-rTIZ8J_QGKVeJjMXEUU,1780
|
|
28
|
+
pipecat/audio/mixers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
pipecat/audio/mixers/base_audio_mixer.py,sha256=4LtCZsyGqYc8MjNw0sNm1x0QYRn-hQIxavFJpMc6UD8,2349
|
|
30
|
+
pipecat/audio/mixers/soundfile_mixer.py,sha256=wLTCzELprAhVJD9RFSeQ2MzUbenQAPvlEWmDIzO9Fko,6806
|
|
31
|
+
pipecat/audio/resamplers/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
32
|
+
pipecat/audio/resamplers/base_audio_resampler.py,sha256=oaIUyi1B27qYIkpGbN_mV-b8k9xmVZtmTWY7NWLRhKU,1201
|
|
33
|
+
pipecat/audio/resamplers/resampy_resampler.py,sha256=fEZv6opn_9j50xYEOdwQiZOJQ_JlsPfZUtDLDU5sOFY,1551
|
|
34
|
+
pipecat/audio/resamplers/soxr_resampler.py,sha256=CXze7zf_ExlCcgcZp0oArRSbZ9zFpBzsCt2EQ_woKfM,1747
|
|
35
|
+
pipecat/audio/resamplers/soxr_stream_resampler.py,sha256=lHk1__M1HDGf25abpffuWEyqbd0ckNfyADDV_WmTPcY,3665
|
|
36
|
+
pipecat/audio/turn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
pipecat/audio/turn/base_turn_analyzer.py,sha256=hLOcH1WkP9iSk84boQv94RFYKEfEX-IHfO1y9pjkDzs,3213
|
|
38
|
+
pipecat/audio/turn/smart_turn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
+
pipecat/audio/turn/smart_turn/base_smart_turn.py,sha256=HgUoRfo9tbXVMfmRbYBkm4FDY1AjUJ3CRe7t48Ny2WI,9672
|
|
40
|
+
pipecat/audio/turn/smart_turn/fal_smart_turn.py,sha256=neahuTAY9SUQjacRYd19BERiuSHIMSpqzZ9uae_ZlWA,1606
|
|
41
|
+
pipecat/audio/turn/smart_turn/http_smart_turn.py,sha256=s5QP2gd0BqQAlbRJ7hGuCwGqgEENfyRm6aB6jBgDoqE,4642
|
|
42
|
+
pipecat/audio/turn/smart_turn/local_coreml_smart_turn.py,sha256=50kiBeZhnq7FZWZnzdSX8KUmhhQtkme0KH2rbiAJbCU,3140
|
|
43
|
+
pipecat/audio/turn/smart_turn/local_smart_turn.py,sha256=KVodqUTu8onfmfeOywgH98vBCNvBb-B3pvsQlTKyP_4,3570
|
|
44
|
+
pipecat/audio/turn/smart_turn/local_smart_turn_v2.py,sha256=aYLMDURpmYycQgKsxbNEENtUe5oujeQ9H3Lbi0GYmZA,7160
|
|
45
|
+
pipecat/audio/vad/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
+
pipecat/audio/vad/silero.py,sha256=r9UL8aEe-QoRMNDGWLUlgUYew93-QFojE9sIqLO0VYE,7792
|
|
47
|
+
pipecat/audio/vad/vad_analyzer.py,sha256=XkZLEe4z7Ja0lGoYZst1HNYqt5qOwG-vjsk_w8chiNA,7430
|
|
48
|
+
pipecat/audio/vad/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
pipecat/audio/vad/data/silero_vad.onnx,sha256=JiOilT9v89LB5hdAxs23FoEzR5smff7xFKSjzFvdeI8,2327524
|
|
50
|
+
pipecat/clocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
+
pipecat/clocks/base_clock.py,sha256=PuTmCtPKz5VG0VxhN5cyhbvduEBnfNPgA6GLAu1eSns,929
|
|
52
|
+
pipecat/clocks/system_clock.py,sha256=ht6TdDAn0JVXEmhLdt5igcHMQOkKO4YHNuOjuKcxkUU,1315
|
|
53
|
+
pipecat/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
pipecat/extensions/voicemail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
pipecat/extensions/voicemail/voicemail_detector.py,sha256=g3L1m3cPJzsadeB5a8WRC9klH0D8m7xfPgB2YEaL6Do,29983
|
|
56
|
+
pipecat/frames/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
pipecat/frames/frames.proto,sha256=JXZm3VXLR8zMOUcOuhVoe2mhM3MQIQGMJXLopdJO_5Y,839
|
|
58
|
+
pipecat/frames/frames.py,sha256=sG4qGDXzsy7buH-EReL6_K0hcwu3YUv3m6-cm3ajafQ,40736
|
|
59
|
+
pipecat/frames/protobufs/frames_pb2.py,sha256=VHgGV_W7qQ4sfQK6RHb5_DggLm3PiSYMr6aBZ8_p1cQ,2590
|
|
60
|
+
pipecat/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
+
pipecat/metrics/metrics.py,sha256=bdZNciEtLTtA-xgoKDz2RJAy6fKrXkTwz3pryVHzc2M,2713
|
|
62
|
+
pipecat/observers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
pipecat/observers/base_observer.py,sha256=z812gu9lrxtZlr_6oZhcH0NHqlV2cJ7k_B8UJRrm8TY,3459
|
|
64
|
+
pipecat/observers/turn_tracking_observer.py,sha256=quWp7iRi9KuqN3zuA0uCpiUYH0f6-HcYzYa16HYv6IA,8068
|
|
65
|
+
pipecat/observers/loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
pipecat/observers/loggers/debug_log_observer.py,sha256=XE0Xd_E8eSpbzn-oddZgRd89Dx3mrWbAzJAS3h-UM4o,7895
|
|
67
|
+
pipecat/observers/loggers/llm_log_observer.py,sha256=GMh08p_6xcaTFZRdM0xCd2ftHCD2QvJ29E0v65cmeIE,3246
|
|
68
|
+
pipecat/observers/loggers/transcription_log_observer.py,sha256=UJ33V_3lSn2bPyZlL30hHbMSpxAsO7b3Lf_8qCqL71U,2011
|
|
69
|
+
pipecat/observers/loggers/user_bot_latency_log_observer.py,sha256=nolAJ1WcfhL1IyiKzpuvlyEIaQEbxquKtuy_t_xFGD8,2673
|
|
70
|
+
pipecat/pipeline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
+
pipecat/pipeline/base_pipeline.py,sha256=JLIktUmF9lSDqd2Cyrlxr0FSk8DM7DRuv8doEKYNqY8,417
|
|
72
|
+
pipecat/pipeline/base_task.py,sha256=cnyD4wLtE5iQmLl8vG7oiXkx7AOLxhLzcSkDeC3pL-Q,2922
|
|
73
|
+
pipecat/pipeline/parallel_pipeline.py,sha256=imDeBLo_eUBzRvQdbUkoOetCGeOxnY5lh638K7DqY-Y,6514
|
|
74
|
+
pipecat/pipeline/pipeline.py,sha256=FVXHUwBch4D8MXQYrCE_So7e3gVxl-ELOLj1u_H_-8c,7560
|
|
75
|
+
pipecat/pipeline/runner.py,sha256=H8EudaQGZP3HF2EcpCwWW056WanmvkHeIq48bFHVsck,4473
|
|
76
|
+
pipecat/pipeline/sync_parallel_pipeline.py,sha256=dZ17GoY2q8cHwNr9zPOM-TdiC4ERe9oGEkMEV9-YDtI,10654
|
|
77
|
+
pipecat/pipeline/task.py,sha256=D8CWTqRHPX1F4xVtS0BCEQOau8QTcyX6PfIb7FGrsfA,32291
|
|
78
|
+
pipecat/pipeline/task_observer.py,sha256=Pml2IzvPD4z1gwYBV5SDi_w0D72j2g_KS7DUtU_gvHE,6609
|
|
79
|
+
pipecat/pipeline/to_be_updated/merge_pipeline.py,sha256=jLEWdufIW3z1xZhdoLowdJ_SGz018DQw8JYGwlBYvE4,1845
|
|
80
|
+
pipecat/processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
+
pipecat/processors/async_generator.py,sha256=qPOZxk5eOad_NrF_Z06vWZ6deXIxb9AKZKYO2e5pkJs,2385
|
|
82
|
+
pipecat/processors/consumer_processor.py,sha256=DrWCKnfblknZJ0bLmR_unIeJ1axQw4IPUn2IB3KLGGA,3228
|
|
83
|
+
pipecat/processors/dtmf_aggregator.py,sha256=KFR_EPOgLOvGFWaS5wh_RvJ5JYjfOeWhBfzG0XMpVZs,6947
|
|
84
|
+
pipecat/processors/frame_processor.py,sha256=rqhphMpcoXbsyLHPJnto0roPC7b0qjRhqBEikjiMzi8,29266
|
|
85
|
+
pipecat/processors/idle_frame_processor.py,sha256=z8AuhGap61lA5K35P6XCaOpn4kkmK_9NZNppbpQxheU,3124
|
|
86
|
+
pipecat/processors/logger.py,sha256=VGNwxQSc_F0rS3KBmfqas7f5aFyRQKfeljozOxfGXk4,2393
|
|
87
|
+
pipecat/processors/producer_processor.py,sha256=iIIOHZd77APvUGP7JqFbznAHUnCULcq_qYiSEjwXHcc,3265
|
|
88
|
+
pipecat/processors/text_transformer.py,sha256=LnfWJYzntJhZhrQ1lgSSY4D4VbHtrQJgrC227M69ZYU,1718
|
|
89
|
+
pipecat/processors/transcript_processor.py,sha256=CG9yej6WOiy_HhagNXjxkISHkHii0JDfK_V6opseC2E,11740
|
|
90
|
+
pipecat/processors/two_stage_user_idle_processor.py,sha256=uf2aZh_lfW-eMxmFogP3R4taAJ1yXOSqjKsR7oXtD0Y,2938
|
|
91
|
+
pipecat/processors/user_idle_processor.py,sha256=mGYv6UYxU7Qbgg4pTuGxDmZxnlyEtwMWaXtrQ9_fvaY,7969
|
|
92
|
+
pipecat/processors/aggregators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
+
pipecat/processors/aggregators/dtmf_aggregator.py,sha256=x2Q8hSFeh_O0B7D7umSV8CDMNduZG2jjBxa6miR-yiU,5308
|
|
94
|
+
pipecat/processors/aggregators/gated.py,sha256=tii0sRrBkRW6y9Xq5iTWPnqlOEejU4VqPIPtdOa61pc,3073
|
|
95
|
+
pipecat/processors/aggregators/gated_openai_llm_context.py,sha256=cr6MT8J6SpPzZbppKPOKe3_pt_5qXC9g6a4wvZDyrec,3005
|
|
96
|
+
pipecat/processors/aggregators/llm_response.py,sha256=Ki_xWxPda2N0HCg7eC0Z9Apa6sqxm97Jixc_y8fHw1c,46321
|
|
97
|
+
pipecat/processors/aggregators/openai_llm_context.py,sha256=82q67TsjoAPSESAjzHI5jE9Ffq7yiB3MRtxy71V2RGg,12984
|
|
98
|
+
pipecat/processors/aggregators/sentence.py,sha256=E7e3knfQl6HEGpYMKPklF1aO_gOn-rr7SnynErwfkQk,2235
|
|
99
|
+
pipecat/processors/aggregators/user_response.py,sha256=Jw_54IVZ47S_GU3P_SSU4L2l5J7AiehzU1L5JwiaRJo,1784
|
|
100
|
+
pipecat/processors/aggregators/vision_image_frame.py,sha256=ZG1NM91wrU-XRs8G5ColChbJY2a_xxfQZSiquUpHXeI,2163
|
|
101
|
+
pipecat/processors/audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
+
pipecat/processors/audio/audio_buffer_processor.py,sha256=SA7jZd9F9jlGUCjv9cnlCrKHn4QUS1oOiNdSXtlQko4,12916
|
|
103
|
+
pipecat/processors/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
pipecat/processors/filters/frame_filter.py,sha256=ZPtHToASfbbtwAdrnQH8POKIvT8hF00tUNvMhwSKmeQ,1758
|
|
105
|
+
pipecat/processors/filters/function_filter.py,sha256=QNQZBIe1gzSPNI_4Zg2fgyeUhX-AmbIMp7r_XWNhwjU,2400
|
|
106
|
+
pipecat/processors/filters/identity_filter.py,sha256=YNQWNNnuHivNwJa71Gc7A6ZHHq5Zw_kvuNrq9LUKK44,1418
|
|
107
|
+
pipecat/processors/filters/null_filter.py,sha256=CourFfNXyhaesksiBuXxv5-mFSDpy6e9bOJ04p3iK40,1467
|
|
108
|
+
pipecat/processors/filters/stt_mute_filter.py,sha256=GeNXUXMV2dV1Il_oOl80Rm73jEpFkdiJFG97E0Mu9fw,9418
|
|
109
|
+
pipecat/processors/filters/wake_check_filter.py,sha256=EKOuw_DCK4EWJ794xS8Xza-QQImD-pjgWYp0wdyvHjI,5099
|
|
110
|
+
pipecat/processors/filters/wake_notifier_filter.py,sha256=1yV3Tw8OROCS97nuZNs4igcNvRQyYu1RG2gNvYMWxKc,2077
|
|
111
|
+
pipecat/processors/frameworks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
+
pipecat/processors/frameworks/langchain.py,sha256=8MIbF1erctaylZ_xSgbFOXabmqZRKsmDGYSXEx-79eQ,3911
|
|
113
|
+
pipecat/processors/frameworks/rtvi.py,sha256=ywr25RsqXPlhRFGse9ODWHGe_C8cCIbo-vYzwi7jj9g,56927
|
|
114
|
+
pipecat/processors/gstreamer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
+
pipecat/processors/gstreamer/pipeline_source.py,sha256=eXckOY1rQeSBjSfLs8EFEkdlTZEq94osOTFWeNh6C4Y,9765
|
|
116
|
+
pipecat/processors/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
+
pipecat/processors/metrics/frame_processor_metrics.py,sha256=8X0qRbYqfr8YJoIjp5RKqDxHf8Vlt4OCWcIW9SYaiZo,6665
|
|
118
|
+
pipecat/processors/metrics/sentry.py,sha256=s5juzgXRYIgEILtGU7LLQbjvJ95zwP99EQ7vjcwHq78,4895
|
|
119
|
+
pipecat/runner/__init__.py,sha256=iJh4vFMGNQYi_ATVGXJDU4rOJwI-1Y6fmkyV18-ddAE,64
|
|
120
|
+
pipecat/runner/daily.py,sha256=gLt8CkaRSs3Mjf6KD11X2YuRE6PZTHYh3bCTHn_isfs,4170
|
|
121
|
+
pipecat/runner/livekit.py,sha256=in-2Io3FUZV-VcZZ-gQCx9L1WnKp5sHqmm7tDYlFNl4,4582
|
|
122
|
+
pipecat/runner/run.py,sha256=BuVI9-cpnQHOBxymkPoqpGaSaZImWZKLeu1g0JsvS8E,18818
|
|
123
|
+
pipecat/runner/types.py,sha256=iG9A1ox1ePXiEo2bWANsi6RxpGOb5n_Am5O3enbojBM,1599
|
|
124
|
+
pipecat/runner/utils.py,sha256=cT4G46skiIuZexm-KJ9ltrtufcGxPCAk7HW95rCy3tA,17724
|
|
125
|
+
pipecat/serializers/__init__.py,sha256=OV61GQX5ZVU7l7Dt7UTBdv2wUF7ZvtbCoXryo7nnoGY,734
|
|
126
|
+
pipecat/serializers/base_serializer.py,sha256=OyBUZccs2ZT9mfkBbq2tGsUJMvci6o-j90Cl1sicPaI,2030
|
|
127
|
+
pipecat/serializers/convox.py,sha256=MXCLhV6GMnoP8bI6-EVrObhrftEyTGOmzVeIU5ywmPo,9536
|
|
128
|
+
pipecat/serializers/exotel.py,sha256=LB4wYoXDjPmtkydrZ0G4H4u-SXpQw9KjyRzBZCYloEE,5907
|
|
129
|
+
pipecat/serializers/genesys.py,sha256=5g6_F-OIWSNmStgc6-bDT5mDQkCHHKxcOWSb-F4s2-A,3564
|
|
130
|
+
pipecat/serializers/livekit.py,sha256=caVZlVJGV-SmEXE_H7i3DRo1RvC9FgGCVqi8IYGrpEo,2552
|
|
131
|
+
pipecat/serializers/plivo.py,sha256=EXZZgwxQzhO61spRU98qveMskVnELuHCQg5piBO6tq0,9210
|
|
132
|
+
pipecat/serializers/protobuf.py,sha256=h0UgVvIa3LXxtpbeQUq0tCGicGbDHxjiY6EdxXJO0_s,5162
|
|
133
|
+
pipecat/serializers/telnyx.py,sha256=-zheaGI5dvXaWmXKIYMsjfv3G36fRc5HFEDXNyeiTSQ,10825
|
|
134
|
+
pipecat/serializers/twilio.py,sha256=WWQ11R9OcqoztUWamrMkaEB7pCKb5gKkHrioVSdfODU,9731
|
|
135
|
+
pipecat/services/__init__.py,sha256=B0B4BXpPNgYTf0orYxQvdhSyvtZwNj9Whqndgav4r4E,1205
|
|
136
|
+
pipecat/services/ai_service.py,sha256=mck03zv_-NZ39jhHR3hT_Qu5s6s_JzQ88lpiCtRV87w,5980
|
|
137
|
+
pipecat/services/ai_services.py,sha256=_RrDWfM8adV17atzY9RxK0nXRVM5kbUkKrvN90GAWYM,795
|
|
138
|
+
pipecat/services/image_service.py,sha256=tqJun4nYeyN_PaWqTdF_CFsOiqBf3XX7R4et5Y07mEU,2357
|
|
139
|
+
pipecat/services/llm_service.py,sha256=VUzdf9mP8P9hdKwi2P544vwZOJHzB8ExfTAaKYKcmm8,23704
|
|
140
|
+
pipecat/services/mcp_service.py,sha256=OYftGfdfGlDmjsWbF2b3CuMhPw8B1jcgaZUUYZPIA_o,14298
|
|
141
|
+
pipecat/services/openai.py,sha256=fg5-MIvwqgKTN6i5Kp7GD6XUvMRo3nlughuNt9QqLGA,27546
|
|
142
|
+
pipecat/services/stt_service.py,sha256=tShjVEl374j1Sc3qsdhTuWaT-8NJsAn-3yFw0XLRm4A,11163
|
|
143
|
+
pipecat/services/tts_service.py,sha256=WQZfK8o50XH11VDnaqKsOnk770K97pDHaezoASoX1r0,34380
|
|
144
|
+
pipecat/services/vision_service.py,sha256=dtI3U5RX30R6i97d6Rh7bVMqeh5ogWuwnM9j6djeXQ8,2519
|
|
145
|
+
pipecat/services/websocket_service.py,sha256=AWv7CL6G_XAh815xVaKNPpjP5escp8Q880SYHG7kCoI,5745
|
|
146
|
+
pipecat/services/anthropic/__init__.py,sha256=NfRQFoNZcUHsJA4mggeLalEmgM08TZdBjkRRjmyp6jE,261
|
|
147
|
+
pipecat/services/anthropic/llm.py,sha256=K5FJYkUpsgNpXWx8QRSwISQ9AdGVWPjeUVbXrhTPXs8,40380
|
|
148
|
+
pipecat/services/assemblyai/__init__.py,sha256=2gso9D1m2vigu0E1NuAYwKCQSvuHWk3UR_5-J8KhBVM,263
|
|
149
|
+
pipecat/services/assemblyai/models.py,sha256=7XFho7D4zhjThRXvDCjV8FBYoVlDbBb-88L0YaJ3JZo,3812
|
|
150
|
+
pipecat/services/assemblyai/stt.py,sha256=1xodklhxfXvHJi-S0oHim7VFuygu6jQ3tbiWbhycYtg,11580
|
|
151
|
+
pipecat/services/asyncai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
+
pipecat/services/asyncai/tts.py,sha256=fVoY05ZYlavGKx3EhSAUoPrVNedIif_wUJzZJcplsKA,16822
|
|
153
|
+
pipecat/services/aws/__init__.py,sha256=oCnvskCqC7mQpi-y3Pem-6OzJIuMMgHNUAgd3MfxD90,297
|
|
154
|
+
pipecat/services/aws/llm.py,sha256=VplgGhQbxryErZyOIthEsjFFxyjNgmMo-huCPqgXTUI,42860
|
|
155
|
+
pipecat/services/aws/stt.py,sha256=c-V1ud3I_lBflEuMncx67QBBH1hlQ2WP_KUiLM1NZt0,21235
|
|
156
|
+
pipecat/services/aws/tts.py,sha256=SFA4Qc4HhTiTGVi1hxtEsL5lP81RSPXStrBq1APUOn0,11625
|
|
157
|
+
pipecat/services/aws/utils.py,sha256=gw7H_C4PpPfm-cNuCthnArB03RqwF1_lxJAZJtojRuY,13905
|
|
158
|
+
pipecat/services/aws_nova_sonic/__init__.py,sha256=NxNyDI4MaTs9usTYBEjL5pZ6iJfMbKYajwJh3c2EVv4,48
|
|
159
|
+
pipecat/services/aws_nova_sonic/aws.py,sha256=oPJPd-wVdnrVMBAB3Ie0iArDDWnFiyLUnb8Zwf_qaJo,44511
|
|
160
|
+
pipecat/services/aws_nova_sonic/context.py,sha256=c5_m9YWEXxWXVS1nnCaYksDfPEsXga9LTWsuq1Mce2w,13067
|
|
161
|
+
pipecat/services/aws_nova_sonic/frames.py,sha256=IB399YEgmdd5n5IaCmRTJlvl6DCV9mZv7WABx_5LCRg,644
|
|
162
|
+
pipecat/services/aws_nova_sonic/ready.wav,sha256=pxdKxZtYRV2IVv63v7K1EPkxyV_OxocMkaXbKsHfby0,23484
|
|
163
|
+
pipecat/services/azure/__init__.py,sha256=mgnoJYeqKqwRvr18UZJhFZ2FTkGyob7r6IdtEiOeT3k,301
|
|
164
|
+
pipecat/services/azure/common.py,sha256=JKGDYYW1zpRaWy_l_5ZL6viHj2Ch-mKMoVx2gdCKpeo,9893
|
|
165
|
+
pipecat/services/azure/image.py,sha256=yP7_Uelz9gq2-nhRbjTNOJ6s-DrsjsGaqXPq-8Ud4q4,4191
|
|
166
|
+
pipecat/services/azure/llm.py,sha256=cdpLoOez4uRunZajR5mOOjwy6fEyrdQGQpC7BjETmU4,2292
|
|
167
|
+
pipecat/services/azure/stt.py,sha256=POhS5XTS-Z0SlKJDdGf18eR_5Nvbq0SnjG3R2xRcykg,12772
|
|
168
|
+
pipecat/services/azure/tts.py,sha256=ytgXcYvdVkshC30K88ZGbYFtK8SmSV22h9jQEYKf9ew,19233
|
|
169
|
+
pipecat/services/cartesia/__init__.py,sha256=vzh0jBnfPwWdxFfV-tu0x1HFoOTgr9s91GYmD-CJUtY,284
|
|
170
|
+
pipecat/services/cartesia/stt.py,sha256=mwGF_SOpo021q2y5tpwNgR78DOOqPXrygWgSoBnfd-M,12187
|
|
171
|
+
pipecat/services/cartesia/tts.py,sha256=xiHzvmXJxy8KVk2oGiyfHI1C6-r0z75WEjQjthFtZck,23612
|
|
172
|
+
pipecat/services/cerebras/__init__.py,sha256=5zBmqq9Zfcl-HC7ylekVS5qrRedbl1mAeEwUT-T-c_o,259
|
|
173
|
+
pipecat/services/cerebras/llm.py,sha256=PwJUwi3VNXq3-xDkC9xyLaE4LatSzwy8L9PZpEUsAe8,2892
|
|
174
|
+
pipecat/services/deepgram/__init__.py,sha256=cOnxjla0rhsRdpC_UWoN8mXaX3kL3hFlnp9OjDeuC7I,284
|
|
175
|
+
pipecat/services/deepgram/stt.py,sha256=o_C28Vjee2va60wp0lFw2DpkzatbzMABPY1LoSxFTuA,13111
|
|
176
|
+
pipecat/services/deepgram/tts.py,sha256=H_2WCJEx3_L4ytrHHRNkA-6GKTd1coou_vvTfiEodpQ,3745
|
|
177
|
+
pipecat/services/deepseek/__init__.py,sha256=bU5z_oNGzgrF_YpsD9pYIMtEibeZFaUobbRjJ9WcYyE,259
|
|
178
|
+
pipecat/services/deepseek/llm.py,sha256=adxmC1pOVGWwPnDxAaBhQqiXOH5iDvfzGAl3Jdc-HUI,2955
|
|
179
|
+
pipecat/services/elevenlabs/__init__.py,sha256=FgA--iiHyoart9xZZGWTTrBaEjmFxJuugESjPXihI7A,263
|
|
180
|
+
pipecat/services/elevenlabs/tts.py,sha256=RZ9thg_kFWk1xhfmW047Pk0FjtWdkgnRMiGYFv3_cWk,42777
|
|
181
|
+
pipecat/services/fal/__init__.py,sha256=z_kfZETvUcKy68Lyvni4B-RtdkOvz3J3eh6sFDVKq6M,278
|
|
182
|
+
pipecat/services/fal/image.py,sha256=vArKLKrIGoZfw_xeZY_E7zbUzfzVsScj-R7mOmVqjRQ,4585
|
|
183
|
+
pipecat/services/fal/stt.py,sha256=-5tw7N8srBJTS0Q65SN4csmLkIB6cLHR9pXKimxg55o,9678
|
|
184
|
+
pipecat/services/fireworks/__init__.py,sha256=-YCe9iOzvUmbNSQOtpbzG6xMxT69KTIC1oqgAVoykQ8,261
|
|
185
|
+
pipecat/services/fireworks/llm.py,sha256=6pvd1jwH9VfoTSdrYAKm1c6AIm8dInOItTqEm2yRdqA,2996
|
|
186
|
+
pipecat/services/fish/__init__.py,sha256=zXTvCM-fv0baT3uSV3FSGMyQKmNFDfj_Ka24LodPyHc,251
|
|
187
|
+
pipecat/services/fish/tts.py,sha256=wZUp-QnrMMa7Y40JqwoADSVrUtkKw4l8RGMmkwzcwTg,11853
|
|
188
|
+
pipecat/services/gemini_multimodal_live/__init__.py,sha256=dcl6OwNkW6ZjpgCvUeRu-W3n2pZ-89TUA-flpSrgnbs,87
|
|
189
|
+
pipecat/services/gemini_multimodal_live/events.py,sha256=Srpqr3wVeE1aeprgY1CGseDUAkiia1HB-D2sP2tj3Tc,15088
|
|
190
|
+
pipecat/services/gemini_multimodal_live/file_api.py,sha256=w7_tpZ9hoZlxdZNAv1lbvxsto5mJzTJU5_1ioMyvUsQ,7162
|
|
191
|
+
pipecat/services/gemini_multimodal_live/gemini.py,sha256=mczfX38G1ReHKbe3WdN0BFUf8RKkzzgTyD1zEJVOqhI,54871
|
|
192
|
+
pipecat/services/gladia/__init__.py,sha256=RhyPSWKluyK0keEVAOfHffTAhWo5hmytozf4a17p954,255
|
|
193
|
+
pipecat/services/gladia/config.py,sha256=DFR8LOy9daWhb6UWGi8Zt0lufAjlOi3P5j9zIllR2q4,6676
|
|
194
|
+
pipecat/services/gladia/stt.py,sha256=J22GaH0PNgi86HtblRVEj79uU55RB-ltC58EjKx82OI,25118
|
|
195
|
+
pipecat/services/google/__init__.py,sha256=6cH89Hqf5NVIqW4tvILdssxvJFQe7vYc2FYTuwEW5xg,464
|
|
196
|
+
pipecat/services/google/frames.py,sha256=_HHljqYg7x0wh6nTRLqKaavThuMxkKFsDeLAFgVutmU,2277
|
|
197
|
+
pipecat/services/google/google.py,sha256=D_GWyJQxnJmJ0sM8SLwcxom5e8snF3W3IhsEjTM7Uqg,507
|
|
198
|
+
pipecat/services/google/image.py,sha256=LQYIctDIB31udYvk3meC9EXTY7VDdWb_veCTFEltTRU,4674
|
|
199
|
+
pipecat/services/google/llm.py,sha256=FKGn5aJp845ngQscndkEYyOjdLU8wAToVEkbUh0_Mxc,35831
|
|
200
|
+
pipecat/services/google/llm_openai.py,sha256=p_aQYpX1e_ffO63oo0cDyj8ZYWb2CO3N-IiFb_Am00A,6869
|
|
201
|
+
pipecat/services/google/llm_vertex.py,sha256=yqs8pqUCTgRj5wvQFHPJbGduoIaXjaqPym5x-lh5LhI,5032
|
|
202
|
+
pipecat/services/google/rtvi.py,sha256=PZb1yVny5YG7_XmJRXPzs3iYapeQ4XHreFN1v6KwTGM,3014
|
|
203
|
+
pipecat/services/google/stt.py,sha256=1vKZNEKZ-KLKp_7lA_VijznSqTwYRFYK1sDn2qteKtI,32814
|
|
204
|
+
pipecat/services/google/test-google-chirp.py,sha256=ji6ta7WDgKMu9yeKovuIVRlcMuk8S6XIyzIokHQY80E,1437
|
|
205
|
+
pipecat/services/google/tts.py,sha256=S_JSPqzLABfuyHLRppNiDmq2g9OFcnJOrfysVg3OHbY,32038
|
|
206
|
+
pipecat/services/grok/__init__.py,sha256=PyaTSnqwxd8jdF5aFTe3lWM-TBhfDyUu9ahRl6nPS-4,251
|
|
207
|
+
pipecat/services/grok/llm.py,sha256=xsJWXqJApfQgEt6z_8U44qUCQJMcpgEdpOHN-u0tNAQ,7330
|
|
208
|
+
pipecat/services/groq/__init__.py,sha256=jelL30bti_CbU6-1bZUTfJxACLi4h9HfMlpSV09aAQY,299
|
|
209
|
+
pipecat/services/groq/llm.py,sha256=1XB-R7NmlqVp_xUHzAfP_nIEnGYVYR_gR2tVrWmMWAA,1829
|
|
210
|
+
pipecat/services/groq/stt.py,sha256=1yWW7b4f6YKdD2dYXmoSJrTgwyYrRsKw9_XnU3Of7wU,2435
|
|
211
|
+
pipecat/services/groq/tts.py,sha256=zZMb1M8fSNiHmBFqNUKWabmzSyLuI-Dx3yXGKgOvAMk,4767
|
|
212
|
+
pipecat/services/hamsa/__init__.py,sha256=7obAD81uHdFzPA2boDaN1LmbhAtBciI5_QFC_I1oB-M,153
|
|
213
|
+
pipecat/services/hamsa/stt.py,sha256=94S1D1cVA8vwovkkcmeao1oUWzVtTmEBYOcJwBGy9H4,8240
|
|
214
|
+
pipecat/services/heygen/__init__.py,sha256=Jgq1fqrZVkpWC21D79L1cn5Ub8PnYgnnCaqC5pOlbIc,89
|
|
215
|
+
pipecat/services/heygen/api.py,sha256=N6ecg6S_iWG29X12yGYX7kjhGYb2J6NlsVsJGWEXm-A,9367
|
|
216
|
+
pipecat/services/heygen/client.py,sha256=2oNM_WJE_aHwXk6j56rGrA0sHhC006x19JxePGW1xpk,25312
|
|
217
|
+
pipecat/services/heygen/video.py,sha256=fq4M9WJR5xgBK1mi2Si9nZxAUkqr5pWcthot4Klo62k,13129
|
|
218
|
+
pipecat/services/inworld/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
219
|
+
pipecat/services/inworld/tts.py,sha256=YkutLqQ22EMQ_c72n_7P1UmuTifjaT4q4u1avhQED9E,26908
|
|
220
|
+
pipecat/services/lmnt/__init__.py,sha256=wb1p5pg2fAvA5fupVFoHqAEig8OlnHHzi6RjgT4smhs,251
|
|
221
|
+
pipecat/services/lmnt/tts.py,sha256=zaG-IVJ76WhV0Wg8Kfmq_b4JBmRc4IW2498_Cn03kfE,10682
|
|
222
|
+
pipecat/services/mem0/__init__.py,sha256=IF5kd9cSXnZzS6kyoH_5sMy0j9NiPFYIPlIaVkGBgI8,257
|
|
223
|
+
pipecat/services/mem0/memory.py,sha256=95zJr8iFLusDVMbsNEITHdwwz1KWaBs8Uuqrh6YgqZs,10504
|
|
224
|
+
pipecat/services/minimax/__init__.py,sha256=rfHd18ccf-oCytmkKFSyZ1tV-FWglM1D-iKNkA2_sxc,110
|
|
225
|
+
pipecat/services/minimax/tts.py,sha256=AmYOJWJncp1G-k48dUDXiEcsu9ZHJHVuMovfLQGBstk,12812
|
|
226
|
+
pipecat/services/mistral/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
227
|
+
pipecat/services/mistral/llm.py,sha256=T_JtyUofL6sgdlE0OTh2VyCX3YO7LitcUephIJtZPbk,7337
|
|
228
|
+
pipecat/services/moondream/__init__.py,sha256=FBRSr8-vXhD7YyXcqOfjX7VFq3XcujwX3kp_MOs9vzg,267
|
|
229
|
+
pipecat/services/moondream/vision.py,sha256=4-IBnSbc_Y35gf4elIT3ZzcYBmZ7tLVZya6dLu-uP-s,4250
|
|
230
|
+
pipecat/services/neuphonic/__init__.py,sha256=31acn0fpeH6Zfan6kKDy4SVa9NXyeHjBl5DSZSYNRTs,261
|
|
231
|
+
pipecat/services/neuphonic/tts.py,sha256=GoYGN77pKc7ZuOp4SQ9B44A3Wz95uhXcOHkm_i8v7tY,20354
|
|
232
|
+
pipecat/services/nim/__init__.py,sha256=bRubOujNmtaBTSBgd3BBXP5fClzbn09ajYPmmYZsJpA,249
|
|
233
|
+
pipecat/services/nim/llm.py,sha256=p6rnaKb5x49x63JC0K095-SlrPaIYBDMPtWSFbMn1gY,4348
|
|
234
|
+
pipecat/services/ollama/__init__.py,sha256=aw-25zYsR8LR74OFFlMKMTnJjaKwOzdPWVsClueNRkI,255
|
|
235
|
+
pipecat/services/ollama/llm.py,sha256=rfpG92LRHGJlpENKhF6ld8CLVS9DxlKW-WRVNldOIGs,1605
|
|
236
|
+
pipecat/services/openai/__init__.py,sha256=A7_P9FgSIRzkFsmFVC22I3JfYZk3rtVCrzAkt-hSNGk,330
|
|
237
|
+
pipecat/services/openai/base_llm.py,sha256=R-NVc4X-bYlfbcjIiJSocQIazJAj3a60qZxlbPUo5OY,16124
|
|
238
|
+
pipecat/services/openai/image.py,sha256=H1ioqh0qBKNcFS8GdgyKw90DAm7Jh2CWDlXZCID6IXo,2893
|
|
239
|
+
pipecat/services/openai/llm.py,sha256=_aKtz1VebSFUUenT3tH6mBW9pSCm65_u45cDu_dkTzs,7396
|
|
240
|
+
pipecat/services/openai/stt.py,sha256=Idf0k73kxFyDgNRBt62MFpoKKNsBV9bwvJteJ6MGWzQ,2419
|
|
241
|
+
pipecat/services/openai/tts.py,sha256=W0ot5rB8K6LfVYBdOl8Yalx0NAa_R2JaBTAanPX6vzQ,5753
|
|
242
|
+
pipecat/services/openai_realtime_beta/__init__.py,sha256=heX2ztWOmOE3HvI8ooEAccghOs1HzXL0j9DaPaH_86w,248
|
|
243
|
+
pipecat/services/openai_realtime_beta/azure.py,sha256=BuZRQ4dKT139zAWjlwVqa8XbMsjT7sp_PgkG883uvn8,2442
|
|
244
|
+
pipecat/services/openai_realtime_beta/context.py,sha256=pV1GO-ylQqyATVnfYOa4pSR2-QXpvQfSCuRRETVtmE0,10799
|
|
245
|
+
pipecat/services/openai_realtime_beta/events.py,sha256=ipltnxRrpJbZ3zGhdXvA5F5xRbtx4-UZJUBJAxQBkWU,30516
|
|
246
|
+
pipecat/services/openai_realtime_beta/frames.py,sha256=dQrGu5FErvozPvlyvDADj8_ZiG8bclYAc2jQt5NE6aE,942
|
|
247
|
+
pipecat/services/openai_realtime_beta/openai.py,sha256=FgXuoclcmEh7GLwaF08z4-0mNdabHNw1t_bO93PZsS8,32410
|
|
248
|
+
pipecat/services/openpipe/__init__.py,sha256=skCnH03aR4OvAuTOD4zoQWrRseC6Fi0AljZwv6EUUQM,259
|
|
249
|
+
pipecat/services/openpipe/llm.py,sha256=M0aKtJop833a-Q955eAb1-V9v5_47sp7uM8kGGs7Ge4,3974
|
|
250
|
+
pipecat/services/openrouter/__init__.py,sha256=TEyNHtRkoRt6qse4jBNVEPKXCkqmT-xtQ0XB-zFe_jE,263
|
|
251
|
+
pipecat/services/openrouter/llm.py,sha256=4_YrBbotynRw9BBXc2OD9KrHoC5fF90_q1cCxTNGtMg,2165
|
|
252
|
+
pipecat/services/perplexity/__init__.py,sha256=Qf0gyJWhkk7D0ehYf24vwtalOrcrp98aGaj5XuApdsA,263
|
|
253
|
+
pipecat/services/perplexity/llm.py,sha256=n2pCVFpQZDCBG5SpvkxFWElHfTfG8XlsO2m0ihmryd8,5404
|
|
254
|
+
pipecat/services/piper/__init__.py,sha256=BNqnIk6pG2DVvJ0uI2ZB93M3uXX_0B1ByfO7dnKjsBY,253
|
|
255
|
+
pipecat/services/piper/tts.py,sha256=WURnz54hTaoHHoc2cJTTQe9yV3jSoQlM25J-Ozj0O24,3992
|
|
256
|
+
pipecat/services/playht/__init__.py,sha256=Ko1WjLQtTaHvZAgCuONeRkkXRbrCuRx53C296VLa2YY,255
|
|
257
|
+
pipecat/services/playht/tts.py,sha256=lMX65M0SsUk7Jrmmq3LzSRkv-QSmK6bARFepXg1_RLY,21931
|
|
258
|
+
pipecat/services/qwen/__init__.py,sha256=gS81Y-9gy_ke17m-2Tt-8mDrawcFNZ15_i0OnT-HYyg,251
|
|
259
|
+
pipecat/services/qwen/llm.py,sha256=X6GOaoKBmQzEI8n-GO2bu4AFdhNFXt6wf7DMMwJ0QFo,1969
|
|
260
|
+
pipecat/services/rime/__init__.py,sha256=lK26ZYuDZS51OybSVPAx6rt710UA1ZBP31wPL1_VeLg,251
|
|
261
|
+
pipecat/services/rime/tts.py,sha256=EE8E9wVeWPSNDcjWNHqOy2og4Ay3J3CWRmg0mdsIBZk,20810
|
|
262
|
+
pipecat/services/riva/__init__.py,sha256=rObSsj504O_TMXhPBg_ymqKslZBhovlR-A0aaRZ0O6A,276
|
|
263
|
+
pipecat/services/riva/stt.py,sha256=dtg8toijmexWB3uipw0EQ7ov3DFgHj40kFFv1Zadmmc,25116
|
|
264
|
+
pipecat/services/riva/tts.py,sha256=idbqx3I2NlWCXtrIFsjEaYapxA3BLIA14ai3aMBh-2w,8158
|
|
265
|
+
pipecat/services/sambanova/__init__.py,sha256=oTXExLic-qTcsfsiWmssf3Elclf3IIWoN41_2IpoF18,128
|
|
266
|
+
pipecat/services/sambanova/llm.py,sha256=55LvI38ofvlgwkRFflZHbT1MMV5fGRjJHbHXfZmMrhY,8752
|
|
267
|
+
pipecat/services/sambanova/stt.py,sha256=ZZgEZ7WQjLFHbCko-3LNTtVajjtfUvbtVLtFcaNadVQ,2536
|
|
268
|
+
pipecat/services/sarvam/__init__.py,sha256=rfHd18ccf-oCytmkKFSyZ1tV-FWglM1D-iKNkA2_sxc,110
|
|
269
|
+
pipecat/services/sarvam/tts.py,sha256=gbDNGwMN-88Mp8tuwoKsDFqaVNBrSzlsuKfU59v4VTk,8279
|
|
270
|
+
pipecat/services/simli/__init__.py,sha256=cbDcqOaGsEgKbGYKpJ1Vv7LN4ZjOWA04sE84WW5vgQI,257
|
|
271
|
+
pipecat/services/simli/video.py,sha256=fVMYsCE5epH9rTdhN_tyPPJw7W6TCMHCOe2akKHWduw,8330
|
|
272
|
+
pipecat/services/soniox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
273
|
+
pipecat/services/soniox/stt.py,sha256=AhJF2YOzmqgB80x22jocgzr3neYCBMyxzP_WjkYR9Gc,15441
|
|
274
|
+
pipecat/services/speechmatics/__init__.py,sha256=Jgq1fqrZVkpWC21D79L1cn5Ub8PnYgnnCaqC5pOlbIc,89
|
|
275
|
+
pipecat/services/speechmatics/stt.py,sha256=8xXIBBSXm74TSX2kp3mn66gvGKRLeb8w2cP_bDXXOeA,44259
|
|
276
|
+
pipecat/services/tavus/__init__.py,sha256=SNyyi2Xq6tXIihDG2Bwvmg6Srbd-uWd1RwG-NKWcPuI,257
|
|
277
|
+
pipecat/services/tavus/video.py,sha256=3HYQd1InYgx-Yaq-xpF3sdkM7lS2AM9Cnd_0PzSbFc0,10713
|
|
278
|
+
pipecat/services/together/__init__.py,sha256=hNMycJDDf3CLiL9WA9fwvMdYphyDWLv0OabYIMgvC1c,259
|
|
279
|
+
pipecat/services/together/llm.py,sha256=VSayO-U6g9Ld0xK9CXRQPUsd5gWJKtiA8qDAyXgsSkE,1958
|
|
280
|
+
pipecat/services/ultravox/__init__.py,sha256=EoHCSXI2o0DFQslELgkhAGZtxDj63gZi-9ZEhXljaKE,259
|
|
281
|
+
pipecat/services/ultravox/stt.py,sha256=uCQm_-LbycXdXRV6IE1a6Mymis6tyww7V8PnPzAQtx8,16586
|
|
282
|
+
pipecat/services/whisper/__init__.py,sha256=smADmw0Fv98k7cGRuHTEcljKTO2WdZqLpJd0qsTCwH8,281
|
|
283
|
+
pipecat/services/whisper/base_stt.py,sha256=VhslESPnYIeVbmnQTzmlZPV35TH49duxYTvJe0epNnE,7850
|
|
284
|
+
pipecat/services/whisper/stt.py,sha256=9Qd56vWMzg3LtHikQnfgyMtl4odE6BCHDbpAn3HSWjw,17480
|
|
285
|
+
pipecat/services/xtts/__init__.py,sha256=OqUC2dRdFZnu0bvk5DmOBYTpPMNog-XC1OlL91r9teE,251
|
|
286
|
+
pipecat/services/xtts/tts.py,sha256=ul7c5dzTsUB1m6O5t46rh9VaxtkDTGMKSKcYwbaWecg,8401
|
|
287
|
+
pipecat/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
|
+
pipecat/sync/base_notifier.py,sha256=Tt9gJGZ8rXi0PFYedadAPN599UT0MVIFBHNXpjIlH6g,906
|
|
289
|
+
pipecat/sync/event_notifier.py,sha256=h50fC-RBGaGldWZx_wpgOmMIwJiq0PeNwQq5GPmfRR0,1284
|
|
290
|
+
pipecat/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
291
|
+
pipecat/tests/utils.py,sha256=iqGJLNpwIJVZL0urG9GXZI3UJoaPDKsUCqWGa8ibOOU,7902
|
|
292
|
+
pipecat/transcriptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
|
+
pipecat/transcriptions/language.py,sha256=cVZH5gMvV8C3TjQzdsUPWx9q7QE11mcLBol_qFdypBU,7807
|
|
294
|
+
pipecat/transports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
295
|
+
pipecat/transports/base_input.py,sha256=T9eFTJqW0ybLvbKdJPnWilcUvCKqjstIppY4q73IY4Q,20493
|
|
296
|
+
pipecat/transports/base_output.py,sha256=C1pnsUbMyG6ZkArV-Sv5LVqo4MB9wgp8f7WnDt6oFjA,33737
|
|
297
|
+
pipecat/transports/base_transport.py,sha256=JlNiH0DysTfr6azwHauJqY_Z9HJC702O29Q0qrsLrg4,7530
|
|
298
|
+
pipecat/transports/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
+
pipecat/transports/local/audio.py,sha256=U-g35RSZpZV0fOFrmRXAj_Y3gKHRc6SDhKaZv1q-4u0,7447
|
|
300
|
+
pipecat/transports/local/tk.py,sha256=TXHuoytbGbpSPEaIl-lt421ZSFbL0ulowfQFqh8bhNE,9072
|
|
301
|
+
pipecat/transports/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
|
+
pipecat/transports/network/fastapi_websocket.py,sha256=WtgR2O1OV3TZv9kqymF4Sy8_DESQGbH4Bc3GATShDzg,19676
|
|
303
|
+
pipecat/transports/network/small_webrtc.py,sha256=IDFVtAVWRn_0Apb78_HpOMHqaC_hs377XrY8h4AT5AE,34434
|
|
304
|
+
pipecat/transports/network/webrtc_connection.py,sha256=rg4F1MkTndd7eFuWht7JhZll5VNYFimLYNFfVSUnSTo,24354
|
|
305
|
+
pipecat/transports/network/websocket_client.py,sha256=EgoGjrmUTUP7MiY5S3KVzrbrxrfSENsv9E_wm9zDlho,16798
|
|
306
|
+
pipecat/transports/network/websocket_server.py,sha256=jNA9jsMGEkmusK4lVij1-dSZD-ihQjn7fB1H_Hl4BMY,18191
|
|
307
|
+
pipecat/transports/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
308
|
+
pipecat/transports/services/daily.py,sha256=Skyx7NjhBr-buHkYllPnt1E7Tlig4O5GKDzQC2_C914,84964
|
|
309
|
+
pipecat/transports/services/livekit.py,sha256=8xoS4dQ3PVCLZBS-3aXl9C7c8CqPhCUP_kBCJ0y-JH0,36292
|
|
310
|
+
pipecat/transports/services/tavus.py,sha256=0MrmEsD1R9S-dd1rSdVGe5XPuwu47EK9i2fK2peWHPI,28227
|
|
311
|
+
pipecat/transports/services/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
312
|
+
pipecat/transports/services/helpers/daily_rest.py,sha256=kk5Iek5wXrO4XqLNu4yei0Ra4IyhhaNTdEYYXg4gZN4,14641
|
|
313
|
+
pipecat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
|
+
pipecat/utils/base_object.py,sha256=62e5_0R_rcQe-JdzUM0h1wtv1okw-0LPyG78ZKkDyzE,5963
|
|
315
|
+
pipecat/utils/logger_config.py,sha256=5-RmvReZIINeqSXz3ALhEIiMZ_azmpOxnlIkdyCjWWk,5606
|
|
316
|
+
pipecat/utils/network.py,sha256=RRQ7MmTcbeXBJ2aY5UbMCQ6elm5B8Rxkn8XqkJ9S0Nc,825
|
|
317
|
+
pipecat/utils/string.py,sha256=TskK9KxQSwbljct0J6y9ffkRcx4xYjTtPhFjEL4M1i8,6720
|
|
318
|
+
pipecat/utils/time.py,sha256=lirjh24suz9EI1pf2kYwvAYb3I-13U_rJ_ZRg3nRiGs,1741
|
|
319
|
+
pipecat/utils/utils.py,sha256=T2y1Mcd9yWiZiIToUiRkhW-n7EFf8juk3kWX3TF8XOQ,2451
|
|
320
|
+
pipecat/utils/asyncio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
|
+
pipecat/utils/asyncio/task_manager.py,sha256=9RTUBW7Ea2l4RT_8LseKSt6L6dCU6R0kESIv3WAJgi4,7605
|
|
322
|
+
pipecat/utils/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
|
+
pipecat/utils/text/base_text_aggregator.py,sha256=xOiaFb4WDAZYw49vPuhftlfKOn80L_74dHLwf4BZgqU,3101
|
|
324
|
+
pipecat/utils/text/base_text_filter.py,sha256=7Kmlfkj2TFDbb9TFEPytm2U7tslPctp7M7zRxEhvs58,2336
|
|
325
|
+
pipecat/utils/text/markdown_text_filter.py,sha256=6--uhmIxnkqmIw7rXYd4-ut4FKUl5f98wLWxSAvw1_8,9891
|
|
326
|
+
pipecat/utils/text/pattern_pair_aggregator.py,sha256=-9S-5JTAOlnN1eoR_0LBw0jN4QhuVxxQFYLLn0bnulo,9690
|
|
327
|
+
pipecat/utils/text/simple_text_aggregator.py,sha256=7rf6FE55C9WKKtuuY1jKTEYKe-nve79KxD5v0nKqOzk,2582
|
|
328
|
+
pipecat/utils/text/skip_tags_aggregator.py,sha256=Bhitm9cQeR9fUwyuy3VdLd4hlkxl-8T0s4dQg4yTfFw,3680
|
|
329
|
+
pipecat/utils/tracing/__init__.py,sha256=nxmGDaJlpvrsxDnZZb3ApBDcTdZejoTIwF06sN0ULV0,141
|
|
330
|
+
pipecat/utils/tracing/class_decorators.py,sha256=QMfL0pz325CTpSjDPeqO5lNDfqk2vBFsMIAyEG9Ec84,7965
|
|
331
|
+
pipecat/utils/tracing/conversation_context_provider.py,sha256=3NUWjX3KVHS3QTIwn8rXyz0vjQiqIOIqVLfipBpVRco,3604
|
|
332
|
+
pipecat/utils/tracing/service_attributes.py,sha256=nDalruwTN-qw716Gn2ldXBv0j8bfThoGZgvF7TACEos,17148
|
|
333
|
+
pipecat/utils/tracing/service_decorators.py,sha256=HwDCqLGijhYD3F8nxDuQmEw-YkRw0BQlSGlDNMHivwM,50514
|
|
334
|
+
pipecat/utils/tracing/setup.py,sha256=7TEgPNpq6M8lww8OQvf0P9FzYc5A30xICGklVA-fua0,2892
|
|
335
|
+
pipecat/utils/tracing/turn_context_provider.py,sha256=ikon3plFOx0XbMrH6DdeHttNpb-U0gzMZIm3bWLc9eI,2485
|
|
336
|
+
pipecat/utils/tracing/turn_trace_observer.py,sha256=dma16SBJpYSOE58YDWy89QzHyQFc_9gQZszKeWixuwc,9725
|
|
337
|
+
dv_pipecat_ai-0.0.82.dev776.dist-info/METADATA,sha256=VJAth6kEBgJT2SJHJ5KnMorgpHZvF6ZMg6Uqc65CL-Q,32457
|
|
338
|
+
dv_pipecat_ai-0.0.82.dev776.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
339
|
+
dv_pipecat_ai-0.0.82.dev776.dist-info/top_level.txt,sha256=kQzG20CxGf-nSsHmtXHx3hY2-8zHA3jYg8jk0TajqXc,8
|
|
340
|
+
dv_pipecat_ai-0.0.82.dev776.dist-info/RECORD,,
|
pipecat/__init__.py
CHANGED
|
@@ -12,3 +12,20 @@ from loguru import logger
|
|
|
12
12
|
__version__ = version("dv-pipecat-ai")
|
|
13
13
|
|
|
14
14
|
logger.info(f"ᓚᘏᗢ Pipecat {__version__} (Python {sys.version}) ᓚᘏᗢ")
|
|
15
|
+
|
|
16
|
+
# We replace `asyncio.wait_for()` for `wait_for2.wait_for()` for Python < 3.12.
|
|
17
|
+
#
|
|
18
|
+
# In Python 3.12, `asyncio.wait_for()` is implemented in terms of
|
|
19
|
+
# `asyncio.timeout()` which fixed a bunch of issues. However, this was never
|
|
20
|
+
# backported (because of the lack of `async.timeout()`) and there are still many
|
|
21
|
+
# remainig issues, specially in Python 3.10, in `async.wait_for()`.
|
|
22
|
+
#
|
|
23
|
+
# See https://github.com/python/cpython/pull/98518
|
|
24
|
+
|
|
25
|
+
import asyncio
|
|
26
|
+
|
|
27
|
+
if sys.version_info < (3, 12):
|
|
28
|
+
import wait_for2
|
|
29
|
+
|
|
30
|
+
# Replace asyncio.wait_for.
|
|
31
|
+
asyncio.wait_for = wait_for2.wait_for
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright (c) 2024–2025, Daily
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: BSD 2-Clause License
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
"""Base adapter for LLM provider integration.
|
|
8
|
+
|
|
9
|
+
This module provides the abstract base class for implementing LLM provider-specific
|
|
10
|
+
adapters that handle tool format conversion and standardization.
|
|
11
|
+
"""
|
|
12
|
+
|
|
1
13
|
from abc import ABC, abstractmethod
|
|
2
14
|
from typing import Any, List, Union, cast
|
|
3
15
|
|
|
@@ -7,12 +19,35 @@ from pipecat.adapters.schemas.tools_schema import ToolsSchema
|
|
|
7
19
|
|
|
8
20
|
|
|
9
21
|
class BaseLLMAdapter(ABC):
|
|
22
|
+
"""Abstract base class for LLM provider adapters.
|
|
23
|
+
|
|
24
|
+
Provides a standard interface for converting between Pipecat's standardized
|
|
25
|
+
tool schemas and provider-specific tool formats. Subclasses must implement
|
|
26
|
+
provider-specific conversion logic.
|
|
27
|
+
"""
|
|
28
|
+
|
|
10
29
|
@abstractmethod
|
|
11
30
|
def to_provider_tools_format(self, tools_schema: ToolsSchema) -> List[Any]:
|
|
12
|
-
"""
|
|
31
|
+
"""Convert tools schema to the provider's specific format.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
tools_schema: The standardized tools schema to convert.
|
|
35
|
+
|
|
36
|
+
Returns:
|
|
37
|
+
List of tools in the provider's expected format.
|
|
38
|
+
"""
|
|
13
39
|
pass
|
|
14
40
|
|
|
15
41
|
def from_standard_tools(self, tools: Any) -> List[Any]:
|
|
42
|
+
"""Convert tools from standard format to provider format.
|
|
43
|
+
|
|
44
|
+
Args:
|
|
45
|
+
tools: Tools in standard format or provider-specific format.
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
List of tools converted to provider format, or original tools
|
|
49
|
+
if not in standard format.
|
|
50
|
+
"""
|
|
16
51
|
if isinstance(tools, ToolsSchema):
|
|
17
52
|
logger.debug(f"Retrieving the tools using the adapter: {type(self)}")
|
|
18
53
|
return self.to_provider_tools_format(tools)
|