diff --git a/instill/clients/pipeline.py b/instill/clients/pipeline.py index 4fbb244..625ba53 100644 --- a/instill/clients/pipeline.py +++ b/instill/clients/pipeline.py @@ -235,14 +235,14 @@ def list_pipelines( def create_pipeline( self, namespace_id: str, - name: str, + pipeline_id: str, description: str, recipe: dict, raw_recipe: str = "", async_enabled: bool = False, ) -> pipeline_interface.CreateNamespacePipelineResponse: pipeline = pipeline_interface.Pipeline( - id=name, + id=pipeline_id, description=description, raw_recipe=raw_recipe, )