fix: interrupt message speech on confirmation

This commit is contained in:
Xin Wang
2026-08-03 16:30:18 +08:00
parent 8064bb7152
commit 06719e4801
2 changed files with 18 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ from pipecat.flows import (
NodeConfig, NodeConfig,
) )
from pipecat.frames.frames import ( from pipecat.frames.frames import (
InterruptionFrame,
LLMRunFrame, LLMRunFrame,
LLMUpdateSettingsFrame, LLMUpdateSettingsFrame,
OutputTransportMessageUrgentFrame, OutputTransportMessageUrgentFrame,
@@ -1084,6 +1085,14 @@ class WorkflowBrain(BaseBrain):
), ),
) )
if result.succeeded: if result.succeeded:
if (
completion_policy == MESSAGE_CONFIRMATION
and result.action == "confirmed"
):
# The client-tool result closes the confirmation gate, while
# InterruptionFrame closes any speech still owned by this
# Message before the next node can enqueue new output.
await runtime.queue_frame(InterruptionFrame())
await self._emit_trace( await self._emit_trace(
"message_completed", "message_completed",
nodeId=node_id, nodeId=node_id,

View File

@@ -8,6 +8,7 @@ from unittest.mock import AsyncMock, patch
from models import AssistantConfig, RuntimeTool from models import AssistantConfig, RuntimeTool
from pipecat.flows import FlowManager from pipecat.flows import FlowManager
from pipecat.frames.frames import ( from pipecat.frames.frames import (
InterruptionFrame,
LLMContextFrame, LLMContextFrame,
LLMFullResponseEndFrame, LLMFullResponseEndFrame,
LLMFullResponseStartFrame, LLMFullResponseStartFrame,
@@ -1475,6 +1476,13 @@ class WorkflowBrainTests(unittest.IsolatedAsyncioTestCase):
async def queue_frame(frame): async def queue_frame(frame):
if isinstance(frame, TTSSpeakFrame): if isinstance(frame, TTSSpeakFrame):
events.append(("speech", frame.text)) events.append(("speech", frame.text))
elif isinstance(frame, InterruptionFrame):
events.append("interrupted")
elif (
isinstance(frame, OutputTransportMessageUrgentFrame)
and frame.message.get("event") == "message_completed"
):
events.append("message_completed")
class OrderedCallEnd(FakeCallEnd): class OrderedCallEnd(FakeCallEnd):
def __init__(self): def __init__(self):
@@ -1536,6 +1544,7 @@ class WorkflowBrainTests(unittest.IsolatedAsyncioTestCase):
self.assertEqual(result.action, "confirmed") self.assertEqual(result.action, "confirmed")
self.assertFalse(call_end.playback_completion.done()) self.assertFalse(call_end.playback_completion.done())
self.assertEqual(input_states, [False, True]) self.assertEqual(input_states, [False, True])
self.assertEqual(events[-2:], ["interrupted", "message_completed"])
async def test_speech_only_message_waits_for_transport_playback(self): async def test_speech_only_message_waits_for_transport_playback(self):
brain = WorkflowBrain( brain = WorkflowBrain(