PipelineTask: force constructor keyword arguments

This commit is contained in:
Aleix Conchillo Flaqué
2025-02-25 17:56:01 -08:00
parent 66564392a6
commit 6722aae598
95 changed files with 140 additions and 98 deletions

View File

@@ -155,8 +155,10 @@ Your task is to help the user understand and learn from this article in 2 senten
task = PipelineTask(
pipeline,
PipelineParams(
audio_out_sample_rate=44100, allow_interruptions=True, enable_metrics=True
params=PipelineParams(
audio_out_sample_rate=44100,
allow_interruptions=True,
enable_metrics=True,
),
)