Replaces every "task" identifier that referred to the BaseTask abstraction with "worker". Asyncio task plumbing (asyncio.Task, BaseTaskManager, TaskManager, create_task, cancel_task, etc.) stays untouched. Highlights: - Classes: BaseTask → BaseWorker, PipelineTask → PipelineWorker, LLMTask → LLMWorker, LLMContextTask → LLMContextWorker, TaskBus → WorkerBus, TaskRegistry → WorkerRegistry, TaskActivationArgs → WorkerActivationArgs, TaskReadyData → WorkerReadyData, TaskRegistryEntry → WorkerRegistryEntry, TaskObserver → WorkerObserver, all Bus*TaskMessage → Bus*WorkerMessage, BusAddTaskMessage.task field → worker, BusWorkerRegistryMessage.tasks field → workers. - Methods/decorators: activate_task → activate_worker, deactivate_task → deactivate_worker, add_task → add_worker, watch_task → watch_worker, @task_ready → @worker_ready, setup_pipeline_task hook → setup_pipeline_worker. - Params/fields: FrameProcessorSetup.pipeline_task and FunctionCallParams.pipeline_task → pipeline_worker. Parameter names like task_name → worker_name; spawn/run accept worker:. - Files: pipeline/base_task.py → base_worker.py, pipeline/task.py → worker.py (plus a re-export shim at pipeline/task.py), task_observer.py → worker_observer.py, task_ready_decorator.py → worker_ready_decorator.py, pipecat.tasks → pipecat.workers, llm_task.py → llm_worker.py, llm_context_task.py → llm_context_worker.py, examples/multi-task → examples/multi-worker. Back-compat: - PipelineTask kept as a deprecated subclass of PipelineWorker that warns on construction. - pipecat.pipeline.task re-exports PipelineWorker/PipelineTask/etc. so existing user imports keep working. - FrameProcessor.pipeline_task kept as a deprecated property that forwards to pipeline_worker. Local variables in examples that hold a worker (task = PipelineTask(...)) are renamed to worker = PipelineWorker(...). Asyncio-task locals (runner_task, etc.) are preserved.
221 lines
7.8 KiB
Python
221 lines
7.8 KiB
Python
#
|
|
# Copyright (c) 2024-2026, Daily
|
|
#
|
|
# SPDX-License-Identifier: BSD 2-Clause License
|
|
#
|
|
|
|
import os
|
|
from dataclasses import dataclass
|
|
|
|
import aiohttp
|
|
from dotenv import load_dotenv
|
|
from loguru import logger
|
|
|
|
from pipecat.frames.frames import (
|
|
DataFrame,
|
|
Frame,
|
|
LLMContextFrame,
|
|
LLMFullResponseStartFrame,
|
|
OutputImageRawFrame,
|
|
TextFrame,
|
|
)
|
|
from pipecat.pipeline.pipeline import Pipeline
|
|
from pipecat.pipeline.runner import PipelineRunner
|
|
from pipecat.pipeline.sync_parallel_pipeline import FrameOrder, SyncParallelPipeline
|
|
from pipecat.pipeline.worker import PipelineWorker
|
|
from pipecat.processors.aggregators.llm_context import LLMContext
|
|
from pipecat.processors.aggregators.sentence import SentenceAggregator
|
|
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
|
from pipecat.runner.types import RunnerArguments
|
|
from pipecat.runner.utils import create_transport
|
|
from pipecat.services.cartesia.tts import CartesiaHttpTTSService
|
|
from pipecat.services.fal.image import FalImageGenService
|
|
from pipecat.services.openai.llm import OpenAILLMService
|
|
from pipecat.services.tts_service import TextAggregationMode
|
|
from pipecat.transports.base_transport import BaseTransport, TransportParams
|
|
from pipecat.transports.daily.transport import DailyParams
|
|
|
|
load_dotenv(override=True)
|
|
|
|
|
|
@dataclass
|
|
class MonthFrame(DataFrame):
|
|
month: str
|
|
|
|
def __str__(self):
|
|
return f"{self.name}(month: {self.month})"
|
|
|
|
|
|
class MarkImageForPlaybackSync(FrameProcessor):
|
|
"""Marks output image frames to be synchronized with audio playback."""
|
|
|
|
async def process_frame(self, frame: Frame, direction: FrameDirection):
|
|
await super().process_frame(frame, direction)
|
|
|
|
if isinstance(frame, OutputImageRawFrame):
|
|
frame.sync_with_audio = True
|
|
|
|
await self.push_frame(frame, direction)
|
|
|
|
|
|
class MonthPrepender(FrameProcessor):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.most_recent_month = "Placeholder, month frame not yet received"
|
|
self.prepend_to_next_text_frame = False
|
|
|
|
async def process_frame(self, frame: Frame, direction: FrameDirection):
|
|
await super().process_frame(frame, direction)
|
|
|
|
if isinstance(frame, MonthFrame):
|
|
self.most_recent_month = frame.month
|
|
elif self.prepend_to_next_text_frame and isinstance(frame, TextFrame):
|
|
await self.push_frame(TextFrame(f"{self.most_recent_month}: {frame.text}"))
|
|
self.prepend_to_next_text_frame = False
|
|
elif isinstance(frame, LLMFullResponseStartFrame):
|
|
self.prepend_to_next_text_frame = True
|
|
await self.push_frame(frame)
|
|
else:
|
|
await self.push_frame(frame, direction)
|
|
|
|
|
|
# We use lambdas to defer transport parameter creation until the transport
|
|
# type is selected at runtime.
|
|
transport_params = {
|
|
"daily": lambda: DailyParams(
|
|
audio_out_enabled=True,
|
|
video_out_enabled=True,
|
|
video_out_width=1024,
|
|
video_out_height=1024,
|
|
),
|
|
"webrtc": lambda: TransportParams(
|
|
audio_out_enabled=True,
|
|
video_out_enabled=True,
|
|
video_out_width=1024,
|
|
video_out_height=1024,
|
|
),
|
|
}
|
|
|
|
|
|
async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
|
|
"""Run the Calendar Month Narration bot using WebRTC transport.
|
|
|
|
Args:
|
|
webrtc_connection: The WebRTC connection to use
|
|
room_name: Optional room name for display purposes
|
|
"""
|
|
logger.info(f"Starting bot")
|
|
|
|
# Create an HTTP session for API calls
|
|
async with aiohttp.ClientSession() as session:
|
|
llm = OpenAILLMService(api_key=os.environ["OPENAI_API_KEY"])
|
|
|
|
tts = CartesiaHttpTTSService(
|
|
api_key=os.environ["CARTESIA_API_KEY"],
|
|
settings=CartesiaHttpTTSService.Settings(
|
|
voice="71a7ad14-091c-4e8e-a314-022ece01c121", # British Reading Lady
|
|
),
|
|
# No need to aggregate by sentences (the default), as we already know we're getting full sentences
|
|
# (Otherwise the service will unnecessarily wait for follow-up input to confirm the sentence is complete,
|
|
# which, sadly, actually breaks the synchronization mechanism)
|
|
text_aggregation_mode=TextAggregationMode.TOKEN,
|
|
)
|
|
|
|
imagegen = FalImageGenService(
|
|
settings=FalImageGenService.Settings(
|
|
image_size="square_hd",
|
|
),
|
|
aiohttp_session=session,
|
|
key=os.getenv("FAL_KEY"),
|
|
)
|
|
|
|
sentence_aggregator = SentenceAggregator()
|
|
month_prepender = MonthPrepender()
|
|
|
|
# With `SyncParallelPipeline` we synchronize audio and images by pushing
|
|
# them basically in order (e.g. I1 A1 A1 A1 I2 A2 A2 A2 A2 I3 A3). To do
|
|
# that, each pipeline runs concurrently and `SyncParallelPipeline` will
|
|
# wait for the input frame to be processed.
|
|
#
|
|
# We use `FrameOrder.PIPELINE` so that each synchronized batch of output
|
|
# frames is pushed in the order the pipelines are listed: image first,
|
|
# then audio. This ensures the transport receives the image before the
|
|
# audio frames it should accompany.
|
|
#
|
|
# Note that `SyncParallelPipeline` requires the last processor in each
|
|
# of the pipelines to be synchronous. In this case, we use
|
|
# `FalImageGenService` and `CartesiaHttpTTSService` which make HTTP
|
|
# requests and wait for the response.
|
|
pipeline = Pipeline(
|
|
[
|
|
llm, # LLM
|
|
sentence_aggregator, # Aggregates LLM output into full sentences
|
|
SyncParallelPipeline( # Run pipelines in parallel aggregating the result
|
|
[
|
|
imagegen, # Generate image
|
|
MarkImageForPlaybackSync(), # Mark image as needing sync w/audio during playback
|
|
],
|
|
[month_prepender, tts], # Create "Month: sentence" and output audio
|
|
frame_order=FrameOrder.PIPELINE,
|
|
),
|
|
transport.output(), # Transport output
|
|
]
|
|
)
|
|
|
|
frames = []
|
|
for month in [
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December",
|
|
]:
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": f"Describe a nature photograph suitable for use in a calendar, for the month of {month}. Include only the image description with no preamble. Limit the description to one sentence, please.",
|
|
}
|
|
]
|
|
frames.append(MonthFrame(month=month))
|
|
frames.append(LLMContextFrame(LLMContext(messages)))
|
|
|
|
worker = PipelineWorker(
|
|
pipeline,
|
|
idle_timeout_secs=runner_args.pipeline_idle_timeout_secs,
|
|
)
|
|
|
|
# Set up transport event handlers
|
|
@transport.event_handler("on_client_connected")
|
|
async def on_client_connected(transport, client):
|
|
logger.info(f"Client connected")
|
|
# Start the month narration once connected
|
|
await worker.queue_frames(frames)
|
|
|
|
@transport.event_handler("on_client_disconnected")
|
|
async def on_client_disconnected(transport, client):
|
|
logger.info(f"Client disconnected")
|
|
await worker.cancel()
|
|
|
|
# Run the pipeline
|
|
runner = PipelineRunner(handle_sigint=runner_args.handle_sigint)
|
|
await runner.run(worker)
|
|
|
|
|
|
async def bot(runner_args: RunnerArguments):
|
|
"""Main bot entry point compatible with Pipecat Cloud."""
|
|
transport = await create_transport(runner_args, transport_params)
|
|
await run_bot(transport, runner_args)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
from pipecat.runner.run import main
|
|
|
|
main()
|