Dominik Roblek
Dominik Roblek
This theme is not working on MacOS: It's not rendered as a dark theme (i.e. white on black) but as a light theme (black on white). Otherwise it looks really...
`EndPipeFrame` class does not exist, but it is referenced from `src/pipecat/pipeline/merge_pipeline.py` and `examples/foundational/04-utterance-and-speech.py`.
Occasionally, I encounter this error in CartesiaTTSService. Could this be a bug in the CartesiaTTSService, the Cartesia library, or my code? 2024-09-18 09:25:01.202 | ERROR | pipecat.services.cartesia:_receive_task_handler:189 - CartesiaTTSService#0 exception:...
In the `AzureTTSService` class, there is a comment that states: ``` # Azure always sends a 44-byte header. Strip it off. yield AudioRawFrame( audio=result.audio_data[44:], sample_rate=self._sample_rate, num_channels=1, ) ``` I believe...
In the `AzureTTSService`, the `sample_rate` parameter does not control the actual sample rate. To do so, you need to set the `speech_synthesis_output_format`. For example: ``` speech_config.set_speech_synthesis_output_format( SpeechSynthesisOutputFormat.Raw48Khz16BitMonoPcm ) ``` However,...
Occasionally, I encounter this error related to `GladiaSTTService`. Could this be a bug in the `GladiaSTTService`, the Gladia library, or my code? ``` 2024-09-18 09:30:48.087 | ERROR | pipecat.processors.frame_processor:push_frame:203 -...
The DeepgramTTSService often exhibits the following pattern when processing a single LLM response: > BotSpeakingFrame#998 > BotSpeakingFrame#999 > BotSpeakingFrame#1000 > **BotStoppedSpeakingFrame#9** > **BotStartedSpeakingFrame#10** > BotSpeakingFrame#1001 > BotSpeakingFrame#1002 > BotSpeakingFrame#1003 As...
`constants_from_enum` does not work for `StrEnum`. Here is an example of an error caused by this bug: ``` Traceback (most recent call last): ... gin.constants_from_enum(Language) File "/workspace/finch/.venv/lib/python3.11/site-packages/gin/config.py", line 2798, in...