Compare commits
1 Commits
mb/update-
...
mb/foundat
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a550be329c |
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
import aiohttp
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,rime]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
import aiohttp
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[local,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[livekit,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -1,62 +0,0 @@
|
||||
#
|
||||
# Copyright (c) 2024–2025, Daily
|
||||
#
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
from loguru import logger
|
||||
|
||||
from pipecat.frames.frames import EndFrame, TTSSpeakFrame
|
||||
from pipecat.pipeline.pipeline import Pipeline
|
||||
from pipecat.pipeline.runner import PipelineRunner
|
||||
from pipecat.pipeline.task import PipelineTask
|
||||
from pipecat.runner.types import RunnerArguments
|
||||
from pipecat.runner.utils import create_transport
|
||||
from pipecat.services.riva.tts import FastPitchTTSService
|
||||
from pipecat.transports.base_transport import BaseTransport, TransportParams
|
||||
from pipecat.transports.network.fastapi_websocket import FastAPIWebsocketParams
|
||||
from pipecat.transports.services.daily import DailyParams
|
||||
|
||||
load_dotenv(override=True)
|
||||
|
||||
|
||||
# We store functions so objects (e.g. SileroVADAnalyzer) don't get
|
||||
# instantiated. The function will be called when the desired transport gets
|
||||
# selected.
|
||||
transport_params = {
|
||||
"daily": lambda: DailyParams(audio_out_enabled=True),
|
||||
"twilio": lambda: FastAPIWebsocketParams(audio_out_enabled=True),
|
||||
"webrtc": lambda: TransportParams(audio_out_enabled=True),
|
||||
}
|
||||
|
||||
|
||||
async def run_bot(transport: BaseTransport):
|
||||
logger.info(f"Starting bot")
|
||||
|
||||
tts = FastPitchTTSService(api_key=os.getenv("NVIDIA_API_KEY"))
|
||||
|
||||
task = PipelineTask(Pipeline([tts, transport.output()]))
|
||||
|
||||
# Register an event handler so we can play the audio when the client joins
|
||||
@transport.event_handler("on_client_connected")
|
||||
async def on_client_connected(transport, client):
|
||||
await task.queue_frames([TTSSpeakFrame(f"Hello there!"), EndFrame()])
|
||||
|
||||
runner = PipelineRunner(handle_sigint=False)
|
||||
|
||||
await runner.run(task)
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
from pipecat.runner.run import main
|
||||
|
||||
main()
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,fal]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
import aiohttp
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[local,fal]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,google]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[webrtc,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import argparse
|
||||
import asyncio
|
||||
import os
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,silero,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[livekit,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import json
|
||||
import os
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,openai,cartesia,fal]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[local,silero,openai,cartesia,fal]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,speechmatics,openai,elevenlabs]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,speechmatics,openai,elevenlabs]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,soniox,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,inworld]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,asyncai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,asyncai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,langchain,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
@@ -25,6 +30,8 @@ from pipecat.processors.aggregators.llm_response import (
|
||||
LLMUserResponseAggregator,
|
||||
)
|
||||
from pipecat.processors.frameworks.langchain import LangchainProcessor
|
||||
from pipecat.runner.types import RunnerArguments
|
||||
from pipecat.runner.utils import create_transport
|
||||
from pipecat.services.cartesia.tts import CartesiaTTSService
|
||||
from pipecat.services.deepgram.stt import DeepgramSTTService
|
||||
from pipecat.transports.base_transport import BaseTransport, TransportParams
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,deepgram,openai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,elevenlabs]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,elevenlabs]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,playht]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,playht]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,azure]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,openai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openpipe,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
import time
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,gladia,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,lmnt]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,groq]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,aws]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
from dotenv import load_dotenv
|
||||
from loguru import logger
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,google]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,assemblyai,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,krisp]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,rime]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,rime]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,riva,nim]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,google]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
from dataclasses import dataclass
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,fish]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,ultravox,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,neuphonic]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,neuphonic]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,fal,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[local,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
import sys
|
||||
@@ -16,8 +22,6 @@ from pipecat.pipeline.pipeline import Pipeline
|
||||
from pipecat.pipeline.runner import PipelineRunner
|
||||
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
||||
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
|
||||
from pipecat.runner.types import RunnerArguments
|
||||
from pipecat.runner.utils import create_transport
|
||||
from pipecat.services.cartesia.tts import CartesiaTTSService
|
||||
from pipecat.services.deepgram.stt import DeepgramSTTService
|
||||
from pipecat.services.openai.llm import OpenAILLMService
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -1,3 +1,15 @@
|
||||
#
|
||||
# Copyright (c) 2024–2025, Daily
|
||||
#
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,azure,elevenlabs,fal]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import logging
|
||||
import os
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
from dotenv import load_dotenv
|
||||
from loguru import logger
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,local,runner]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import tkinter as tk
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
import wave
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,deepgram,moondream,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
from typing import Optional
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,deepgram,google,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
from typing import Optional
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
from typing import Optional
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,anthropic,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
from typing import Optional
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,whisper]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
from dotenv import load_dotenv
|
||||
from loguru import logger
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[local,whisper]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import sys
|
||||
|
||||
|
||||
@@ -4,7 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
import argparse
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,deepgram]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
@@ -15,6 +20,8 @@ from pipecat.pipeline.pipeline import Pipeline
|
||||
from pipecat.pipeline.runner import PipelineRunner
|
||||
from pipecat.pipeline.task import PipelineTask
|
||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
||||
from pipecat.runner.types import RunnerArguments
|
||||
from pipecat.runner.utils import create_transport
|
||||
from pipecat.services.deepgram.stt import DeepgramSTTService, Language, LiveOptions
|
||||
from pipecat.transports.base_transport import BaseTransport, TransportParams
|
||||
from pipecat.transports.network.fastapi_websocket import FastAPIWebsocketParams
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,gladia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,7 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
import argparse
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,gladia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
@@ -15,6 +20,8 @@ from pipecat.pipeline.pipeline import Pipeline
|
||||
from pipecat.pipeline.runner import PipelineRunner
|
||||
from pipecat.pipeline.task import PipelineTask
|
||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
||||
from pipecat.runner.types import RunnerArguments
|
||||
from pipecat.runner.utils import create_transport
|
||||
from pipecat.services.gladia.config import (
|
||||
GladiaInputParams,
|
||||
LanguageConfig,
|
||||
|
||||
@@ -4,7 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
import argparse
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,assemblyai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
@@ -15,6 +20,8 @@ from pipecat.pipeline.pipeline import Pipeline
|
||||
from pipecat.pipeline.runner import PipelineRunner
|
||||
from pipecat.pipeline.task import PipelineTask
|
||||
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
|
||||
from pipecat.runner.types import RunnerArguments
|
||||
from pipecat.runner.utils import create_transport
|
||||
from pipecat.services.assemblyai.stt import AssemblyAISTTService
|
||||
from pipecat.transports.base_transport import BaseTransport, TransportParams
|
||||
from pipecat.transports.network.fastapi_websocket import FastAPIWebsocketParams
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,whisper]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import time
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,sambanova]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
import time
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,speechmatics]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,soniox]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,anthropic,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,deepgram,anthropic,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,together,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,runner,silero,deepgram,google,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,groq,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,grok,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,azure,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,fireworks,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,nim,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,cerebras,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,deepseek,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openrouter,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,12 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,perplexity,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
"""This example demonstrates using the Perplexity API as a drop-in replacement for OpenAI.
|
||||
|
||||
Note that while this file is in the function-calling examples, Perplexity's API does not
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,google,elevenlabs]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,google,elevenlabs]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,qwen,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,aws]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
from dotenv import load_dotenv
|
||||
from loguru import logger
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,sambanova,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
@@ -24,7 +29,6 @@ from pipecat.services.cartesia.tts import CartesiaTTSService
|
||||
from pipecat.services.deepgram.stt import DeepgramSTTService
|
||||
from pipecat.services.llm_service import FunctionCallParams
|
||||
from pipecat.services.ollama.llm import OLLamaLLMService
|
||||
from pipecat.services.openai.llm import OpenAILLMService
|
||||
from pipecat.transports.base_transport import BaseTransport, TransportParams
|
||||
from pipecat.transports.network.fastapi_websocket import FastAPIWebsocketParams
|
||||
from pipecat.transports.services.daily import DailyParams
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai,cartesia]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
# /// script
|
||||
# dependencies = [
|
||||
# "pipecat-ai[daily,webrtc,websocket,runner,silero,deepgram,openai]>=0.0.77",
|
||||
# ]
|
||||
# ///
|
||||
|
||||
import os
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user