BaseObserver: add FramePushed class and deprecated multiple arguments
This commit is contained in:
@@ -16,8 +16,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Observers `on_push_frame()` now take a single argument `FramePushed` instead
|
||||||
|
of multiple arguments.
|
||||||
|
|
||||||
- Updated the default voice for `DeepgramTTSService` to `aura-2-helena-en`.
|
- Updated the default voice for `DeepgramTTSService` to `aura-2-helena-en`.
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
- Observer `on_push_frame(src, dst, frame, direction, timestamp)` is now
|
||||||
|
deprecated, use `on_push_frame(data: FramePushed)` instead.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed a `PipelineTask` issue that would cause tasks to not be cancelled if
|
- Fixed a `PipelineTask` issue that would cause tasks to not be cancelled if
|
||||||
|
|||||||
@@ -14,16 +14,15 @@ from pipecat.audio.vad.silero import SileroVADAnalyzer
|
|||||||
from pipecat.frames.frames import (
|
from pipecat.frames.frames import (
|
||||||
BotStartedSpeakingFrame,
|
BotStartedSpeakingFrame,
|
||||||
BotStoppedSpeakingFrame,
|
BotStoppedSpeakingFrame,
|
||||||
Frame,
|
|
||||||
StartInterruptionFrame,
|
StartInterruptionFrame,
|
||||||
)
|
)
|
||||||
from pipecat.observers.base_observer import BaseObserver
|
from pipecat.observers.base_observer import BaseObserver, FramePushed
|
||||||
from pipecat.observers.loggers.llm_log_observer import LLMLogObserver
|
from pipecat.observers.loggers.llm_log_observer import LLMLogObserver
|
||||||
from pipecat.pipeline.pipeline import Pipeline
|
from pipecat.pipeline.pipeline import Pipeline
|
||||||
from pipecat.pipeline.runner import PipelineRunner
|
from pipecat.pipeline.runner import PipelineRunner
|
||||||
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
||||||
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
|
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
|
||||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
from pipecat.processors.frame_processor import FrameDirection
|
||||||
from pipecat.services.cartesia.tts import CartesiaTTSService
|
from pipecat.services.cartesia.tts import CartesiaTTSService
|
||||||
from pipecat.services.deepgram.stt import DeepgramSTTService
|
from pipecat.services.deepgram.stt import DeepgramSTTService
|
||||||
from pipecat.services.openai.llm import OpenAILLMService
|
from pipecat.services.openai.llm import OpenAILLMService
|
||||||
@@ -46,14 +45,13 @@ class DebugObserver(BaseObserver):
|
|||||||
Log format: [EVENT TYPE]: [source processor] → [destination processor] at [timestamp]s
|
Log format: [EVENT TYPE]: [source processor] → [destination processor] at [timestamp]s
|
||||||
"""
|
"""
|
||||||
|
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
src = data.source
|
||||||
src: FrameProcessor,
|
dst = data.destination
|
||||||
dst: FrameProcessor,
|
frame = data.frame
|
||||||
frame: Frame,
|
direction = data.direction
|
||||||
direction: FrameDirection,
|
timestamp = data.timestamp
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
# Convert timestamp to seconds for readability
|
# Convert timestamp to seconds for readability
|
||||||
time_sec = timestamp / 1_000_000_000
|
time_sec = timestamp / 1_000_000_000
|
||||||
|
|
||||||
|
|||||||
@@ -5,9 +5,38 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
from typing_extensions import TYPE_CHECKING
|
||||||
|
|
||||||
from pipecat.frames.frames import Frame
|
from pipecat.frames.frames import Frame
|
||||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class FramePushed:
|
||||||
|
"""Represents an event where a frame is pushed from one processor to another
|
||||||
|
within the pipeline.
|
||||||
|
|
||||||
|
This data structure is typically used by observers to track the flow of
|
||||||
|
frames through the pipeline for logging, debugging, or analytics purposes.
|
||||||
|
|
||||||
|
Attributes:
|
||||||
|
source (FrameProcessor): The processor sending the frame.
|
||||||
|
destination (FrameProcessor): The processor receiving the frame.
|
||||||
|
frame (Frame): The frame being transferred.
|
||||||
|
direction (FrameDirection): The direction of the transfer (e.g., downstream or upstream).
|
||||||
|
timestamp (int): The time when the frame was pushed, based on the pipeline clock.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
source: "FrameProcessor"
|
||||||
|
destination: "FrameProcessor"
|
||||||
|
frame: Frame
|
||||||
|
direction: "FrameDirection"
|
||||||
|
timestamp: int
|
||||||
|
|
||||||
|
|
||||||
class BaseObserver(ABC):
|
class BaseObserver(ABC):
|
||||||
@@ -19,26 +48,15 @@ class BaseObserver(ABC):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
"""Handle the event when a frame is pushed from one processor to another.
|
||||||
src: FrameProcessor,
|
|
||||||
dst: FrameProcessor,
|
This method should be implemented by subclasses to define specific
|
||||||
frame: Frame,
|
behavior (e.g., logging, monitoring, debugging) when a frame is
|
||||||
direction: FrameDirection,
|
transferred through the pipeline.
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
"""Abstract method to handle the event when a frame is pushed from one
|
|
||||||
processor to another.
|
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
src (FrameProcessor): The source frame processor that is sending the frame.
|
data (FramePushed): The event data containing details about the frame transfer.
|
||||||
dst (FrameProcessor): The destination frame processor that will receive the frame.
|
|
||||||
frame (Frame): The frame being transferred between processors.
|
|
||||||
direction (FrameDirection): The direction of the frame transfer.
|
|
||||||
timestamp (int): The timestamp when the frame was pushed (based on the pipeline clock).
|
|
||||||
|
|
||||||
This method should be implemented by subclasses to define specific behavior
|
|
||||||
when a frame is pushed.
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ from pipecat.frames.frames import (
|
|||||||
LLMMessagesFrame,
|
LLMMessagesFrame,
|
||||||
LLMTextFrame,
|
LLMTextFrame,
|
||||||
)
|
)
|
||||||
from pipecat.observers.base_observer import BaseObserver
|
from pipecat.observers.base_observer import BaseObserver, FramePushed
|
||||||
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContextFrame
|
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContextFrame
|
||||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
||||||
from pipecat.services.llm_service import LLMService
|
from pipecat.services.llm_service import LLMService
|
||||||
@@ -38,14 +38,13 @@ class LLMLogObserver(BaseObserver):
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
src = data.source
|
||||||
src: FrameProcessor,
|
dst = data.destination
|
||||||
dst: FrameProcessor,
|
frame = data.frame
|
||||||
frame: Frame,
|
direction = data.direction
|
||||||
direction: FrameDirection,
|
timestamp = data.timestamp
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
if not isinstance(src, LLMService) and not isinstance(dst, LLMService):
|
if not isinstance(src, LLMService) and not isinstance(dst, LLMService):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ from pipecat.frames.frames import (
|
|||||||
InterimTranscriptionFrame,
|
InterimTranscriptionFrame,
|
||||||
TranscriptionFrame,
|
TranscriptionFrame,
|
||||||
)
|
)
|
||||||
from pipecat.observers.base_observer import BaseObserver
|
from pipecat.observers.base_observer import BaseObserver, FramePushed
|
||||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
||||||
from pipecat.services.stt_service import STTService
|
from pipecat.services.stt_service import STTService
|
||||||
|
|
||||||
@@ -29,14 +29,11 @@ class TranscriptionLogObserver(BaseObserver):
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
src = data.source
|
||||||
src: FrameProcessor,
|
frame = data.frame
|
||||||
dst: FrameProcessor,
|
timestamp = data.timestamp
|
||||||
frame: Frame,
|
|
||||||
direction: FrameDirection,
|
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
if not isinstance(src, STTService):
|
if not isinstance(src, STTService):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
@@ -5,13 +5,12 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
import inspect
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
from attr import dataclass
|
from attr import dataclass
|
||||||
|
|
||||||
from pipecat.frames.frames import Frame
|
from pipecat.observers.base_observer import BaseObserver, FramePushed
|
||||||
from pipecat.observers.base_observer import BaseObserver
|
|
||||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
|
||||||
from pipecat.utils.asyncio import BaseTaskManager
|
from pipecat.utils.asyncio import BaseTaskManager
|
||||||
|
|
||||||
|
|
||||||
@@ -27,20 +26,6 @@ class Proxy:
|
|||||||
observer: BaseObserver
|
observer: BaseObserver
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
|
||||||
class ObserverData:
|
|
||||||
"""This is the data we receive from the main observer and that we put into a
|
|
||||||
proxy queue for later processing.
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
src: FrameProcessor
|
|
||||||
dst: FrameProcessor
|
|
||||||
frame: Frame
|
|
||||||
direction: FrameDirection
|
|
||||||
timestamp: int
|
|
||||||
|
|
||||||
|
|
||||||
class TaskObserver(BaseObserver):
|
class TaskObserver(BaseObserver):
|
||||||
"""This is a pipeline frame observer that is meant to be used as a proxy to
|
"""This is a pipeline frame observer that is meant to be used as a proxy to
|
||||||
the user provided observers. That is, this is the observer that should be
|
the user provided observers. That is, this is the observer that should be
|
||||||
@@ -68,20 +53,9 @@ class TaskObserver(BaseObserver):
|
|||||||
for proxy in self._proxies:
|
for proxy in self._proxies:
|
||||||
await self._task_manager.cancel_task(proxy.task)
|
await self._task_manager.cancel_task(proxy.task)
|
||||||
|
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
|
||||||
src: FrameProcessor,
|
|
||||||
dst: FrameProcessor,
|
|
||||||
frame: Frame,
|
|
||||||
direction: FrameDirection,
|
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
for proxy in self._proxies:
|
for proxy in self._proxies:
|
||||||
await proxy.queue.put(
|
await proxy.queue.put(data)
|
||||||
ObserverData(
|
|
||||||
src=src, dst=dst, frame=frame, direction=direction, timestamp=timestamp
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
def _create_proxies(self, observers) -> List[Proxy]:
|
def _create_proxies(self, observers) -> List[Proxy]:
|
||||||
proxies = []
|
proxies = []
|
||||||
@@ -96,8 +70,26 @@ class TaskObserver(BaseObserver):
|
|||||||
return proxies
|
return proxies
|
||||||
|
|
||||||
async def _proxy_task_handler(self, queue: asyncio.Queue, observer: BaseObserver):
|
async def _proxy_task_handler(self, queue: asyncio.Queue, observer: BaseObserver):
|
||||||
|
warning_reported = False
|
||||||
while True:
|
while True:
|
||||||
data = await queue.get()
|
data = await queue.get()
|
||||||
await observer.on_push_frame(
|
|
||||||
data.src, data.dst, data.frame, data.direction, data.timestamp
|
signature = inspect.signature(observer.on_push_frame)
|
||||||
)
|
if len(signature.parameters) > 1:
|
||||||
|
if not warning_reported:
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
with warnings.catch_warnings():
|
||||||
|
warnings.simplefilter("always")
|
||||||
|
warnings.warn(
|
||||||
|
"Observer `on_push_frame(source, destination, frame, direction, timestamp)` is deprecated, us `on_push_frame(data: FramePushed)` instead.",
|
||||||
|
DeprecationWarning,
|
||||||
|
)
|
||||||
|
warning_reported = True
|
||||||
|
await observer.on_push_frame(
|
||||||
|
data.src, data.dst, data.frame, data.direction, data.timestamp
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
await observer.on_push_frame(data)
|
||||||
|
|
||||||
|
queue.task_done()
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ from pipecat.frames.frames import (
|
|||||||
SystemFrame,
|
SystemFrame,
|
||||||
)
|
)
|
||||||
from pipecat.metrics.metrics import LLMTokenUsage, MetricsData
|
from pipecat.metrics.metrics import LLMTokenUsage, MetricsData
|
||||||
|
from pipecat.observers.base_observer import FramePushed
|
||||||
from pipecat.processors.metrics.frame_processor_metrics import FrameProcessorMetrics
|
from pipecat.processors.metrics.frame_processor_metrics import FrameProcessorMetrics
|
||||||
from pipecat.utils.asyncio import BaseTaskManager
|
from pipecat.utils.asyncio import BaseTaskManager
|
||||||
from pipecat.utils.base_object import BaseObject
|
from pipecat.utils.base_object import BaseObject
|
||||||
@@ -294,17 +295,28 @@ class FrameProcessor(BaseObject):
|
|||||||
timestamp = self._clock.get_time() if self._clock else 0
|
timestamp = self._clock.get_time() if self._clock else 0
|
||||||
if direction == FrameDirection.DOWNSTREAM and self._next:
|
if direction == FrameDirection.DOWNSTREAM and self._next:
|
||||||
logger.trace(f"Pushing {frame} from {self} to {self._next}")
|
logger.trace(f"Pushing {frame} from {self} to {self._next}")
|
||||||
|
|
||||||
if self._observer:
|
if self._observer:
|
||||||
await self._observer.on_push_frame(
|
data = FramePushed(
|
||||||
self, self._next, frame, direction, timestamp
|
source=self,
|
||||||
|
destination=self._next,
|
||||||
|
frame=frame,
|
||||||
|
direction=direction,
|
||||||
|
timestamp=timestamp,
|
||||||
)
|
)
|
||||||
|
await self._observer.on_push_frame(data)
|
||||||
await self._next.queue_frame(frame, direction)
|
await self._next.queue_frame(frame, direction)
|
||||||
elif direction == FrameDirection.UPSTREAM and self._prev:
|
elif direction == FrameDirection.UPSTREAM and self._prev:
|
||||||
logger.trace(f"Pushing {frame} upstream from {self} to {self._prev}")
|
logger.trace(f"Pushing {frame} upstream from {self} to {self._prev}")
|
||||||
if self._observer:
|
if self._observer:
|
||||||
await self._observer.on_push_frame(
|
data = FramePushed(
|
||||||
self, self._prev, frame, direction, timestamp
|
source=self,
|
||||||
|
destination=self._prev,
|
||||||
|
frame=frame,
|
||||||
|
direction=direction,
|
||||||
|
timestamp=timestamp,
|
||||||
)
|
)
|
||||||
|
await self._observer.on_push_frame(data)
|
||||||
await self._prev.queue_frame(frame, direction)
|
await self._prev.queue_frame(frame, direction)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.exception(f"Uncaught exception in {self}: {e}")
|
logger.exception(f"Uncaught exception in {self}: {e}")
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ from pipecat.metrics.metrics import (
|
|||||||
TTFBMetricsData,
|
TTFBMetricsData,
|
||||||
TTSUsageMetricsData,
|
TTSUsageMetricsData,
|
||||||
)
|
)
|
||||||
from pipecat.observers.base_observer import BaseObserver
|
from pipecat.observers.base_observer import BaseObserver, FramePushed
|
||||||
from pipecat.processors.aggregators.openai_llm_context import (
|
from pipecat.processors.aggregators.openai_llm_context import (
|
||||||
OpenAILLMContext,
|
OpenAILLMContext,
|
||||||
OpenAILLMContextFrame,
|
OpenAILLMContextFrame,
|
||||||
@@ -445,14 +445,7 @@ class RTVIObserver(BaseObserver):
|
|||||||
self._frames_seen = set()
|
self._frames_seen = set()
|
||||||
rtvi.set_errors_enabled(self._params.errors_enabled)
|
rtvi.set_errors_enabled(self._params.errors_enabled)
|
||||||
|
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
|
||||||
src: FrameProcessor,
|
|
||||||
dst: FrameProcessor,
|
|
||||||
frame: Frame,
|
|
||||||
direction: FrameDirection,
|
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
"""Process a frame being pushed through the pipeline.
|
"""Process a frame being pushed through the pipeline.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
@@ -462,6 +455,10 @@ class RTVIObserver(BaseObserver):
|
|||||||
direction: Direction of frame flow in pipeline
|
direction: Direction of frame flow in pipeline
|
||||||
timestamp: Time when frame was pushed
|
timestamp: Time when frame was pushed
|
||||||
"""
|
"""
|
||||||
|
src = data.source
|
||||||
|
frame = data.frame
|
||||||
|
direction = data.direction
|
||||||
|
|
||||||
# If we have already seen this frame, let's skip it.
|
# If we have already seen this frame, let's skip it.
|
||||||
if frame.id in self._frames_seen:
|
if frame.id in self._frames_seen:
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -9,8 +9,9 @@ from typing import List, Literal, Optional
|
|||||||
from pydantic import BaseModel
|
from pydantic import BaseModel
|
||||||
|
|
||||||
from pipecat.frames.frames import Frame
|
from pipecat.frames.frames import Frame
|
||||||
|
from pipecat.observers.base_observer import FramePushed
|
||||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
||||||
from pipecat.processors.frameworks.rtvi import RTVIObserver
|
from pipecat.processors.frameworks.rtvi import RTVIObserver, RTVIProcessor
|
||||||
from pipecat.services.google.frames import LLMSearchOrigin, LLMSearchResponseFrame
|
from pipecat.services.google.frames import LLMSearchOrigin, LLMSearchResponseFrame
|
||||||
|
|
||||||
|
|
||||||
@@ -27,18 +28,13 @@ class RTVIBotLLMSearchResponseMessage(BaseModel):
|
|||||||
|
|
||||||
|
|
||||||
class GoogleRTVIObserver(RTVIObserver):
|
class GoogleRTVIObserver(RTVIObserver):
|
||||||
def __init__(self, rtvi: FrameProcessor):
|
def __init__(self, rtvi: RTVIProcessor):
|
||||||
super().__init__(rtvi)
|
super().__init__(rtvi)
|
||||||
|
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
await super().on_push_frame(data)
|
||||||
src: FrameProcessor,
|
|
||||||
dst: FrameProcessor,
|
frame = data.frame
|
||||||
frame: Frame,
|
|
||||||
direction: FrameDirection,
|
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
await super().on_push_frame(src, dst, frame, direction, timestamp)
|
|
||||||
|
|
||||||
if isinstance(frame, LLMSearchResponseFrame):
|
if isinstance(frame, LLMSearchResponseFrame):
|
||||||
await self._handle_llm_search_response_frame(frame)
|
await self._handle_llm_search_response_frame(frame)
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ from pipecat.frames.frames import (
|
|||||||
StartFrame,
|
StartFrame,
|
||||||
SystemFrame,
|
SystemFrame,
|
||||||
)
|
)
|
||||||
from pipecat.observers.base_observer import BaseObserver
|
from pipecat.observers.base_observer import BaseObserver, FramePushed
|
||||||
from pipecat.pipeline.pipeline import Pipeline
|
from pipecat.pipeline.pipeline import Pipeline
|
||||||
from pipecat.pipeline.runner import PipelineRunner
|
from pipecat.pipeline.runner import PipelineRunner
|
||||||
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
||||||
@@ -42,14 +42,10 @@ class HeartbeatsObserver(BaseObserver):
|
|||||||
self._target = target
|
self._target = target
|
||||||
self._callback = heartbeat_callback
|
self._callback = heartbeat_callback
|
||||||
|
|
||||||
async def on_push_frame(
|
async def on_push_frame(self, data: FramePushed):
|
||||||
self,
|
src = data.source
|
||||||
src: FrameProcessor,
|
frame = data.frame
|
||||||
dst: FrameProcessor,
|
|
||||||
frame: Frame,
|
|
||||||
direction: FrameDirection,
|
|
||||||
timestamp: int,
|
|
||||||
):
|
|
||||||
if src == self._target and isinstance(frame, HeartbeatFrame):
|
if src == self._target and isinstance(frame, HeartbeatFrame):
|
||||||
await self._callback(self._target, frame)
|
await self._callback(self._target, frame)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user