파이프라인 내 컴포넌트 추가
create_link_component
메소드를 통하여 컴포넌트를 생성할 수 있습니다. (here)
생성한 컴포넌트를 파이프라인 요소로 추가합니다.
pipeline.add_component(component=component1)
- Parameters
component
(Object):create_link_component
메소드를 통해서 생성한 컴포넌트
- Troubleshooting
- RuntimeError: The component name has already been used in the pipeline.
- 이미 파이프라인에 추가된 컴포넌트와 동일한 이름을 가진 컴포넌트가 추가될 때 발생합니다.
- RuntimeError: The component name has already been used in the pipeline.
Example
from mrx_link.sdk import LinkPipeline
from mrx_link.sdk.utils import create_link_component
# 코드 셀
code1 = """
x = 1
"""
if __name__ == "__main__":
# 파이프라인 객체 생성
pipeline = LinkPipeline()
# 컴포넌트 생성 및 파이프라인에 컴포넌트 추가
component1 = create_link_component(identifier="111-1", name="test1", code=code1)
pipeline.add_component(component=component1)