Aleix Conchillo Flaqué

Results 152 comments of Aleix Conchillo Flaqué

Thank you! I'll take a look as soon as I can. It might not make it to 0.0.40 (probably tomorrow), but I'm planning to do short releases as much as...

I believe this PR https://github.com/pipecat-ai/pipecat/pull/346 will fix this issue.

Closing. Pretty sure this was fixed in Pipecat 0.0.42. Feel free to reopen or open a new issue if it's not working. :pray:

Hi @ankykong ! I tried to add ``` @transport.event_handler("on_participant_left") async def on_participant_left(transport, participant, reason): await task.queue_frames([EndFrame()]) ``` To `examples/foundational/07d-interruptible-cartesia.py` and everything works as expected. Could you share some TRACE logs...

To get all the logs, please put this in your main bot file: ``` from loguru import logger logger.remove(0) logger.add(sys.stderr, level="TRACE") ```

> [Here](https://console.groq.com/docs/speech-text) are the docs for the new Whisper models available in Groq Cloud. I'd like to replace my Deepgram STT provider with the Groq transcription service. It would be...

@janwout Hi! Sorry for the delay. Some weeks ago I added this processor https://github.com/pipecat-ai/pipecat/blob/main/src/pipecat/processors/user_idle_processor.py. Do you think you can leverage that?

Here's an example: https://github.com/pipecat-ai/pipecat/blob/main/examples/foundational/17-detect-user-idle.py

I just recalled we have another processor: https://github.com/pipecat-ai/pipecat/blob/main/src/pipecat/processors/idle_frame_processor.py which will let you choose which frames you are expecting and not receving and call a provided callback.

This is awesome. Thank you! @chadbailey59 what do you think?