dv-pipecat-ai 0.0.85.dev7__py3-none-any.whl → 0.0.85.dev698__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.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev698.dist-info}/METADATA +78 -117
- {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev698.dist-info}/RECORD +156 -122
- pipecat/adapters/base_llm_adapter.py +38 -1
- pipecat/adapters/services/anthropic_adapter.py +9 -14
- pipecat/adapters/services/aws_nova_sonic_adapter.py +5 -0
- pipecat/adapters/services/bedrock_adapter.py +236 -13
- pipecat/adapters/services/gemini_adapter.py +12 -8
- pipecat/adapters/services/open_ai_adapter.py +19 -7
- pipecat/adapters/services/open_ai_realtime_adapter.py +5 -0
- pipecat/audio/filters/krisp_viva_filter.py +193 -0
- pipecat/audio/filters/noisereduce_filter.py +15 -0
- pipecat/audio/turn/base_turn_analyzer.py +9 -1
- pipecat/audio/turn/smart_turn/base_smart_turn.py +14 -8
- pipecat/audio/turn/smart_turn/data/__init__.py +0 -0
- pipecat/audio/turn/smart_turn/data/smart-turn-v3.0.onnx +0 -0
- pipecat/audio/turn/smart_turn/http_smart_turn.py +6 -2
- pipecat/audio/turn/smart_turn/local_smart_turn.py +1 -1
- pipecat/audio/turn/smart_turn/local_smart_turn_v2.py +1 -1
- pipecat/audio/turn/smart_turn/local_smart_turn_v3.py +124 -0
- pipecat/audio/vad/data/README.md +10 -0
- pipecat/audio/vad/vad_analyzer.py +13 -1
- pipecat/extensions/voicemail/voicemail_detector.py +5 -5
- pipecat/frames/frames.py +120 -87
- pipecat/observers/loggers/debug_log_observer.py +3 -3
- pipecat/observers/loggers/llm_log_observer.py +7 -3
- pipecat/observers/loggers/user_bot_latency_log_observer.py +22 -10
- pipecat/pipeline/runner.py +12 -4
- pipecat/pipeline/service_switcher.py +64 -36
- pipecat/pipeline/task.py +85 -24
- pipecat/processors/aggregators/dtmf_aggregator.py +28 -22
- pipecat/processors/aggregators/{gated_openai_llm_context.py → gated_llm_context.py} +9 -9
- pipecat/processors/aggregators/gated_open_ai_llm_context.py +12 -0
- pipecat/processors/aggregators/llm_response.py +6 -7
- pipecat/processors/aggregators/llm_response_universal.py +19 -15
- pipecat/processors/aggregators/user_response.py +6 -6
- pipecat/processors/aggregators/vision_image_frame.py +24 -2
- pipecat/processors/audio/audio_buffer_processor.py +43 -8
- pipecat/processors/filters/stt_mute_filter.py +2 -0
- pipecat/processors/frame_processor.py +103 -17
- pipecat/processors/frameworks/langchain.py +8 -2
- pipecat/processors/frameworks/rtvi.py +209 -68
- pipecat/processors/frameworks/strands_agents.py +170 -0
- pipecat/processors/logger.py +2 -2
- pipecat/processors/transcript_processor.py +4 -4
- pipecat/processors/user_idle_processor.py +3 -6
- pipecat/runner/run.py +270 -50
- pipecat/runner/types.py +2 -0
- pipecat/runner/utils.py +51 -10
- pipecat/serializers/exotel.py +5 -5
- pipecat/serializers/livekit.py +20 -0
- pipecat/serializers/plivo.py +6 -9
- pipecat/serializers/protobuf.py +6 -5
- pipecat/serializers/telnyx.py +2 -2
- pipecat/serializers/twilio.py +43 -23
- pipecat/services/ai_service.py +2 -6
- pipecat/services/anthropic/llm.py +2 -25
- pipecat/services/asyncai/tts.py +2 -3
- pipecat/services/aws/__init__.py +1 -0
- pipecat/services/aws/llm.py +122 -97
- pipecat/services/aws/nova_sonic/__init__.py +0 -0
- pipecat/services/aws/nova_sonic/context.py +367 -0
- pipecat/services/aws/nova_sonic/frames.py +25 -0
- pipecat/services/aws/nova_sonic/llm.py +1155 -0
- pipecat/services/aws/stt.py +1 -3
- pipecat/services/aws_nova_sonic/__init__.py +19 -1
- pipecat/services/aws_nova_sonic/aws.py +11 -1151
- pipecat/services/aws_nova_sonic/context.py +13 -355
- pipecat/services/aws_nova_sonic/frames.py +13 -17
- pipecat/services/azure/realtime/__init__.py +0 -0
- pipecat/services/azure/realtime/llm.py +65 -0
- pipecat/services/azure/stt.py +15 -0
- pipecat/services/cartesia/tts.py +2 -2
- pipecat/services/deepgram/__init__.py +1 -0
- pipecat/services/deepgram/flux/__init__.py +0 -0
- pipecat/services/deepgram/flux/stt.py +636 -0
- pipecat/services/elevenlabs/__init__.py +2 -1
- pipecat/services/elevenlabs/stt.py +254 -276
- pipecat/services/elevenlabs/tts.py +5 -5
- pipecat/services/fish/tts.py +2 -2
- pipecat/services/gemini_multimodal_live/events.py +38 -524
- pipecat/services/gemini_multimodal_live/file_api.py +23 -173
- pipecat/services/gemini_multimodal_live/gemini.py +41 -1403
- pipecat/services/gladia/stt.py +56 -72
- pipecat/services/google/__init__.py +1 -0
- pipecat/services/google/gemini_live/__init__.py +3 -0
- pipecat/services/google/gemini_live/file_api.py +189 -0
- pipecat/services/google/gemini_live/llm.py +1582 -0
- pipecat/services/google/gemini_live/llm_vertex.py +184 -0
- pipecat/services/google/llm.py +15 -11
- pipecat/services/google/llm_openai.py +3 -3
- pipecat/services/google/llm_vertex.py +86 -16
- pipecat/services/google/tts.py +7 -3
- pipecat/services/heygen/api.py +2 -0
- pipecat/services/heygen/client.py +8 -4
- pipecat/services/heygen/video.py +2 -0
- pipecat/services/hume/__init__.py +5 -0
- pipecat/services/hume/tts.py +220 -0
- pipecat/services/inworld/tts.py +6 -6
- pipecat/services/llm_service.py +15 -5
- pipecat/services/lmnt/tts.py +2 -2
- pipecat/services/mcp_service.py +4 -2
- pipecat/services/mem0/memory.py +6 -5
- pipecat/services/mistral/llm.py +29 -8
- pipecat/services/moondream/vision.py +42 -16
- pipecat/services/neuphonic/tts.py +2 -2
- pipecat/services/openai/__init__.py +1 -0
- pipecat/services/openai/base_llm.py +27 -20
- pipecat/services/openai/realtime/__init__.py +0 -0
- pipecat/services/openai/realtime/context.py +272 -0
- pipecat/services/openai/realtime/events.py +1106 -0
- pipecat/services/openai/realtime/frames.py +37 -0
- pipecat/services/openai/realtime/llm.py +829 -0
- pipecat/services/openai/tts.py +16 -8
- pipecat/services/openai_realtime/__init__.py +27 -0
- pipecat/services/openai_realtime/azure.py +21 -0
- pipecat/services/openai_realtime/context.py +21 -0
- pipecat/services/openai_realtime/events.py +21 -0
- pipecat/services/openai_realtime/frames.py +21 -0
- pipecat/services/openai_realtime_beta/azure.py +16 -0
- pipecat/services/openai_realtime_beta/openai.py +17 -5
- pipecat/services/playht/tts.py +31 -4
- pipecat/services/rime/tts.py +3 -4
- pipecat/services/sarvam/tts.py +2 -6
- pipecat/services/simli/video.py +2 -2
- pipecat/services/speechmatics/stt.py +1 -7
- pipecat/services/stt_service.py +34 -0
- pipecat/services/tavus/video.py +2 -2
- pipecat/services/tts_service.py +9 -9
- pipecat/services/vision_service.py +7 -6
- pipecat/tests/utils.py +4 -4
- pipecat/transcriptions/language.py +41 -1
- pipecat/transports/base_input.py +17 -42
- pipecat/transports/base_output.py +42 -26
- pipecat/transports/daily/transport.py +199 -26
- pipecat/transports/heygen/__init__.py +0 -0
- pipecat/transports/heygen/transport.py +381 -0
- pipecat/transports/livekit/transport.py +228 -63
- pipecat/transports/local/audio.py +6 -1
- pipecat/transports/local/tk.py +11 -2
- pipecat/transports/network/fastapi_websocket.py +1 -1
- pipecat/transports/smallwebrtc/connection.py +98 -19
- pipecat/transports/smallwebrtc/request_handler.py +204 -0
- pipecat/transports/smallwebrtc/transport.py +65 -23
- pipecat/transports/tavus/transport.py +23 -12
- pipecat/transports/websocket/client.py +41 -5
- pipecat/transports/websocket/fastapi.py +21 -11
- pipecat/transports/websocket/server.py +14 -7
- pipecat/transports/whatsapp/api.py +8 -0
- pipecat/transports/whatsapp/client.py +47 -0
- pipecat/utils/base_object.py +54 -22
- pipecat/utils/string.py +12 -1
- pipecat/utils/tracing/service_decorators.py +21 -21
- {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev698.dist-info}/WHEEL +0 -0
- {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev698.dist-info}/licenses/LICENSE +0 -0
- {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev698.dist-info}/top_level.txt +0 -0
- /pipecat/services/{aws_nova_sonic → aws/nova_sonic}/ready.wav +0 -0
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
dv_pipecat_ai-0.0.85.
|
|
1
|
+
dv_pipecat_ai-0.0.85.dev698.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
|
|
5
|
-
pipecat/adapters/base_llm_adapter.py,sha256=
|
|
5
|
+
pipecat/adapters/base_llm_adapter.py,sha256=Tjfl-bEsv5mv1-2V_5Op4Gh00AogIwtQYLiBQfIQfS8,4336
|
|
6
6
|
pipecat/adapters/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
pipecat/adapters/schemas/direct_function.py,sha256=v2E8eXd3vfbG_6V8U_T8j_PuFJdDhErGFLEWifb-PDQ,10398
|
|
8
8
|
pipecat/adapters/schemas/function_schema.py,sha256=ePXU6mmMTcLCh7Jn5hXpyn-Lc2G7rigjBLjnf1XOBBI,2590
|
|
9
9
|
pipecat/adapters/schemas/tools_schema.py,sha256=TLJ6l_JMt9l_6xTp9c64relYxmLd0nhSD0lGFaWNh44,3062
|
|
10
10
|
pipecat/adapters/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pipecat/adapters/services/anthropic_adapter.py,sha256=
|
|
12
|
-
pipecat/adapters/services/aws_nova_sonic_adapter.py,sha256=
|
|
13
|
-
pipecat/adapters/services/bedrock_adapter.py,sha256
|
|
14
|
-
pipecat/adapters/services/gemini_adapter.py,sha256=
|
|
15
|
-
pipecat/adapters/services/open_ai_adapter.py,sha256=
|
|
16
|
-
pipecat/adapters/services/open_ai_realtime_adapter.py,sha256=
|
|
11
|
+
pipecat/adapters/services/anthropic_adapter.py,sha256=69rhW5qs43bKtDCZ-X-My3hFiJ8gc08jLsaaFZnyrU4,13951
|
|
12
|
+
pipecat/adapters/services/aws_nova_sonic_adapter.py,sha256=uS_z6XXyfF6B5mLR96_4jU_IOgoHR-593nzQm08-pbc,3847
|
|
13
|
+
pipecat/adapters/services/bedrock_adapter.py,sha256=-NVQSuh2DB4v3sscp6CeikwWaQ3qP5VvYa7AQiKPJBU,12380
|
|
14
|
+
pipecat/adapters/services/gemini_adapter.py,sha256=C0aUAydw-oeCFXQNcH11ztj4VtU4N9JGTGNb4Zu3Lw8,11846
|
|
15
|
+
pipecat/adapters/services/open_ai_adapter.py,sha256=s259oT983Mbnv7Y7jw3NK2VRR9lRD7yXkFgUer6Mah8,4840
|
|
16
|
+
pipecat/adapters/services/open_ai_realtime_adapter.py,sha256=6PUq9FW_nG4iuc98e2fW_lpc4nB0VuSiNNHegPxtFms,3601
|
|
17
17
|
pipecat/audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
pipecat/audio/utils.py,sha256=RVm0NrjHYY5xhUIOEdKAqM2VsTDkMi1Sv0hIi49QYyI,10729
|
|
19
19
|
pipecat/audio/dtmf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -36,7 +36,8 @@ pipecat/audio/filters/aic_filter.py,sha256=sayAgOaCd2Joc8Hy3KazFu-rD-r0X5pjkNIX6
|
|
|
36
36
|
pipecat/audio/filters/base_audio_filter.py,sha256=gVsDRRQwK7FUh7pVmh0p-x6mVBLT5yte1zIqLcWcPjY,2165
|
|
37
37
|
pipecat/audio/filters/koala_filter.py,sha256=KHruKNpQp12wmSjYVaIxvgSbcrDb0MalqugwtzaVSKQ,3680
|
|
38
38
|
pipecat/audio/filters/krisp_filter.py,sha256=EZ88cNnV7sfHWAy-97iCh2pi2MAxIDeitVbvfk0rFD4,4872
|
|
39
|
-
pipecat/audio/filters/
|
|
39
|
+
pipecat/audio/filters/krisp_viva_filter.py,sha256=v6GyuSjmEvVEllQI2zCObLSzLm26QWsIlz3CH42zfuw,6787
|
|
40
|
+
pipecat/audio/filters/noisereduce_filter.py,sha256=KdIdNt5chVG6QUdgEL0IdRL4MPMpbc2C2jKmLZAhg-w,3261
|
|
40
41
|
pipecat/audio/filters/pyrnn_local_filter.py,sha256=m1AU6Zp-5aciXl4xWiLz6g9tVku2kHYgoIE65F1LTo0,7450
|
|
41
42
|
pipecat/audio/interruptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
43
|
pipecat/audio/interruptions/base_interruption_strategy.py,sha256=TxGQ2sB8T4_k-KJod8NYooEhZNRrlebmg0HMDiSxQKg,1781
|
|
@@ -50,17 +51,21 @@ pipecat/audio/resamplers/resampy_resampler.py,sha256=fEZv6opn_9j50xYEOdwQiZOJQ_J
|
|
|
50
51
|
pipecat/audio/resamplers/soxr_resampler.py,sha256=CXze7zf_ExlCcgcZp0oArRSbZ9zFpBzsCt2EQ_woKfM,1747
|
|
51
52
|
pipecat/audio/resamplers/soxr_stream_resampler.py,sha256=lHk1__M1HDGf25abpffuWEyqbd0ckNfyADDV_WmTPcY,3665
|
|
52
53
|
pipecat/audio/turn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
-
pipecat/audio/turn/base_turn_analyzer.py,sha256=
|
|
54
|
+
pipecat/audio/turn/base_turn_analyzer.py,sha256=UoZ61yto2wecXU6nXk2yjdcgM7jGyfMR5ZfrunOFpOA,3359
|
|
54
55
|
pipecat/audio/turn/smart_turn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
pipecat/audio/turn/smart_turn/base_smart_turn.py,sha256=
|
|
56
|
+
pipecat/audio/turn/smart_turn/base_smart_turn.py,sha256=gE5jrqrU0gQcgjTOvpUbb6LWAhfk8VKZQ-5pyEIZH4E,10037
|
|
56
57
|
pipecat/audio/turn/smart_turn/fal_smart_turn.py,sha256=neahuTAY9SUQjacRYd19BERiuSHIMSpqzZ9uae_ZlWA,1606
|
|
57
|
-
pipecat/audio/turn/smart_turn/http_smart_turn.py,sha256=
|
|
58
|
+
pipecat/audio/turn/smart_turn/http_smart_turn.py,sha256=HlHpdVbk-1g_AU3qAAy7Xob8M2V3FUqtr38UAk1F1Dw,4783
|
|
58
59
|
pipecat/audio/turn/smart_turn/local_coreml_smart_turn.py,sha256=50kiBeZhnq7FZWZnzdSX8KUmhhQtkme0KH2rbiAJbCU,3140
|
|
59
|
-
pipecat/audio/turn/smart_turn/local_smart_turn.py,sha256=
|
|
60
|
-
pipecat/audio/turn/smart_turn/local_smart_turn_v2.py,sha256=
|
|
60
|
+
pipecat/audio/turn/smart_turn/local_smart_turn.py,sha256=0z2M_MC9xIcelm4d9XqZwzJMe2FM-zOjgnHDAeoMw0g,3564
|
|
61
|
+
pipecat/audio/turn/smart_turn/local_smart_turn_v2.py,sha256=hd_nhEdaxwJ2_G6F2RJru9mC8vyzkmku2YqmtULl7NM,7154
|
|
62
|
+
pipecat/audio/turn/smart_turn/local_smart_turn_v3.py,sha256=x1q437Mp8cEU1S-7W869i1meDtCdjrjPTUCjbSLDVgQ,4649
|
|
63
|
+
pipecat/audio/turn/smart_turn/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
pipecat/audio/turn/smart_turn/data/smart-turn-v3.0.onnx,sha256=B6Ezq6MeLQtSPxf4wuTmXv5tj2he_RLKT-Iev055iZE,8757193
|
|
61
65
|
pipecat/audio/vad/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
66
|
pipecat/audio/vad/silero.py,sha256=Cz4_hJjaBKbmUwZVbqMzED8orHOCsnF3zpERgBTw1Rw,7906
|
|
63
|
-
pipecat/audio/vad/vad_analyzer.py,sha256=
|
|
67
|
+
pipecat/audio/vad/vad_analyzer.py,sha256=dPqMhgj_SmXVlIreItxj0i2mDpss-GImYKAfNPZvN9Y,7990
|
|
68
|
+
pipecat/audio/vad/data/README.md,sha256=ePSLSq--Ja-XX7gAFFf6JhTpXyp3x79XvUGVtH5QFTc,562
|
|
64
69
|
pipecat/audio/vad/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
70
|
pipecat/audio/vad/data/silero_vad.onnx,sha256=WX0ws-wHZgjQWUd7sUz-_9-VG_XK43DTj2XTO7_oIAQ,2327524
|
|
66
71
|
pipecat/audio/vad/data/silero_vad_v2.onnx,sha256=JiOilT9v89LB5hdAxs23FoEzR5smff7xFKSjzFvdeI8,2327524
|
|
@@ -71,10 +76,10 @@ pipecat/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
71
76
|
pipecat/extensions/ivr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
77
|
pipecat/extensions/ivr/ivr_navigator.py,sha256=SBz7RhM7I3bU5uBABEzBMdNK6PtP7Fb5Tqj4zpzPcG4,20100
|
|
73
78
|
pipecat/extensions/voicemail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
-
pipecat/extensions/voicemail/voicemail_detector.py,sha256=
|
|
79
|
+
pipecat/extensions/voicemail/voicemail_detector.py,sha256=JxmU2752iWP_1_GmzZReNESUTFAeyEa4XBPL20_C208,30004
|
|
75
80
|
pipecat/frames/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
81
|
pipecat/frames/frames.proto,sha256=JXZm3VXLR8zMOUcOuhVoe2mhM3MQIQGMJXLopdJO_5Y,839
|
|
77
|
-
pipecat/frames/frames.py,sha256=
|
|
82
|
+
pipecat/frames/frames.py,sha256=B0OxmCe37xHMkvGwjb8YtwJNINDIOwq_njr4HPBWeZc,46504
|
|
78
83
|
pipecat/frames/protobufs/frames_pb2.py,sha256=VHgGV_W7qQ4sfQK6RHb5_DggLm3PiSYMr6aBZ8_p1cQ,2590
|
|
79
84
|
pipecat/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
85
|
pipecat/metrics/metrics.py,sha256=bdZNciEtLTtA-xgoKDz2RJAy6fKrXkTwz3pryVHzc2M,2713
|
|
@@ -82,20 +87,20 @@ pipecat/observers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
82
87
|
pipecat/observers/base_observer.py,sha256=z812gu9lrxtZlr_6oZhcH0NHqlV2cJ7k_B8UJRrm8TY,3459
|
|
83
88
|
pipecat/observers/turn_tracking_observer.py,sha256=quWp7iRi9KuqN3zuA0uCpiUYH0f6-HcYzYa16HYv6IA,8068
|
|
84
89
|
pipecat/observers/loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
pipecat/observers/loggers/debug_log_observer.py,sha256=
|
|
86
|
-
pipecat/observers/loggers/llm_log_observer.py,sha256=
|
|
90
|
+
pipecat/observers/loggers/debug_log_observer.py,sha256=SQ2G5zfPbNqTLFTG0oiOXnVgYIvx4wXv-3kTICXSo0c,7880
|
|
91
|
+
pipecat/observers/loggers/llm_log_observer.py,sha256=yLv628stY3226WWSs-MAbCezHa_oYxmUPkQ6ANqUQQU,3430
|
|
87
92
|
pipecat/observers/loggers/transcription_log_observer.py,sha256=UJ33V_3lSn2bPyZlL30hHbMSpxAsO7b3Lf_8qCqL71U,2011
|
|
88
|
-
pipecat/observers/loggers/user_bot_latency_log_observer.py,sha256=
|
|
93
|
+
pipecat/observers/loggers/user_bot_latency_log_observer.py,sha256=tsjJolZZn09PNIAVmFBidMjPOBu9FFpJZRdb_juOTCs,2873
|
|
89
94
|
pipecat/pipeline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
95
|
pipecat/pipeline/base_pipeline.py,sha256=JLIktUmF9lSDqd2Cyrlxr0FSk8DM7DRuv8doEKYNqY8,417
|
|
91
96
|
pipecat/pipeline/base_task.py,sha256=cnyD4wLtE5iQmLl8vG7oiXkx7AOLxhLzcSkDeC3pL-Q,2922
|
|
92
97
|
pipecat/pipeline/llm_switcher.py,sha256=_L-_Yo2im7KlXcJBAhmv-oT33ZD6EjkAvBQFXr4BFeY,2861
|
|
93
98
|
pipecat/pipeline/parallel_pipeline.py,sha256=1HdG0zWgbnrnRf6_-akkOTI5TB6fvOelx1DClX2glFc,6553
|
|
94
99
|
pipecat/pipeline/pipeline.py,sha256=FVXHUwBch4D8MXQYrCE_So7e3gVxl-ELOLj1u_H_-8c,7560
|
|
95
|
-
pipecat/pipeline/runner.py,sha256=
|
|
96
|
-
pipecat/pipeline/service_switcher.py,sha256=
|
|
100
|
+
pipecat/pipeline/runner.py,sha256=ysuIYNLtwdxXA3dvFzlmzXrgP7t667Kp_auFgrmqo_Y,4800
|
|
101
|
+
pipecat/pipeline/service_switcher.py,sha256=Qef3iVolQMq3ojHAd2St1gYz8VP_ZzUyNt0pGcQu6kM,6762
|
|
97
102
|
pipecat/pipeline/sync_parallel_pipeline.py,sha256=dZ17GoY2q8cHwNr9zPOM-TdiC4ERe9oGEkMEV9-YDtI,10654
|
|
98
|
-
pipecat/pipeline/task.py,sha256=
|
|
103
|
+
pipecat/pipeline/task.py,sha256=9aQUswiaFh1KQjGMY_NKKqu2D2Y0JvGS2e9NxpzP73M,36631
|
|
99
104
|
pipecat/pipeline/task_observer.py,sha256=DswTNgdV1bS9buKNt-E5T5vNptffhjeqoD75YNmP1GQ,6835
|
|
100
105
|
pipecat/pipeline/tts_switcher.py,sha256=hyGFVRbDQfaIaeIzyVkUHA3sgAFpsdkRBMId_cZJ-gM,1067
|
|
101
106
|
pipecat/pipeline/to_be_updated/merge_pipeline.py,sha256=jLEWdufIW3z1xZhdoLowdJ_SGz018DQw8JYGwlBYvE4,1845
|
|
@@ -103,38 +108,40 @@ pipecat/processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
103
108
|
pipecat/processors/async_generator.py,sha256=qPOZxk5eOad_NrF_Z06vWZ6deXIxb9AKZKYO2e5pkJs,2385
|
|
104
109
|
pipecat/processors/consumer_processor.py,sha256=DrWCKnfblknZJ0bLmR_unIeJ1axQw4IPUn2IB3KLGGA,3228
|
|
105
110
|
pipecat/processors/dtmf_aggregator.py,sha256=mo_IXUlsnVl-_Xn8sbTGnRF4Lkts0h6E3uauGbeFyWs,10204
|
|
106
|
-
pipecat/processors/frame_processor.py,sha256=
|
|
111
|
+
pipecat/processors/frame_processor.py,sha256=Qf-EJCWlw2itvJTsFykKBfjcsXRQUDgSqJDF8gb60V0,33806
|
|
107
112
|
pipecat/processors/idle_frame_processor.py,sha256=z8AuhGap61lA5K35P6XCaOpn4kkmK_9NZNppbpQxheU,3124
|
|
108
|
-
pipecat/processors/logger.py,sha256=
|
|
113
|
+
pipecat/processors/logger.py,sha256=8xa4KKekXQIETlQR7zoGnwUpLNo8CeDVm7YjyXePN-w,2385
|
|
109
114
|
pipecat/processors/producer_processor.py,sha256=iIIOHZd77APvUGP7JqFbznAHUnCULcq_qYiSEjwXHcc,3265
|
|
110
115
|
pipecat/processors/text_transformer.py,sha256=LnfWJYzntJhZhrQ1lgSSY4D4VbHtrQJgrC227M69ZYU,1718
|
|
111
|
-
pipecat/processors/transcript_processor.py,sha256=
|
|
116
|
+
pipecat/processors/transcript_processor.py,sha256=9F00tY3cxt63ZhYvFGSSAnuUTt3J16mEOUHMzIMndMY,11720
|
|
112
117
|
pipecat/processors/two_stage_user_idle_processor.py,sha256=uf2aZh_lfW-eMxmFogP3R4taAJ1yXOSqjKsR7oXtD0Y,2938
|
|
113
|
-
pipecat/processors/user_idle_processor.py,sha256=
|
|
118
|
+
pipecat/processors/user_idle_processor.py,sha256=Dl-Kcg0B4JZqWXXiyGuvYszGimbu2oKOyOJC92R9_hE,9140
|
|
114
119
|
pipecat/processors/aggregators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
-
pipecat/processors/aggregators/dtmf_aggregator.py,sha256=
|
|
120
|
+
pipecat/processors/aggregators/dtmf_aggregator.py,sha256=4JBpjNXCZI8oFDLY4Y9x5spGiBsLkCgHi6mDAgSffqU,5257
|
|
116
121
|
pipecat/processors/aggregators/gated.py,sha256=tii0sRrBkRW6y9Xq5iTWPnqlOEejU4VqPIPtdOa61pc,3073
|
|
117
|
-
pipecat/processors/aggregators/
|
|
122
|
+
pipecat/processors/aggregators/gated_llm_context.py,sha256=CPv6sMA8irD1zZ3fU1gSv6D7qcPvCA0MdpFhBtJ_ekI,3007
|
|
123
|
+
pipecat/processors/aggregators/gated_open_ai_llm_context.py,sha256=DgqmdPj1u3fP_SVmxtfP7NjHqnyhN_RVVTDfmjbkxAs,361
|
|
118
124
|
pipecat/processors/aggregators/llm_context.py,sha256=eDf1cQElcISLx3onaA9LCWuepzb2G_JGszLzpNXggXo,9723
|
|
119
|
-
pipecat/processors/aggregators/llm_response.py,sha256=
|
|
120
|
-
pipecat/processors/aggregators/llm_response_universal.py,sha256=
|
|
125
|
+
pipecat/processors/aggregators/llm_response.py,sha256=4d30xMaBZKmHYTsiS-SLQNAKJN-qFQi60asMFLadwyw,47286
|
|
126
|
+
pipecat/processors/aggregators/llm_response_universal.py,sha256=5PqmpATpekD8BVWyBExZgatKHsNbZem8M-A7_VwTbiQ,34334
|
|
121
127
|
pipecat/processors/aggregators/openai_llm_context.py,sha256=cC8DXdVPERRN04i0i-1Ys6kusvnbMALeH-Z8Pu5K684,12999
|
|
122
128
|
pipecat/processors/aggregators/sentence.py,sha256=E7e3knfQl6HEGpYMKPklF1aO_gOn-rr7SnynErwfkQk,2235
|
|
123
|
-
pipecat/processors/aggregators/user_response.py,sha256=
|
|
124
|
-
pipecat/processors/aggregators/vision_image_frame.py,sha256=
|
|
129
|
+
pipecat/processors/aggregators/user_response.py,sha256=uR0I_NRZq9Uuk663by9ziuDORcmP39T8UunS47GG09k,1747
|
|
130
|
+
pipecat/processors/aggregators/vision_image_frame.py,sha256=MmUjDS5SryfYvtfkF4PomPw2kMIt1MSIUxRtasKSdPk,3054
|
|
125
131
|
pipecat/processors/audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
|
-
pipecat/processors/audio/audio_buffer_processor.py,sha256=
|
|
132
|
+
pipecat/processors/audio/audio_buffer_processor.py,sha256=l6K0OFZ34VXjURraA8wq9PODzBzefQvKAXUj46hktvM,14335
|
|
127
133
|
pipecat/processors/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
134
|
pipecat/processors/filters/frame_filter.py,sha256=ZPtHToASfbbtwAdrnQH8POKIvT8hF00tUNvMhwSKmeQ,1758
|
|
129
135
|
pipecat/processors/filters/function_filter.py,sha256=QNQZBIe1gzSPNI_4Zg2fgyeUhX-AmbIMp7r_XWNhwjU,2400
|
|
130
136
|
pipecat/processors/filters/identity_filter.py,sha256=YNQWNNnuHivNwJa71Gc7A6ZHHq5Zw_kvuNrq9LUKK44,1418
|
|
131
137
|
pipecat/processors/filters/null_filter.py,sha256=CourFfNXyhaesksiBuXxv5-mFSDpy6e9bOJ04p3iK40,1467
|
|
132
|
-
pipecat/processors/filters/stt_mute_filter.py,sha256=
|
|
138
|
+
pipecat/processors/filters/stt_mute_filter.py,sha256=Ij-miB6wUM2iywfNmiXuDvJmOQdUTglR141x0jZ_oq4,10201
|
|
133
139
|
pipecat/processors/filters/wake_check_filter.py,sha256=EKOuw_DCK4EWJ794xS8Xza-QQImD-pjgWYp0wdyvHjI,5099
|
|
134
140
|
pipecat/processors/filters/wake_notifier_filter.py,sha256=1yV3Tw8OROCS97nuZNs4igcNvRQyYu1RG2gNvYMWxKc,2077
|
|
135
141
|
pipecat/processors/frameworks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
-
pipecat/processors/frameworks/langchain.py,sha256=
|
|
137
|
-
pipecat/processors/frameworks/rtvi.py,sha256=
|
|
142
|
+
pipecat/processors/frameworks/langchain.py,sha256=tQlgsEZGxL5CUjGq2Qhrjvi5kN5mcSER4fMRWb8ydNs,4125
|
|
143
|
+
pipecat/processors/frameworks/rtvi.py,sha256=0KkrrQ-VzikArcVXVKz1RQA2eBLZUJhUI59SK3zGQjE,62439
|
|
144
|
+
pipecat/processors/frameworks/strands_agents.py,sha256=vaYcNtM084OWoXDQaT6eoGoP1pxpW4kxlyTlmx8E0_M,7172
|
|
138
145
|
pipecat/processors/gstreamer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
146
|
pipecat/processors/gstreamer/pipeline_source.py,sha256=eXckOY1rQeSBjSfLs8EFEkdlTZEq94osOTFWeNh6C4Y,9765
|
|
140
147
|
pipecat/processors/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -143,90 +150,102 @@ pipecat/processors/metrics/sentry.py,sha256=Gts-b-H3EDFUvv-qn44e9pSDAWUKk72tr7tE
|
|
|
143
150
|
pipecat/runner/__init__.py,sha256=iJh4vFMGNQYi_ATVGXJDU4rOJwI-1Y6fmkyV18-ddAE,64
|
|
144
151
|
pipecat/runner/daily.py,sha256=9vQ4TWYBE5gt6mZJ3PjRe17M2__7JL1S9cbDWMIX79Q,7868
|
|
145
152
|
pipecat/runner/livekit.py,sha256=in-2Io3FUZV-VcZZ-gQCx9L1WnKp5sHqmm7tDYlFNl4,4582
|
|
146
|
-
pipecat/runner/run.py,sha256=
|
|
147
|
-
pipecat/runner/types.py,sha256=
|
|
148
|
-
pipecat/runner/utils.py,sha256=
|
|
153
|
+
pipecat/runner/run.py,sha256=7ZU9S3EASUbVmm-S_Uc8eLeDItFCTtl2RXiJlzhtPmg,26958
|
|
154
|
+
pipecat/runner/types.py,sha256=_FVgNkpDAjyyhNlRc06sL0fzh00uy1lJ1DJrJ2EhKEc,1691
|
|
155
|
+
pipecat/runner/utils.py,sha256=Ve9rjRvbt1o8e9by0nIrCJzUDGcuJUeYYhkqycmgHXc,18682
|
|
149
156
|
pipecat/serializers/__init__.py,sha256=xcmbbR7YYU5C4HPbo2WVgPij-Bl_qlrLcnunCdpcZkg,804
|
|
150
157
|
pipecat/serializers/asterisk.py,sha256=bPuGuLiCf04_H0d9Gc-5BpEtqD9BRNWnpZZq5MZ1fDY,6091
|
|
151
158
|
pipecat/serializers/base_serializer.py,sha256=OyBUZccs2ZT9mfkBbq2tGsUJMvci6o-j90Cl1sicPaI,2030
|
|
152
159
|
pipecat/serializers/convox.py,sha256=Irby_iZywgBtevlxiC8nE2GY3eh4yNNRi2YC-0vnNTY,11155
|
|
153
160
|
pipecat/serializers/custom.py,sha256=O0gHTyoSb1AZ_tEmE9VgRViYckmsNzjwCAqt-Xc2CaM,9081
|
|
154
|
-
pipecat/serializers/exotel.py,sha256=
|
|
155
|
-
pipecat/serializers/livekit.py,sha256=
|
|
156
|
-
pipecat/serializers/plivo.py,sha256=
|
|
157
|
-
pipecat/serializers/protobuf.py,sha256=
|
|
158
|
-
pipecat/serializers/telnyx.py,sha256=
|
|
159
|
-
pipecat/serializers/twilio.py,sha256=
|
|
161
|
+
pipecat/serializers/exotel.py,sha256=B04LtNnRMzKmaS61gPZbUjc2nbki3FmpCfUMww6cOe4,5953
|
|
162
|
+
pipecat/serializers/livekit.py,sha256=OMaM7yUiHfeTPbpNxE2TrmIzjmbNQIjNvlujt81dsRI,3285
|
|
163
|
+
pipecat/serializers/plivo.py,sha256=ie6VUhZDTJ7KlAuJyHNeIeMtJ3ScDq_2js1SZtz7jLI,9256
|
|
164
|
+
pipecat/serializers/protobuf.py,sha256=L0jSqvgTdkfxsu6JWjYK8QSTVji9nhzmgRsEEbGU7xY,5223
|
|
165
|
+
pipecat/serializers/telnyx.py,sha256=eFkC7dExDFildYLR8DPvgfHbgXlCwdSPd1vc11yxyok,10847
|
|
166
|
+
pipecat/serializers/twilio.py,sha256=0emSzXVw8DU_N5RPruMekbBKku9Q429-0z1PMuYejSk,10823
|
|
160
167
|
pipecat/services/__init__.py,sha256=8e3Ta-8_BOPozhDB3l0GJkNXs5PWhib6yqZQUof2Kvw,1209
|
|
161
|
-
pipecat/services/ai_service.py,sha256=
|
|
168
|
+
pipecat/services/ai_service.py,sha256=yE386fm2Id-yD4fCNfkmEMtg0lTA7PB17n2x_A_jwTg,5896
|
|
162
169
|
pipecat/services/ai_services.py,sha256=_RrDWfM8adV17atzY9RxK0nXRVM5kbUkKrvN90GAWYM,795
|
|
163
170
|
pipecat/services/image_service.py,sha256=tqJun4nYeyN_PaWqTdF_CFsOiqBf3XX7R4et5Y07mEU,2357
|
|
164
|
-
pipecat/services/llm_service.py,sha256=
|
|
165
|
-
pipecat/services/mcp_service.py,sha256=
|
|
166
|
-
pipecat/services/stt_service.py,sha256=
|
|
167
|
-
pipecat/services/tts_service.py,sha256=
|
|
168
|
-
pipecat/services/vision_service.py,sha256=
|
|
171
|
+
pipecat/services/llm_service.py,sha256=39y9tjrusTr8Zr9sFlg9xz86CXpy39FiyLtsbcbsu8g,25379
|
|
172
|
+
pipecat/services/mcp_service.py,sha256=yS48Uj5qD4jnhYYhs9Kw1aa1cjdYIwxYYjzCc_u6M0o,14345
|
|
173
|
+
pipecat/services/stt_service.py,sha256=cKm2GqU5gudNIcKbYXfjvFDZ7AP3v0wtLx90nciyuVk,12449
|
|
174
|
+
pipecat/services/tts_service.py,sha256=gHaTRyqLaRp5PA9QtBI622IM5E6_iWRqLiWF0d6Gukg,34689
|
|
175
|
+
pipecat/services/vision_service.py,sha256=v7Ft27xIwECAaL2ZzMZT8wG5aOA-JoUZWx2NxNaJ6pg,2580
|
|
169
176
|
pipecat/services/websocket_service.py,sha256=AWv7CL6G_XAh815xVaKNPpjP5escp8Q880SYHG7kCoI,5745
|
|
170
177
|
pipecat/services/anthropic/__init__.py,sha256=NfRQFoNZcUHsJA4mggeLalEmgM08TZdBjkRRjmyp6jE,261
|
|
171
|
-
pipecat/services/anthropic/llm.py,sha256=
|
|
178
|
+
pipecat/services/anthropic/llm.py,sha256=Ui8PRhKx29crDOAwP3dLT_p7IY3YcXpSqVaq8Wp5P-s,42843
|
|
172
179
|
pipecat/services/assemblyai/__init__.py,sha256=2gso9D1m2vigu0E1NuAYwKCQSvuHWk3UR_5-J8KhBVM,263
|
|
173
180
|
pipecat/services/assemblyai/models.py,sha256=7XFho7D4zhjThRXvDCjV8FBYoVlDbBb-88L0YaJ3JZo,3812
|
|
174
181
|
pipecat/services/assemblyai/stt.py,sha256=1xodklhxfXvHJi-S0oHim7VFuygu6jQ3tbiWbhycYtg,11580
|
|
175
182
|
pipecat/services/asyncai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
-
pipecat/services/asyncai/tts.py,sha256=
|
|
177
|
-
pipecat/services/aws/__init__.py,sha256=
|
|
178
|
-
pipecat/services/aws/llm.py,sha256=
|
|
179
|
-
pipecat/services/aws/stt.py,sha256=
|
|
183
|
+
pipecat/services/asyncai/tts.py,sha256=q5TnoXekAPbk8tnNvg7aPWjl-IYQkH1jB-YWCNoJAeU,16884
|
|
184
|
+
pipecat/services/aws/__init__.py,sha256=9oP59LYkJdD9C8kRhQvXWYV6qliFFQ0rZOP48P38k3k,323
|
|
185
|
+
pipecat/services/aws/llm.py,sha256=_8MHOlX4XZGn2jQVn-cd25CSEPSP_PBzIgaeNP5Fo-0,47143
|
|
186
|
+
pipecat/services/aws/stt.py,sha256=uCRVemh21ijkIzOpkXBEhFJtPbNYStIT74XB2JtiNYw,21171
|
|
180
187
|
pipecat/services/aws/tts.py,sha256=36Ag_joiE1ggK2hTZJNFC23fCyWTLSPBY400nNKAscQ,11188
|
|
181
188
|
pipecat/services/aws/utils.py,sha256=gw7H_C4PpPfm-cNuCthnArB03RqwF1_lxJAZJtojRuY,13905
|
|
182
|
-
pipecat/services/
|
|
183
|
-
pipecat/services/
|
|
184
|
-
pipecat/services/
|
|
185
|
-
pipecat/services/
|
|
186
|
-
pipecat/services/
|
|
189
|
+
pipecat/services/aws/nova_sonic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
|
+
pipecat/services/aws/nova_sonic/context.py,sha256=siiz7D5uL8IkS-58lYULYyJNNwVCsBcJfVGhhqJDAyI,13057
|
|
191
|
+
pipecat/services/aws/nova_sonic/frames.py,sha256=IB399YEgmdd5n5IaCmRTJlvl6DCV9mZv7WABx_5LCRg,644
|
|
192
|
+
pipecat/services/aws/nova_sonic/llm.py,sha256=3rsvsF_RSNxI1N1RyZFNZLrjGhJD9JuF6UCJUAPVptQ,44180
|
|
193
|
+
pipecat/services/aws/nova_sonic/ready.wav,sha256=pxdKxZtYRV2IVv63v7K1EPkxyV_OxocMkaXbKsHfby0,23484
|
|
194
|
+
pipecat/services/aws_nova_sonic/__init__.py,sha256=aPkmG4kwTPcLtLGQDkV7dOoZWaEXf81dq3LWBMw0v6Y,495
|
|
195
|
+
pipecat/services/aws_nova_sonic/aws.py,sha256=TXD0Brbpp2E1yTw4l68IcpfywtoZgbwauTaCpFYF5b8,719
|
|
196
|
+
pipecat/services/aws_nova_sonic/context.py,sha256=p18P6zl5VLIIJmgYc-jr-I6BKlF_U-y5Ri4VMBBX3q8,716
|
|
197
|
+
pipecat/services/aws_nova_sonic/frames.py,sha256=FJp2fcIwS_6ByX_cAnAtcGeYV3lzR5nd4NaIlEMMGM8,532
|
|
187
198
|
pipecat/services/azure/__init__.py,sha256=mgnoJYeqKqwRvr18UZJhFZ2FTkGyob7r6IdtEiOeT3k,301
|
|
188
199
|
pipecat/services/azure/common.py,sha256=JKGDYYW1zpRaWy_l_5ZL6viHj2Ch-mKMoVx2gdCKpeo,9893
|
|
189
200
|
pipecat/services/azure/image.py,sha256=yP7_Uelz9gq2-nhRbjTNOJ6s-DrsjsGaqXPq-8Ud4q4,4191
|
|
190
201
|
pipecat/services/azure/llm.py,sha256=jmpKLU5T6fh4Y9nrgVvI-A60bUzptZbf3uEfJd0qUbI,4292
|
|
191
|
-
pipecat/services/azure/stt.py,sha256=
|
|
202
|
+
pipecat/services/azure/stt.py,sha256=r2lJ10oiqEmxOW8GVMVewKqwexy424MDvOxC9--TZKA,13438
|
|
192
203
|
pipecat/services/azure/tts.py,sha256=ytgXcYvdVkshC30K88ZGbYFtK8SmSV22h9jQEYKf9ew,19233
|
|
204
|
+
pipecat/services/azure/realtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
+
pipecat/services/azure/realtime/llm.py,sha256=MnDiw-YJP3kll1gbkta4z4vsWfWZ5oBprZCinMP9O0M,2385
|
|
193
206
|
pipecat/services/cartesia/__init__.py,sha256=vzh0jBnfPwWdxFfV-tu0x1HFoOTgr9s91GYmD-CJUtY,284
|
|
194
207
|
pipecat/services/cartesia/stt.py,sha256=mwGF_SOpo021q2y5tpwNgR78DOOqPXrygWgSoBnfd-M,12187
|
|
195
|
-
pipecat/services/cartesia/tts.py,sha256=
|
|
208
|
+
pipecat/services/cartesia/tts.py,sha256=tD4dlBhZUKcWjTl9TpqfvfEc0AWd6qI_hC_Pu9BhCHw,24230
|
|
196
209
|
pipecat/services/cerebras/__init__.py,sha256=5zBmqq9Zfcl-HC7ylekVS5qrRedbl1mAeEwUT-T-c_o,259
|
|
197
210
|
pipecat/services/cerebras/llm.py,sha256=-yzSe_6YDGigwzES-LZS4vNXMPugmvsIYEpTySyr5nA,3047
|
|
198
|
-
pipecat/services/deepgram/__init__.py,sha256=
|
|
211
|
+
pipecat/services/deepgram/__init__.py,sha256=IjRtMI7WytRDdmYVpk2qDWClXUiNgdl7ZkvEAWg1eYE,304
|
|
199
212
|
pipecat/services/deepgram/stt.py,sha256=IvdKvo23PxhKoWTJDxuK4Uoo0wCtkFGAE_QrMUoGdYM,13732
|
|
200
213
|
pipecat/services/deepgram/tts.py,sha256=H_2WCJEx3_L4ytrHHRNkA-6GKTd1coou_vvTfiEodpQ,3745
|
|
214
|
+
pipecat/services/deepgram/flux/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
|
+
pipecat/services/deepgram/flux/stt.py,sha256=gY0KjlKryzRSL7Tl5rCRvjGccV-aWZnONHR1eHFM3MA,25714
|
|
201
216
|
pipecat/services/deepseek/__init__.py,sha256=bU5z_oNGzgrF_YpsD9pYIMtEibeZFaUobbRjJ9WcYyE,259
|
|
202
217
|
pipecat/services/deepseek/llm.py,sha256=5KjpU2blmhUTM3LcRE1ymdsk6OmoFkIzeQgyNOGwQh8,3112
|
|
203
|
-
pipecat/services/elevenlabs/__init__.py,sha256=
|
|
204
|
-
pipecat/services/elevenlabs/stt.py,sha256=
|
|
205
|
-
pipecat/services/elevenlabs/tts.py,sha256=
|
|
218
|
+
pipecat/services/elevenlabs/__init__.py,sha256=cMx5v0HEMh4WetMm5byR9tIjG6_wNVs9UxqWyB3tjlM,313
|
|
219
|
+
pipecat/services/elevenlabs/stt.py,sha256=F3xD82eOIy5OyyE-5StdoFFvKjIXlos2yyP0cyNQj6Y,12214
|
|
220
|
+
pipecat/services/elevenlabs/tts.py,sha256=jT6QOvBzMRoMCauhwUL4SvxrxZxe7yLjmYpVV7sGwlA,42753
|
|
206
221
|
pipecat/services/fal/__init__.py,sha256=z_kfZETvUcKy68Lyvni4B-RtdkOvz3J3eh6sFDVKq6M,278
|
|
207
222
|
pipecat/services/fal/image.py,sha256=vArKLKrIGoZfw_xeZY_E7zbUzfzVsScj-R7mOmVqjRQ,4585
|
|
208
223
|
pipecat/services/fal/stt.py,sha256=-5tw7N8srBJTS0Q65SN4csmLkIB6cLHR9pXKimxg55o,9678
|
|
209
224
|
pipecat/services/fireworks/__init__.py,sha256=-YCe9iOzvUmbNSQOtpbzG6xMxT69KTIC1oqgAVoykQ8,261
|
|
210
225
|
pipecat/services/fireworks/llm.py,sha256=IzzMYDXDoDnvJ5S7Trbw7I4Tcv2vPX7w2T6jk3Agvlw,3153
|
|
211
226
|
pipecat/services/fish/__init__.py,sha256=zXTvCM-fv0baT3uSV3FSGMyQKmNFDfj_Ka24LodPyHc,251
|
|
212
|
-
pipecat/services/fish/tts.py,sha256=
|
|
227
|
+
pipecat/services/fish/tts.py,sha256=5Ln9G3SjxSQ28lG4PXGnrRaUs_qy4PyBnafQYkdEwak,11959
|
|
213
228
|
pipecat/services/gemini_multimodal_live/__init__.py,sha256=dcl6OwNkW6ZjpgCvUeRu-W3n2pZ-89TUA-flpSrgnbs,87
|
|
214
|
-
pipecat/services/gemini_multimodal_live/events.py,sha256=
|
|
215
|
-
pipecat/services/gemini_multimodal_live/file_api.py,sha256=
|
|
216
|
-
pipecat/services/gemini_multimodal_live/gemini.py,sha256=
|
|
229
|
+
pipecat/services/gemini_multimodal_live/events.py,sha256=T7OZMd4_AkZsdLZfSHzX2P3ov39gadR0qlRdl2dck0k,1339
|
|
230
|
+
pipecat/services/gemini_multimodal_live/file_api.py,sha256=rFHSq1Zz8wDH2cUv07Y_eBDJzTyGhmmFjMosUD8m7P4,1310
|
|
231
|
+
pipecat/services/gemini_multimodal_live/gemini.py,sha256=APLbtNwzCuLkcj5tV_6itCA4Uy6Yg8I756ippMynCys,2253
|
|
217
232
|
pipecat/services/gladia/__init__.py,sha256=RhyPSWKluyK0keEVAOfHffTAhWo5hmytozf4a17p954,255
|
|
218
233
|
pipecat/services/gladia/config.py,sha256=rRn_TXGA7_DgKVWMQ6OvFZAoR1mpQoXu_LQBj3a-_EY,7088
|
|
219
|
-
pipecat/services/gladia/stt.py,sha256=
|
|
220
|
-
pipecat/services/google/__init__.py,sha256=
|
|
234
|
+
pipecat/services/gladia/stt.py,sha256=ORldZxvdvH_VXZiuWkAzqNyMOoWl-UHZkYp4ZZBfzRw,24628
|
|
235
|
+
pipecat/services/google/__init__.py,sha256=MDd6-gaugR1cUaa5cRxBJEEoo6bCnn0TBMWh8T5vz24,491
|
|
221
236
|
pipecat/services/google/frames.py,sha256=_HHljqYg7x0wh6nTRLqKaavThuMxkKFsDeLAFgVutmU,2277
|
|
222
237
|
pipecat/services/google/google.py,sha256=D_GWyJQxnJmJ0sM8SLwcxom5e8snF3W3IhsEjTM7Uqg,507
|
|
223
238
|
pipecat/services/google/image.py,sha256=LQYIctDIB31udYvk3meC9EXTY7VDdWb_veCTFEltTRU,4674
|
|
224
|
-
pipecat/services/google/llm.py,sha256=
|
|
225
|
-
pipecat/services/google/llm_openai.py,sha256=
|
|
226
|
-
pipecat/services/google/llm_vertex.py,sha256=
|
|
239
|
+
pipecat/services/google/llm.py,sha256=EasDVLh5GwFy2IA7zazFZXO2ZiwRCQuo-biYUvUxC6c,40129
|
|
240
|
+
pipecat/services/google/llm_openai.py,sha256=cJDSKFOFFbBxWdsRC2f2kuPa_lpi-DgnfaPJLNsz82E,7520
|
|
241
|
+
pipecat/services/google/llm_vertex.py,sha256=0UL2U0aDATWTAWYh-ypTNihF4RS1tsl_E4KwPhSQ76c,8137
|
|
227
242
|
pipecat/services/google/rtvi.py,sha256=PZb1yVny5YG7_XmJRXPzs3iYapeQ4XHreFN1v6KwTGM,3014
|
|
228
243
|
pipecat/services/google/stt.py,sha256=1vKZNEKZ-KLKp_7lA_VijznSqTwYRFYK1sDn2qteKtI,32814
|
|
229
|
-
pipecat/services/google/tts.py,sha256=
|
|
244
|
+
pipecat/services/google/tts.py,sha256=ecll4n10twIgOQTCKxCHGgsBDDAPUpnhd42QQpzE_hU,32328
|
|
245
|
+
pipecat/services/google/gemini_live/__init__.py,sha256=8ygwW2AFZKaE8JvEobIgM8PqjKmz05cr0ybmTe09bTM,125
|
|
246
|
+
pipecat/services/google/gemini_live/file_api.py,sha256=w7_tpZ9hoZlxdZNAv1lbvxsto5mJzTJU5_1ioMyvUsQ,7162
|
|
247
|
+
pipecat/services/google/gemini_live/llm.py,sha256=jqrz8z8bnZog8EeEexU1OTnSqG7Ebvs9B0sgBN9m-SA,63193
|
|
248
|
+
pipecat/services/google/gemini_live/llm_vertex.py,sha256=9TojHH5kdItL7kiABVBjX5Qb4uZPMa1-pQGOwGxbGaw,7326
|
|
230
249
|
pipecat/services/grok/__init__.py,sha256=PyaTSnqwxd8jdF5aFTe3lWM-TBhfDyUu9ahRl6nPS-4,251
|
|
231
250
|
pipecat/services/grok/llm.py,sha256=UwCWCiqGcDy_1T8Xo904CdXyAT7QfAQn3H_awtuxIcU,7409
|
|
232
251
|
pipecat/services/groq/__init__.py,sha256=jelL30bti_CbU6-1bZUTfJxACLi4h9HfMlpSV09aAQY,299
|
|
@@ -236,39 +255,51 @@ pipecat/services/groq/tts.py,sha256=zZMb1M8fSNiHmBFqNUKWabmzSyLuI-Dx3yXGKgOvAMk,
|
|
|
236
255
|
pipecat/services/hamsa/__init__.py,sha256=7obAD81uHdFzPA2boDaN1LmbhAtBciI5_QFC_I1oB-M,153
|
|
237
256
|
pipecat/services/hamsa/stt.py,sha256=94S1D1cVA8vwovkkcmeao1oUWzVtTmEBYOcJwBGy9H4,8240
|
|
238
257
|
pipecat/services/heygen/__init__.py,sha256=Jgq1fqrZVkpWC21D79L1cn5Ub8PnYgnnCaqC5pOlbIc,89
|
|
239
|
-
pipecat/services/heygen/api.py,sha256=
|
|
240
|
-
pipecat/services/heygen/client.py,sha256=
|
|
241
|
-
pipecat/services/heygen/video.py,sha256=
|
|
258
|
+
pipecat/services/heygen/api.py,sha256=CdsoPLt_W5pll7enaCGB8b4sx0lA-cN0yLRE3AfVuHw,9475
|
|
259
|
+
pipecat/services/heygen/client.py,sha256=6dMq-VYZj954phP6uWkeFPWpGYirfNi0asKS7ezQaRk,25504
|
|
260
|
+
pipecat/services/heygen/video.py,sha256=hPmq_WxmF_f1x9SN_zYfG47em2Tc-qbPU_IC1SWwc18,13225
|
|
261
|
+
pipecat/services/hume/__init__.py,sha256=Jgq1fqrZVkpWC21D79L1cn5Ub8PnYgnnCaqC5pOlbIc,89
|
|
262
|
+
pipecat/services/hume/tts.py,sha256=q5Zk8p_R-g2oYAWGLGZgUZtXvu69bXACcGtru8hz5dw,7585
|
|
242
263
|
pipecat/services/inworld/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
243
|
-
pipecat/services/inworld/tts.py,sha256=
|
|
264
|
+
pipecat/services/inworld/tts.py,sha256=vESlx2gjVNQDl24DUuxIRBxXqJtRyii9m1KaJT6py9w,26908
|
|
244
265
|
pipecat/services/lmnt/__init__.py,sha256=wb1p5pg2fAvA5fupVFoHqAEig8OlnHHzi6RjgT4smhs,251
|
|
245
|
-
pipecat/services/lmnt/tts.py,sha256=
|
|
266
|
+
pipecat/services/lmnt/tts.py,sha256=cf2kulWSDOhIUfaUAf5RQAalasfTQKFnfgpYTNpQhKc,10672
|
|
246
267
|
pipecat/services/mem0/__init__.py,sha256=IF5kd9cSXnZzS6kyoH_5sMy0j9NiPFYIPlIaVkGBgI8,257
|
|
247
|
-
pipecat/services/mem0/memory.py,sha256=
|
|
268
|
+
pipecat/services/mem0/memory.py,sha256=KZzzUyZCm84EiSgxhWAmdOVWaVH6YOUkPLpLF11RAN0,10629
|
|
248
269
|
pipecat/services/minimax/__init__.py,sha256=rfHd18ccf-oCytmkKFSyZ1tV-FWglM1D-iKNkA2_sxc,110
|
|
249
270
|
pipecat/services/minimax/tts.py,sha256=AmYOJWJncp1G-k48dUDXiEcsu9ZHJHVuMovfLQGBstk,12812
|
|
250
271
|
pipecat/services/mistral/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
-
pipecat/services/mistral/llm.py,sha256=
|
|
272
|
+
pipecat/services/mistral/llm.py,sha256=WK_gtttaXuIS1raYeEkkCtBpnd2f2Py1CZXYVqwZRK4,8386
|
|
252
273
|
pipecat/services/moondream/__init__.py,sha256=FBRSr8-vXhD7YyXcqOfjX7VFq3XcujwX3kp_MOs9vzg,267
|
|
253
|
-
pipecat/services/moondream/vision.py,sha256=
|
|
274
|
+
pipecat/services/moondream/vision.py,sha256=UcDUmsvW1lvH0PjOpOQhc8caT5iwHBS7ePYr4QpxpsQ,5235
|
|
254
275
|
pipecat/services/neuphonic/__init__.py,sha256=31acn0fpeH6Zfan6kKDy4SVa9NXyeHjBl5DSZSYNRTs,261
|
|
255
|
-
pipecat/services/neuphonic/tts.py,sha256=
|
|
276
|
+
pipecat/services/neuphonic/tts.py,sha256=pVkKTa-DSOJepgPnweDstQ04GAe_BxYoIKm-snRy6BI,20344
|
|
256
277
|
pipecat/services/nim/__init__.py,sha256=bRubOujNmtaBTSBgd3BBXP5fClzbn09ajYPmmYZsJpA,249
|
|
257
278
|
pipecat/services/nim/llm.py,sha256=o4WPGI6kOmSiMV7WwOZ0cNEAoq9hW4Aqs2R8X7c9i94,4427
|
|
258
279
|
pipecat/services/ollama/__init__.py,sha256=aw-25zYsR8LR74OFFlMKMTnJjaKwOzdPWVsClueNRkI,255
|
|
259
280
|
pipecat/services/ollama/llm.py,sha256=rfpG92LRHGJlpENKhF6ld8CLVS9DxlKW-WRVNldOIGs,1605
|
|
260
|
-
pipecat/services/openai/__init__.py,sha256=
|
|
261
|
-
pipecat/services/openai/base_llm.py,sha256=
|
|
281
|
+
pipecat/services/openai/__init__.py,sha256=V0ZVa8PzEm3hmcStYICbAsYwfgk4ytZ6kiQoq9UZPmI,354
|
|
282
|
+
pipecat/services/openai/base_llm.py,sha256=J4Ltg1KOXciiUIMBFLn0SmDTZereEE-1LKrPfBsLzFw,19127
|
|
262
283
|
pipecat/services/openai/image.py,sha256=3e3h-dVQ6DQuQE7fp8akXwRMd-oYOdGuZg7RCOjHu9A,2994
|
|
263
284
|
pipecat/services/openai/llm.py,sha256=_aKtz1VebSFUUenT3tH6mBW9pSCm65_u45cDu_dkTzs,7396
|
|
264
285
|
pipecat/services/openai/stt.py,sha256=Idf0k73kxFyDgNRBt62MFpoKKNsBV9bwvJteJ6MGWzQ,2419
|
|
265
|
-
pipecat/services/openai/tts.py,sha256=
|
|
286
|
+
pipecat/services/openai/tts.py,sha256=CnBVmUxa5UYOLoiWmA-cBC-9YyoaAhHgIzqA1i9wX0s,5987
|
|
287
|
+
pipecat/services/openai/realtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
|
+
pipecat/services/openai/realtime/context.py,sha256=pV1GO-ylQqyATVnfYOa4pSR2-QXpvQfSCuRRETVtmE0,10799
|
|
289
|
+
pipecat/services/openai/realtime/events.py,sha256=QuxgmLS8Bx8PqgmUdngQYPtlq13b7akm51S_dzkLlS8,34519
|
|
290
|
+
pipecat/services/openai/realtime/frames.py,sha256=xEVUSc4dLTq--tzhhAAVogfYdkvxbwOMRGUjf19Y8OU,937
|
|
291
|
+
pipecat/services/openai/realtime/llm.py,sha256=ry5sOqf1ycBnOsh40GLKofhn8a9rVwe8F-XubhFKC6M,34818
|
|
292
|
+
pipecat/services/openai_realtime/__init__.py,sha256=pqtyJ9rzMbSqTyRdKrUIkmYpqeT1SdqyoGxMZUQb9Xw,744
|
|
293
|
+
pipecat/services/openai_realtime/azure.py,sha256=jEPGOHSQ299bmw6MkEHhv1N-sIALszesZfNhdnCxleQ,530
|
|
294
|
+
pipecat/services/openai_realtime/context.py,sha256=RFmMCyOmVS4ExFn_ihnf5rlrFSqtJIdoQlePDfDtZ5g,552
|
|
295
|
+
pipecat/services/openai_realtime/events.py,sha256=2PzIiXKCKFXYZgWYHxGLhUSiO2D1XrvIveBzoaewgi8,561
|
|
296
|
+
pipecat/services/openai_realtime/frames.py,sha256=Zgt-4TMH8QaAkiQJ38XaAEKuRqlpHDMZATeaJ0azrPc,545
|
|
266
297
|
pipecat/services/openai_realtime_beta/__init__.py,sha256=heX2ztWOmOE3HvI8ooEAccghOs1HzXL0j9DaPaH_86w,248
|
|
267
|
-
pipecat/services/openai_realtime_beta/azure.py,sha256=
|
|
298
|
+
pipecat/services/openai_realtime_beta/azure.py,sha256=JoMFdb8ZPIkR0RJZltgptTkJTfNAj6NWW3vhHKnhj_A,2980
|
|
268
299
|
pipecat/services/openai_realtime_beta/context.py,sha256=pV1GO-ylQqyATVnfYOa4pSR2-QXpvQfSCuRRETVtmE0,10799
|
|
269
300
|
pipecat/services/openai_realtime_beta/events.py,sha256=ipltnxRrpJbZ3zGhdXvA5F5xRbtx4-UZJUBJAxQBkWU,30516
|
|
270
301
|
pipecat/services/openai_realtime_beta/frames.py,sha256=dQrGu5FErvozPvlyvDADj8_ZiG8bclYAc2jQt5NE6aE,942
|
|
271
|
-
pipecat/services/openai_realtime_beta/openai.py,sha256=
|
|
302
|
+
pipecat/services/openai_realtime_beta/openai.py,sha256=ExByvtYzemOZf5BvJl7QOLPYyrREQVqyhFraOn5v5Cs,32925
|
|
272
303
|
pipecat/services/openpipe/__init__.py,sha256=skCnH03aR4OvAuTOD4zoQWrRseC6Fi0AljZwv6EUUQM,259
|
|
273
304
|
pipecat/services/openpipe/llm.py,sha256=nOo0uZ5BFjZoMPyn2De-M8yvRNhxueOKStrmsAAuR20,3928
|
|
274
305
|
pipecat/services/openrouter/__init__.py,sha256=TEyNHtRkoRt6qse4jBNVEPKXCkqmT-xtQ0XB-zFe_jE,263
|
|
@@ -278,11 +309,11 @@ pipecat/services/perplexity/llm.py,sha256=uwd5eLchE26BK9fJSWx9yZB6IXRxAd-3jW3AYv
|
|
|
278
309
|
pipecat/services/piper/__init__.py,sha256=BNqnIk6pG2DVvJ0uI2ZB93M3uXX_0B1ByfO7dnKjsBY,253
|
|
279
310
|
pipecat/services/piper/tts.py,sha256=WURnz54hTaoHHoc2cJTTQe9yV3jSoQlM25J-Ozj0O24,3992
|
|
280
311
|
pipecat/services/playht/__init__.py,sha256=Ko1WjLQtTaHvZAgCuONeRkkXRbrCuRx53C296VLa2YY,255
|
|
281
|
-
pipecat/services/playht/tts.py,sha256=
|
|
312
|
+
pipecat/services/playht/tts.py,sha256=RlsOGpPEhQ1Z7sPJtqrYmQtAKMezpFgIvnOAcpj8Fck,23099
|
|
282
313
|
pipecat/services/qwen/__init__.py,sha256=gS81Y-9gy_ke17m-2Tt-8mDrawcFNZ15_i0OnT-HYyg,251
|
|
283
314
|
pipecat/services/qwen/llm.py,sha256=X6GOaoKBmQzEI8n-GO2bu4AFdhNFXt6wf7DMMwJ0QFo,1969
|
|
284
315
|
pipecat/services/rime/__init__.py,sha256=lK26ZYuDZS51OybSVPAx6rt710UA1ZBP31wPL1_VeLg,251
|
|
285
|
-
pipecat/services/rime/tts.py,sha256=
|
|
316
|
+
pipecat/services/rime/tts.py,sha256=ZCuwPSPxR-pC59WH8T53z5PYXNBzT9GFX_79F3s0gaE,20760
|
|
286
317
|
pipecat/services/riva/__init__.py,sha256=rObSsj504O_TMXhPBg_ymqKslZBhovlR-A0aaRZ0O6A,276
|
|
287
318
|
pipecat/services/riva/stt.py,sha256=dtg8toijmexWB3uipw0EQ7ov3DFgHj40kFFv1Zadmmc,25116
|
|
288
319
|
pipecat/services/riva/tts.py,sha256=idbqx3I2NlWCXtrIFsjEaYapxA3BLIA14ai3aMBh-2w,8158
|
|
@@ -291,15 +322,15 @@ pipecat/services/sambanova/llm.py,sha256=5XVfPLEk__W8ykFqLdV95ZUhlGGkAaJwmbciLdZ
|
|
|
291
322
|
pipecat/services/sambanova/stt.py,sha256=ZZgEZ7WQjLFHbCko-3LNTtVajjtfUvbtVLtFcaNadVQ,2536
|
|
292
323
|
pipecat/services/sarvam/__init__.py,sha256=B4TN_tTHV9fWg0aSoPvfQlXISA0nJaQ9-u08I9UWvH4,280
|
|
293
324
|
pipecat/services/sarvam/stt.py,sha256=p9Iq4loMwnftNZ_S0WoFSoX7iBbRKyja6RsVWbpj508,19314
|
|
294
|
-
pipecat/services/sarvam/tts.py,sha256=
|
|
325
|
+
pipecat/services/sarvam/tts.py,sha256=WW8w2r3kIT8EJt4SuXodPmf9paR1Lzb33izuQ9ucdys,24821
|
|
295
326
|
pipecat/services/simli/__init__.py,sha256=cbDcqOaGsEgKbGYKpJ1Vv7LN4ZjOWA04sE84WW5vgQI,257
|
|
296
|
-
pipecat/services/simli/video.py,sha256=
|
|
327
|
+
pipecat/services/simli/video.py,sha256=Zu2XLvl2Y6VHaWzT9wEdzW9d0EYoZyzYLxjQFyV8vho,8320
|
|
297
328
|
pipecat/services/soniox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
298
329
|
pipecat/services/soniox/stt.py,sha256=AhJF2YOzmqgB80x22jocgzr3neYCBMyxzP_WjkYR9Gc,15441
|
|
299
330
|
pipecat/services/speechmatics/__init__.py,sha256=Jgq1fqrZVkpWC21D79L1cn5Ub8PnYgnnCaqC5pOlbIc,89
|
|
300
|
-
pipecat/services/speechmatics/stt.py,sha256=
|
|
331
|
+
pipecat/services/speechmatics/stt.py,sha256=Uzal8sfbD-AQBUB3Nz-He2Pwlp4-vlkQPS1rcqXw6n0,44544
|
|
301
332
|
pipecat/services/tavus/__init__.py,sha256=SNyyi2Xq6tXIihDG2Bwvmg6Srbd-uWd1RwG-NKWcPuI,257
|
|
302
|
-
pipecat/services/tavus/video.py,sha256=
|
|
333
|
+
pipecat/services/tavus/video.py,sha256=TspwxXi3tkUKk4vgZJ_PtsRsHn8euQR3H2S4ZLqp7ko,10704
|
|
303
334
|
pipecat/services/together/__init__.py,sha256=hNMycJDDf3CLiL9WA9fwvMdYphyDWLv0OabYIMgvC1c,259
|
|
304
335
|
pipecat/services/together/llm.py,sha256=VSayO-U6g9Ld0xK9CXRQPUsd5gWJKtiA8qDAyXgsSkE,1958
|
|
305
336
|
pipecat/services/ultravox/__init__.py,sha256=EoHCSXI2o0DFQslELgkhAGZtxDj63gZi-9ZEhXljaKE,259
|
|
@@ -315,23 +346,25 @@ pipecat/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
315
346
|
pipecat/sync/base_notifier.py,sha256=Tt9gJGZ8rXi0PFYedadAPN599UT0MVIFBHNXpjIlH6g,906
|
|
316
347
|
pipecat/sync/event_notifier.py,sha256=h50fC-RBGaGldWZx_wpgOmMIwJiq0PeNwQq5GPmfRR0,1284
|
|
317
348
|
pipecat/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
|
-
pipecat/tests/utils.py,sha256=
|
|
349
|
+
pipecat/tests/utils.py,sha256=DEHDQV8uhCuKIqoHUPGVdUoCiKqTCG9zv5GqLXWWwvY,7870
|
|
319
350
|
pipecat/transcriptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
|
-
pipecat/transcriptions/language.py,sha256
|
|
351
|
+
pipecat/transcriptions/language.py,sha256=-mWI1MiZbasuoqZTOBH69dAmoM7-UJzWq9rSCcrnmh4,8228
|
|
321
352
|
pipecat/transports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
|
-
pipecat/transports/base_input.py,sha256=
|
|
323
|
-
pipecat/transports/base_output.py,sha256=
|
|
353
|
+
pipecat/transports/base_input.py,sha256=hTMszjJ8G5eWMN6a24c26GrfVRMVg43bF4bUQO8Tesc,19962
|
|
354
|
+
pipecat/transports/base_output.py,sha256=ST0f5uFr9_TI--YvUUq5nzakOhHVbQDYsCu8JSlJBBk,35797
|
|
324
355
|
pipecat/transports/base_transport.py,sha256=JlNiH0DysTfr6azwHauJqY_Z9HJC702O29Q0qrsLrg4,7530
|
|
325
356
|
pipecat/transports/daily/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
|
-
pipecat/transports/daily/transport.py,sha256=
|
|
357
|
+
pipecat/transports/daily/transport.py,sha256=VanO33ff9g6px-vwGgT6M7cMVg786pOGfMU7Okm7a78,91917
|
|
327
358
|
pipecat/transports/daily/utils.py,sha256=NJzmtr7sFMkGCbJAWNvCrPyG6qikJC26UPhdgGaVxP4,14848
|
|
359
|
+
pipecat/transports/heygen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
|
+
pipecat/transports/heygen/transport.py,sha256=emIaT-hO5U_p9_SXQ4ouXi5VaL_8_MuikNWERW5uqps,13666
|
|
328
361
|
pipecat/transports/livekit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
|
-
pipecat/transports/livekit/transport.py,sha256=
|
|
362
|
+
pipecat/transports/livekit/transport.py,sha256=7-NHsuPI_BkXAGFEFPiycWbeczfId_NVTF2ijz5G9K0,44856
|
|
330
363
|
pipecat/transports/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
-
pipecat/transports/local/audio.py,sha256=
|
|
332
|
-
pipecat/transports/local/tk.py,sha256=
|
|
364
|
+
pipecat/transports/local/audio.py,sha256=AtylYzmyqx6iDEETSaxbxVp592yDGydsv6_G5XRiR2Q,7597
|
|
365
|
+
pipecat/transports/local/tk.py,sha256=06LLWCtRHk_skXtvRbUNYVgSK8dDYm-Z2MCMduj47Mc,9347
|
|
333
366
|
pipecat/transports/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
|
-
pipecat/transports/network/fastapi_websocket.py,sha256=
|
|
367
|
+
pipecat/transports/network/fastapi_websocket.py,sha256=D0Dvoc3o8yU3BiHeta083nfW_emkYZCM2ujW57vTOJg,735
|
|
335
368
|
pipecat/transports/network/small_webrtc.py,sha256=kbIbFqV3NnaM2aLXAVknwzrpy7jW4-3qRUuf5g6dZ2k,721
|
|
336
369
|
pipecat/transports/network/webrtc_connection.py,sha256=Cii3XrmpQik4n8UuuN14XqfjhP7Vu5ThdxsA-MMS638,694
|
|
337
370
|
pipecat/transports/network/websocket_client.py,sha256=UKhQEfJ77rKbW4wcw0YOdRQouLg92L4IhbA2F1pYQ8M,707
|
|
@@ -343,22 +376,23 @@ pipecat/transports/services/tavus.py,sha256=R-IK2MO1ES1NcYbMYfvsG_LceXlYhpMA0xkV
|
|
|
343
376
|
pipecat/transports/services/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
377
|
pipecat/transports/services/helpers/daily_rest.py,sha256=jzt_PNuQ1N1YR2_zRrM0wNs01fHmClLf1utNKn_FT8Q,554
|
|
345
378
|
pipecat/transports/smallwebrtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
|
-
pipecat/transports/smallwebrtc/connection.py,sha256=
|
|
347
|
-
pipecat/transports/smallwebrtc/
|
|
379
|
+
pipecat/transports/smallwebrtc/connection.py,sha256=UPe0qOuWVQSJbJnOlCtyLcuSl5aDMcH1D1qL1DiaONE,27764
|
|
380
|
+
pipecat/transports/smallwebrtc/request_handler.py,sha256=FLxhRTsA7Av9Oh-ID_MhtE2hgS7l7q9xc06fqxl2_iY,7942
|
|
381
|
+
pipecat/transports/smallwebrtc/transport.py,sha256=6NelvoT_II7aekkNDqR3zbRjESf7xQaCOp82xjuFqu0,35949
|
|
348
382
|
pipecat/transports/tavus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
-
pipecat/transports/tavus/transport.py,sha256=
|
|
383
|
+
pipecat/transports/tavus/transport.py,sha256=VvliGwdi9fu-X-SIU05LU4IyyyhoedO7xvMPNxptIq8,28604
|
|
350
384
|
pipecat/transports/websocket/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
-
pipecat/transports/websocket/client.py,sha256=
|
|
352
|
-
pipecat/transports/websocket/fastapi.py,sha256=
|
|
353
|
-
pipecat/transports/websocket/server.py,sha256=
|
|
385
|
+
pipecat/transports/websocket/client.py,sha256=LwUxl_8xiTwY7FAHjWwFnVVOw8Foj42PufpDqSisi9I,17837
|
|
386
|
+
pipecat/transports/websocket/fastapi.py,sha256=XFwcPYFbclhshk2G_i12U7kjIknDq4fmiGTFU4j7r_w,19951
|
|
387
|
+
pipecat/transports/websocket/server.py,sha256=648A4w3y7hXtXwfIr-BlVjpQp-YkqQuOrdK1AU9gDQ8,18351
|
|
354
388
|
pipecat/transports/whatsapp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
|
-
pipecat/transports/whatsapp/api.py,sha256=
|
|
356
|
-
pipecat/transports/whatsapp/client.py,sha256=
|
|
389
|
+
pipecat/transports/whatsapp/api.py,sha256=MjpouF8IXXqnhhteU1gMvGp_I1_V2_ErtynstNZCy7M,11308
|
|
390
|
+
pipecat/transports/whatsapp/client.py,sha256=kE5Rcr1JmyERwVhCvKjZCwI3QI9lc4sI44Aw9Uod5SE,17565
|
|
357
391
|
pipecat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
-
pipecat/utils/base_object.py,sha256=
|
|
392
|
+
pipecat/utils/base_object.py,sha256=xnG4FX-ZrmswM2GItIMDtSVus_lHjaeTigi8yhw5n7o,7185
|
|
359
393
|
pipecat/utils/logger_config.py,sha256=5-RmvReZIINeqSXz3ALhEIiMZ_azmpOxnlIkdyCjWWk,5606
|
|
360
394
|
pipecat/utils/network.py,sha256=RRQ7MmTcbeXBJ2aY5UbMCQ6elm5B8Rxkn8XqkJ9S0Nc,825
|
|
361
|
-
pipecat/utils/string.py,sha256=
|
|
395
|
+
pipecat/utils/string.py,sha256=YbQLVNrY2-LzInOiDFqXmHg7XLewJak37q71Sen3_xo,7306
|
|
362
396
|
pipecat/utils/time.py,sha256=lirjh24suz9EI1pf2kYwvAYb3I-13U_rJ_ZRg3nRiGs,1741
|
|
363
397
|
pipecat/utils/utils.py,sha256=T2y1Mcd9yWiZiIToUiRkhW-n7EFf8juk3kWX3TF8XOQ,2451
|
|
364
398
|
pipecat/utils/asyncio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -374,11 +408,11 @@ pipecat/utils/tracing/__init__.py,sha256=nxmGDaJlpvrsxDnZZb3ApBDcTdZejoTIwF06sN0
|
|
|
374
408
|
pipecat/utils/tracing/class_decorators.py,sha256=QMfL0pz325CTpSjDPeqO5lNDfqk2vBFsMIAyEG9Ec84,7965
|
|
375
409
|
pipecat/utils/tracing/conversation_context_provider.py,sha256=3NUWjX3KVHS3QTIwn8rXyz0vjQiqIOIqVLfipBpVRco,3604
|
|
376
410
|
pipecat/utils/tracing/service_attributes.py,sha256=nDalruwTN-qw716Gn2ldXBv0j8bfThoGZgvF7TACEos,17148
|
|
377
|
-
pipecat/utils/tracing/service_decorators.py,sha256=
|
|
411
|
+
pipecat/utils/tracing/service_decorators.py,sha256=fwzxFpi8DJl6BJbK74G0UEB4ccMJgT4LRC7Dj5wTAT4,50546
|
|
378
412
|
pipecat/utils/tracing/setup.py,sha256=7TEgPNpq6M8lww8OQvf0P9FzYc5A30xICGklVA-fua0,2892
|
|
379
413
|
pipecat/utils/tracing/turn_context_provider.py,sha256=ikon3plFOx0XbMrH6DdeHttNpb-U0gzMZIm3bWLc9eI,2485
|
|
380
414
|
pipecat/utils/tracing/turn_trace_observer.py,sha256=dma16SBJpYSOE58YDWy89QzHyQFc_9gQZszKeWixuwc,9725
|
|
381
|
-
dv_pipecat_ai-0.0.85.
|
|
382
|
-
dv_pipecat_ai-0.0.85.
|
|
383
|
-
dv_pipecat_ai-0.0.85.
|
|
384
|
-
dv_pipecat_ai-0.0.85.
|
|
415
|
+
dv_pipecat_ai-0.0.85.dev698.dist-info/METADATA,sha256=l9LjPnWF8C-VB0NHPuXS-VY36hK2kYPGNmaH8R-c6p4,31861
|
|
416
|
+
dv_pipecat_ai-0.0.85.dev698.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
417
|
+
dv_pipecat_ai-0.0.85.dev698.dist-info/top_level.txt,sha256=kQzG20CxGf-nSsHmtXHx3hY2-8zHA3jYg8jk0TajqXc,8
|
|
418
|
+
dv_pipecat_ai-0.0.85.dev698.dist-info/RECORD,,
|
|
@@ -16,7 +16,12 @@ from typing import Any, Dict, Generic, List, TypeVar
|
|
|
16
16
|
from loguru import logger
|
|
17
17
|
|
|
18
18
|
from pipecat.adapters.schemas.tools_schema import ToolsSchema
|
|
19
|
-
from pipecat.processors.aggregators.llm_context import
|
|
19
|
+
from pipecat.processors.aggregators.llm_context import (
|
|
20
|
+
LLMContext,
|
|
21
|
+
LLMContextMessage,
|
|
22
|
+
LLMSpecificMessage,
|
|
23
|
+
NotGiven,
|
|
24
|
+
)
|
|
20
25
|
|
|
21
26
|
# Should be a TypedDict
|
|
22
27
|
TLLMInvocationParams = TypeVar("TLLMInvocationParams", bound=dict[str, Any])
|
|
@@ -38,6 +43,16 @@ class BaseLLMAdapter(ABC, Generic[TLLMInvocationParams]):
|
|
|
38
43
|
Subclasses must implement provider-specific conversion logic.
|
|
39
44
|
"""
|
|
40
45
|
|
|
46
|
+
@property
|
|
47
|
+
@abstractmethod
|
|
48
|
+
def id_for_llm_specific_messages(self) -> str:
|
|
49
|
+
"""Get the identifier used in LLMSpecificMessage instances for this LLM provider.
|
|
50
|
+
|
|
51
|
+
Returns:
|
|
52
|
+
The identifier string.
|
|
53
|
+
"""
|
|
54
|
+
pass
|
|
55
|
+
|
|
41
56
|
@abstractmethod
|
|
42
57
|
def get_llm_invocation_params(self, context: LLMContext, **kwargs) -> TLLMInvocationParams:
|
|
43
58
|
"""Get provider-specific LLM invocation parameters from a universal LLM context.
|
|
@@ -76,6 +91,28 @@ class BaseLLMAdapter(ABC, Generic[TLLMInvocationParams]):
|
|
|
76
91
|
"""
|
|
77
92
|
pass
|
|
78
93
|
|
|
94
|
+
def create_llm_specific_message(self, message: Any) -> LLMSpecificMessage:
|
|
95
|
+
"""Create an LLM-specific message (as opposed to a standard message) for use in an LLMContext.
|
|
96
|
+
|
|
97
|
+
Args:
|
|
98
|
+
message: The message content.
|
|
99
|
+
|
|
100
|
+
Returns:
|
|
101
|
+
A LLMSpecificMessage instance.
|
|
102
|
+
"""
|
|
103
|
+
return LLMSpecificMessage(llm=self.id_for_llm_specific_messages, message=message)
|
|
104
|
+
|
|
105
|
+
def get_messages(self, context: LLMContext) -> List[LLMContextMessage]:
|
|
106
|
+
"""Get messages from the LLM context, including standard and LLM-specific messages.
|
|
107
|
+
|
|
108
|
+
Args:
|
|
109
|
+
context: The LLM context containing messages.
|
|
110
|
+
|
|
111
|
+
Returns:
|
|
112
|
+
List of messages including standard and LLM-specific messages.
|
|
113
|
+
"""
|
|
114
|
+
return context.get_messages(self.id_for_llm_specific_messages)
|
|
115
|
+
|
|
79
116
|
def from_standard_tools(self, tools: Any) -> List[Any] | NotGiven:
|
|
80
117
|
"""Convert tools from standard format to provider format.
|
|
81
118
|
|