tessl install tessl/pypi-kedro@1.1.0Kedro helps you build production-ready data and analytics pipelines
Agent Success
Agent success rate when using this tile
98%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.32x
Baseline
Agent success rate without this tile
74%
Build a utility that combines multiple data processing pipelines using composition operators.
@generates
def merge_pipelines(pipeline1, pipeline2):
"""
Merge two pipelines together. All nodes from both pipelines are included.
Args:
pipeline1: First pipeline to merge
pipeline2: Second pipeline to merge
Returns:
A merged pipeline containing nodes from both input pipelines
"""
pass
def subtract_pipelines(pipeline1, pipeline2):
"""
Subtract pipeline2 from pipeline1.
Args:
pipeline1: Base pipeline
pipeline2: Pipeline to subtract
Returns:
A pipeline containing nodes from pipeline1 that are not in pipeline2
"""
pass
def intersect_pipelines(pipeline1, pipeline2):
"""
Find the intersection of two pipelines.
Args:
pipeline1: First pipeline
pipeline2: Second pipeline
Returns:
A pipeline containing only nodes that appear in both input pipelines
"""
passProvides pipeline construction and composition capabilities.