Update demos with RunnerArguments, runner_args

This commit is contained in:
Mark Backman
2025-07-30 21:49:58 -04:00
parent dbf9899de8
commit 027ab8fedf
3 changed files with 10 additions and 10 deletions

View File

@@ -33,7 +33,7 @@ from pipecat.pipeline.runner import PipelineRunner
from pipecat.pipeline.task import PipelineParams, PipelineTask
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
from pipecat.processors.frameworks.rtvi import RTVIConfig, RTVIObserver, RTVIProcessor
from pipecat.runner.run import SmallWebRTCSessionArguments
from pipecat.runner.types import RunnerArguments
from pipecat.services.cartesia.tts import CartesiaTTSService
from pipecat.services.deepgram.stt import DeepgramSTTService
from pipecat.services.openai.llm import OpenAILLMService
@@ -106,7 +106,7 @@ async def run_bot(transport: BaseTransport):
await runner.run(task)
async def bot(session_args: SmallWebRTCSessionArguments):
async def bot(runner_args: RunnerArguments):
"""Main bot entry point for the bot starter."""
transport = SmallWebRTCTransport(
@@ -115,7 +115,7 @@ async def bot(session_args: SmallWebRTCSessionArguments):
audio_out_enabled=True,
vad_analyzer=SileroVADAnalyzer(),
),
webrtc_connection=session_args.webrtc_connection,
webrtc_connection=runner_args.webrtc_connection,
)
await run_bot(transport)