Merge pull request #3599 from pipecat-ai/aleix/release-evals-disable-rtvi

scripts(evals): disable RTVI
This commit is contained in:
Aleix Conchillo Flaqué
2026-01-30 11:44:46 -08:00
committed by GitHub

View File

@@ -42,7 +42,10 @@ from pipecat.pipeline.pipeline import Pipeline
from pipecat.pipeline.runner import PipelineRunner
from pipecat.pipeline.task import PipelineParams, PipelineTask
from pipecat.processors.aggregators.llm_context import LLMContext
from pipecat.processors.aggregators.llm_response_universal import LLMContextAggregatorPair
from pipecat.processors.aggregators.llm_response_universal import (
LLMContextAggregatorPair,
LLMUserAggregatorParams,
)
from pipecat.processors.audio.audio_buffer_processor import AudioBufferProcessor
from pipecat.processors.frame_processor import FrameDirection
from pipecat.runner.types import RunnerArguments
@@ -207,7 +210,6 @@ async def run_example_pipeline(script_path: Path, eval_config: EvalConfig):
audio_in_enabled=True,
audio_out_enabled=True,
video_in_enabled=True,
vad_analyzer=SileroVADAnalyzer(),
),
)
@@ -309,7 +311,12 @@ async def run_eval_pipeline(
]
context = LLMContext(messages, tools)
context_aggregator = LLMContextAggregatorPair(context)
context_aggregator = LLMContextAggregatorPair(
context,
user_params=LLMUserAggregatorParams(
vad_analyzer=SileroVADAnalyzer(),
),
)
audio_buffer = AudioBufferProcessor()
@@ -332,6 +339,7 @@ async def run_eval_pipeline(
audio_in_sample_rate=16000,
audio_out_sample_rate=16000,
),
enable_rtvi=False,
idle_timeout_secs=PIPELINE_IDLE_TIMEOUT_SECS,
)