Call ends but not TTSSpeak?

This commit is contained in:
James Hush
2025-08-11 14:02:16 +08:00
parent a9a9747c31
commit 47d232dab5
2 changed files with 5 additions and 18 deletions

View File

@@ -615,25 +615,11 @@ async def run_bot(room_url: str, token: str, body: dict) -> None:
# Generate voicemail message # Generate voicemail message
message = "Hello, this is a message for Pipecat example user. This is Chatbot. Please call back on 123-456-7891. Thank you." message = "Hello, this is a message for Pipecat example user. This is Chatbot. Please call back on 123-456-7891. Thank you."
logger.info(f"🎤 SENDING VOICEMAIL MESSAGE: {message}") logger.info(f"🎤 SENDING VOICEMAIL MESSAGE: {message}")
await voicemail_tts.queue_frame(TTSSpeakFrame(text=message)) await params.llm.push_frame(TTSSpeakFrame(text=message))
logger.warning( # Following the official Pipecat docs: "From inside the pipeline, push upstream to reach the source"
f"📩️ EndTaskFrame upstream routing seems blocked - using direct EndFrame approach" logger.warning(f"📩️ Using correct pattern: EndTaskFrame upstream from function call")
) await params.llm.push_frame(EndTaskFrame(), FrameDirection.UPSTREAM)
# Direct approach: Send EndFrame directly to the pipeline task
# This bypasses the complex ParallelPipeline routing that seems to be blocking EndTaskFrame
await pipeline_task.queue_frame(EndFrame())
logger.warning(f"📩️ EndFrame sent directly to pipeline task")
# await pipeline_task.cancel()
# logger.debug(f"📩️ Pushing EndTaskFrame")
# await voicemail_tts.queue_frame(EndTaskFrame(), FrameDirection.UPSTREAM)
# logger.debug(f"📩️ Pushing CancelTaskFrame")
# await voicemail_tts.queue_frame(CancelTaskFrame(), FrameDirection.UPSTREAM)
# logger.debug(f"📩️ Pushing both")
# await pipeline_task.queue_frames([EndTaskFrame(), CancelTaskFrame()])
await params.result_callback({"confidence": f"{confidence}", "reasoning": reasoning})
await params.result_callback({"confidence": f"{confidence}", "reasoning": reasoning}) await params.result_callback({"confidence": f"{confidence}", "reasoning": reasoning})

View File

@@ -36,6 +36,7 @@ dependencies = [
"openai>=1.74.0,<=1.99.1", "openai>=1.74.0,<=1.99.1",
# Pinning numba to resolve package dependencies # Pinning numba to resolve package dependencies
"numba==0.61.2", "numba==0.61.2",
"pipecat-ai-flows>=0.0.18",
] ]
[project.urls] [project.urls]