Aurélien LDP

Results 7 comments of Aurélien LDP

Any updates ? I am also experiencing this issue using Google STT: ``` [2025-05-26 00:28:00.798046] User state changed: listening -> speaking [2025-05-26 00:28:03.105975] User state changed: speaking -> listening I0000...

Here is the PipelineTask: ``` task = PipelineTask( pipeline, params=PipelineParams( allow_interruptions=True, enable_metrics=True, enable_usage_metrics=True, ), idle_timeout_secs=30, ) ``` I changed the `idle_timeout_secs` because it was previously hanging for 5 min when...

Thanks, I didn't know about that. I managed to reproduce the memory leak locally with the observer but I'm still not sure how to interpret the results: ``` 2025-05-14 15:53:59.197...

I think I have a better understanding now: it seems the TTS stays in a `frame processing paused` mode after receiving the result from the function. (pretty clear in the...

Any insight to help me investigate what is happening? It is a huge pain for us in production. - Do you think it can be a race condition due to...

Yes so it's basically the [Twilio chatbot example](https://github.com/pipecat-ai/pipecat/tree/main/examples/twilio-chatbot) with few addition: ```py transport = FastAPIWebsocketTransport( websocket=websocket_client, params=FastAPIWebsocketParams( audio_in_enabled=True, audio_out_enabled=True, audio_out_mixer=soundfile_mixer, vad_analyzer=SileroVADAnalyzer(), serializer=TwilioFrameSerializer(stream_sid), ), ) ``` ```py CartesiaTTSService( api_key=os.getenv("CARTESIA_API_KEY"), voice_id=voice_id, model="sonic-2",...

Thanks, I'll try and see if it persists. I was thinking: we're using `uv` to run our python script. ```Dockerfile CMD ["uv", "run", "--no-dev", "uvicorn", "workflows.api:app", "--host", "0.0.0.0", "--port", "8765"]...