Mert Sefa AKGUN
df6c2fc403
fix(services): handle TranscriptionFrame separately in TTSService
...
Exclude TranscriptionFrame from text frame processing in TTSService by updating the type check condition. This resolves unintended processing behavior when handling different frame types.
2025-01-11 13:00:38 +03:00
Mark Backman
a8ae79831e
Merge pull request #921 from pipecat-ai/mb/playht-http
...
PlayHTHttpTTSService fixes
2025-01-10 13:26:45 -05:00
Mark Backman
86516d2415
PlayHTHttpTTSService fixes
2025-01-10 13:21:27 -05:00
Vanessa Pyne
5cd9dab14b
Merge pull request #949 from imsakg/main
...
fix(examples): correct TTS service import and setup
2025-01-10 10:58:50 -06:00
Kwindla Hultman Kramer
a3e2e06975
Merge pull request #961 from pipecat-ai/khk/tiny-chatbot-readme-fix
...
fixed 404 in SimpleChatbot iOS example README
2025-01-10 08:45:05 -08:00
Kwindla Hultman Kramer
e7107b99c5
fixed 404 in SimpleChatbot iOS example README
2025-01-10 08:37:13 -08:00
Mark Backman
6802459165
Merge pull request #956 from pipecat-ai/mb/tavus
...
Update the Tavus example and comment about using the PERSONA_ID
2025-01-10 11:18:05 -05:00
kompfner
a798bf18f2
Merge pull request #955 from pipecat-ai/ios-simple-chatbot-mainactor-fixes
...
iOS SimpleChatbot @MainActor fixes
2025-01-10 09:37:02 -05:00
Mark Backman
cb22de0d13
Update the Tavus example and comment about using the PERSONA_ID
2025-01-10 08:01:00 -05:00
marcus-daily
7d161cc53b
Setting target SDK to 35
2025-01-10 09:50:37 +00:00
marcus-daily
255abf46ef
Updating Gradle and AGP
2025-01-10 09:50:37 +00:00
marcus-daily
27579bcb70
Fixing imports
2025-01-10 09:50:37 +00:00
marcus-daily
1295b64879
Updating library dependencies
2025-01-10 09:50:37 +00:00
marcus-daily
ca57670f65
Removing unnecessary drawables
2025-01-10 09:50:37 +00:00
marcus-daily
06d0a231b9
Android demo app for simple-chatbot example
2025-01-10 09:50:37 +00:00
Mert Sefa AKGUN
67af4e619b
style(examples): fix ruff formatting in Gemini text example
...
Refactor `CartesiaTTSService` instantiation to comply with line
length requirements from the ruff linter.
2025-01-10 12:32:53 +03:00
Mert Sefa AKGUN
21c274944e
Update examples/foundational/26d-gemini-multimodal-live-text.py
...
Co-authored-by: Vanessa Pyne <vipyne@gmail.com >
2025-01-10 12:28:13 +03:00
Paul Kompfner
3239249feb
In the iOS SimpleChatbot, fix @MainActor-related warnings (which would be errors in Swift 6). The delegate methods aren't contractually guaranteed to run on the main thread, so we can't mark them as @MainActor.
2025-01-09 17:35:44 -05:00
Paul Kompfner
216979c377
Bump iOS SimpleChatbot's pipecat-client-ios-daily dependency to version 0.3.1
2025-01-09 16:22:26 -05:00
Filipi da Silva Fuchter
b9db53d3cd
Merge pull request #952 from pipecat-ai/fixing_gemini_function_calling
...
Fixing GeminiMultimodalLiveLLMService function calling to work with pipecat-flows
2025-01-09 17:50:25 -03:00
Filipi Fuchter
58bfcc8370
Fixing GeminiMultimodalLiveLLMService function calling when using with pipecat-flows.
2025-01-09 12:22:37 -03:00
Mert Sefa AKGUN
6664c492ac
feat(gemini): enable audio transcription in live text example
...
Add options to transcribe both user and model audio during the GeminiMultimodalLiveLLMService setup in the 26d-gemini-multimodal-live-text.py example.
2025-01-09 15:38:33 +03:00
Mert Sefa AKGUN
7634058f97
fix(examples): correct TTS service import and setup
...
- Update import to use CartesiaTTSService instead of CartesiaMultiLingualTTSService.
- Adjust GeminiMultimodalLiveLLMService setup to use set_model_modalities with TEXT modality.
2025-01-09 02:19:08 +03:00
Mark Backman
39c6446bdc
Merge pull request #947 from pipecat-ai/mb/add-rime-set-voices
...
Add setters for model and voice to RimeHttpTTSService
2025-01-08 14:25:24 -05:00
Filipi da Silva Fuchter
2df7dfcc91
Merge pull request #943 from pipecat-ai/simple_chat_bot_ios
...
SimpleChatbot iOS app.
2025-01-08 16:17:39 -03:00
Mark Backman
c23c9e046c
Add setters for model and voice to RimeHttpTTSService
2025-01-08 14:17:32 -05:00
Mark Backman
9dae753e8c
Merge pull request #926 from imsakg/main
...
feat(gemini): add text handling to GeminiMultimodalLive
2025-01-08 13:42:17 -05:00
Mert Sefa AKGUN
40e9ee6d63
fix(examples): correct import order in Gemini example
...
- Move `CartesiaMultiLingualTTSService` import to maintain proper order.
- Reorganize `enum` import to adhere to styling standards.
2025-01-08 21:14:29 +03:00
Mert Sefa AKGUN
a342fe732e
docs: update CHANGELOG with Gemini modalities and examples
2025-01-08 19:34:42 +03:00
Mert Sefa AKGUN
a729834482
refactor(gemini): reposition WebSocket connection code
...
Move WebSocket connection setup earlier in the function for better
organization and to prepare for subsequent configuration steps.
2025-01-08 19:29:36 +03:00
Mert Sefa AKGUN
94a6f1086e
feat(gemini): change default modality to AUDIO
...
Modify the default modality in the `InputParams` class from TEXT to AUDIO
to better align with the intended use case for GeminiMultimodalLive
service.
2025-01-08 19:29:36 +03:00
Mert Sefa AKGUN
b42d3a8257
feat(gemini): add modality configuration for GeminiMultimodalLive
...
- Introduce `GeminiMultimodalModalities` enum for modality options.
- Add modality field to `InputParams`, defaulting to text.
- Simplify modality setup with `set_model_modalities` method.
- Refactor WebSocket configuration to support dynamic response modalities.
2025-01-08 19:29:36 +03:00
Mert Sefa AKGUN
12ae980abe
feat(gemini): handle full text response in GeminiMultimodalLive
...
- Add a buffer to store bot text responses.
- Push a `LLMFullResponseStartFrame` when text begins.
- Clear the text buffer and send `LLMFullResponseEndFrame` after processing.
2025-01-08 19:29:36 +03:00
Mert Sefa AKGUN
cdb909958c
feat(examples): add Gemini multimodal live text example
...
Introduce a new example `26d-gemini-multimodal-live-text.py` to
demonstrate the use of GeminiMultimodalLiveLLMService with text-only
responses. This example sets up a pipeline for audio input via DailyTransport,
processing with Gemini, and output via Cartesia TTS.
2025-01-08 19:29:35 +03:00
Mert Sefa AKGUN
c72c3025f6
feat(gemini): add configuration methods for response modalities
...
- Introduce `set_model_only_audio` and `set_model_only_text` methods
to toggle between audio-only and text-only response modes in
`GeminiMultimodalLiveLLMService`.
- Refactor configuration setup to a class attribute for improved
reusability and maintenance.
- Remove redundant configuration instantiation in the WebSocket
connection setup process.
2025-01-08 19:29:35 +03:00
Mert Sefa AKGUN
5cbd719780
feat(gemini): add text handling to GeminiMultimodalLive
...
- Introduce text attribute in Part class for handling string data.
- Incorporate text processing in GeminiMultimodalLiveLLMService to push TextFrame if text is present.
2025-01-08 19:29:35 +03:00
Filipi Fuchter
23d6290672
Removing not used class.
2025-01-08 12:05:04 -03:00
Filipi Fuchter
d4e7e11981
SimpleChatbot iOS app.
2025-01-08 12:00:11 -03:00
Mark Backman
8057fe3fcf
Merge pull request #742 from Vaibhav159/vl_feature_websocket_fastapi_timeout
...
adding session_timeout param
2025-01-08 09:05:41 -05:00
Vaibhav159
3b446234a7
fix hyperlink
2025-01-08 10:54:27 +05:30
Vaibhav159
768487ffb3
final changelog
2025-01-08 10:53:32 +05:30
Vaibhav159
2da5620d10
adding changelog
2025-01-08 10:50:09 +05:30
Vaibhav159
af90d65b3b
adding session timeout example in websocket-server example
2025-01-08 10:43:10 +05:30
Vaibhav159
c8569a7b67
Merge remote-tracking branch 'upstream/main' into vl_feature_websocket_fastapi_timeout
2025-01-08 10:21:36 +05:30
Vaibhav159
0ecd98c873
Merge branch 'main' into vl_feature_websocket_fastapi_timeout
2025-01-08 10:20:55 +05:30
Mark Backman
6f863ba2c6
Merge pull request #938 from jcbjoe/jg/optional-authentication-polly
...
Changed Polly authentication params to be optional
2025-01-07 15:37:23 -05:00
Mark Backman
602ca5ebe6
Merge pull request #939 from Vaibhav159/vl_adding_daily_room_properties
...
adding more daily room params
2025-01-07 14:33:59 -05:00
Vaibhav159
787ade41f3
adding missing doc string
2025-01-08 00:58:01 +05:30
Joe Garlick
bb767831d5
Added: Changelog entry
2025-01-07 19:05:02 +00:00
Mark Backman
bc25a771dc
Merge pull request #935 from pipecat-ai/hush/modalUpdate
...
docs: update dependencies for modal demo
2025-01-07 13:57:46 -05:00