You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My end_call function executes immediately before the bot says 'Thanks for calling! Goodbye'. I have tried two different approaches to end the call but got the same issue! Moreover, there is a possibility that the production application is handling more than one call at a time. If the issue can be resolved using the second approach, that would be ideal.
Using Pipecat
I used the following code:
asyncdefend_call_handler(function_name, toll_call_id, args, llm, context, result_callback):
# print(f"Hanging up call for client ID: {args['callSid']}")awaitllm.push_frame(EndTaskFrame(), FrameDirection.UPSTREAM)
asyncdefcallback_end_call(function_name, llm, context):
awaitllm.push_frame(TTSSpeakFrame("Thanks for Calling, Goodbye!"))
logger.debug(f"Ending call with function_name: {function_name}")
llm=OpenAILLMService(api_key=os.getenv("OPENAI_API_KEY"), model="gpt-4o")
llm.register_function("end_call", end_call_handler, start_callback=callback_end_call)
Issues with pipecat:
When bot calls this function, it basically disconnects the Deepgram, cancel the pipeline tasks and throws an error.
The text was updated successfully, but these errors were encountered:
devedgecio
changed the title
Bot ends the call before speaking the last sentence
The bot disconnects the call before speaking the final sentence.
Mar 27, 2025
Yes, this is a issue we are also facing. As the end message and function call happens simultaneously. The bot / call is disconnect and the end msg is never spoken
I am using the following pipecat version.
"pipecat-ai==0.0.58"
Issue:
My
end_call
function executes immediately before the bot says 'Thanks for calling! Goodbye'. I have tried two different approaches to end the call but got the same issue! Moreover, there is a possibility that the production application is handling more than one call at a time. If the issue can be resolved using the second approach, that would be ideal.Using Pipecat
I used the following code:
Issues with pipecat:
When bot calls this function, it basically disconnects the Deepgram, cancel the pipeline tasks and throws an error.
logs of error:
Using Twilio with callSid:
I used the following code:
Issue:
I got the same issue. Bot doesn't speak the last line "Thanks for calling! Goodbye!"
logs:
The text was updated successfully, but these errors were encountered: