add new pipecat.examples package and make runner public

This commit is contained in:
Aleix Conchillo Flaqué
2025-05-29 10:39:18 -07:00
parent cb9178f1ec
commit 1788ba6c5c
127 changed files with 134 additions and 366 deletions

View File

@@ -10,11 +10,11 @@ import os
from dotenv import load_dotenv
from loguru import logger
from run import get_transport_client_id, maybe_capture_participant_video
from pipecat.adapters.schemas.function_schema import FunctionSchema
from pipecat.adapters.schemas.tools_schema import ToolsSchema
from pipecat.audio.vad.silero import SileroVADAnalyzer
from pipecat.examples.run import get_transport_client_id, maybe_capture_participant_video
from pipecat.frames.frames import TTSSpeakFrame
from pipecat.pipeline.pipeline import Pipeline
from pipecat.pipeline.runner import PipelineRunner
@@ -193,6 +193,6 @@ indicate you should use the get_image tool are:
if __name__ == "__main__":
from run import main
from pipecat.examples.run import main
main(run_example, transport_params=transport_params)