62 lines
1.7 KiB
Python
62 lines
1.7 KiB
Python
#
|
|
# Copyright (c) 2024, Daily
|
|
#
|
|
# SPDX-License-Identifier: BSD 2-Clause License
|
|
#
|
|
|
|
import asyncio
|
|
import aiohttp
|
|
import os
|
|
import sys
|
|
|
|
from pipecat.frames.frames import EndFrame, TTSSpeakFrame
|
|
from pipecat.pipeline.pipeline import Pipeline
|
|
from pipecat.pipeline.task import PipelineTask
|
|
from pipecat.pipeline.runner import PipelineRunner
|
|
from pipecat.services.cartesia import CartesiaTTSService
|
|
from pipecat.transports.services.daily import DailyParams, DailyTransport
|
|
|
|
from runner import configure
|
|
|
|
from loguru import logger
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv(override=True)
|
|
|
|
logger.remove(0)
|
|
logger.add(sys.stderr, level="DEBUG")
|
|
|
|
|
|
async def main():
|
|
async with aiohttp.ClientSession() as session:
|
|
(room_url, _) = await configure(session)
|
|
|
|
transport = DailyTransport(
|
|
room_url, None, "Say One Thing", DailyParams(audio_out_enabled=True)
|
|
)
|
|
|
|
tts = CartesiaTTSService(
|
|
api_key=os.getenv("CARTESIA_API_KEY"),
|
|
voice_id="79a125e8-cd45-4c13-8a67-188112f4dd22", # British Lady
|
|
)
|
|
|
|
runner = PipelineRunner()
|
|
|
|
task = PipelineTask(Pipeline([tts, transport.output()]))
|
|
|
|
# Register an event handler so we can play the audio when the
|
|
# participant joins.
|
|
@transport.event_handler("on_first_participant_joined")
|
|
async def on_first_participant_joined(transport, participant):
|
|
participant_name = participant.get("info", {}).get("userName", "")
|
|
await task.queue_frames(
|
|
[TTSSpeakFrame(f"Hello there, {participant_name}!"), EndFrame()]
|
|
)
|
|
|
|
await runner.run(task)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|