456 B
456 B
-
Added support for setting up a pipeline task from external files. You can now register custom pipeline task setup files by setting the
PIPECAT_SETUP_FILESenvironment variable. This variable should contain a colon-separated list of Python files (e.g.export PIPECAT_SETUP_FILES="setup1.py:setup.py:..."). Each file must define a function with the following signature:async def setup_pipeline_task(task: PipelineTask): ...