Running a pipeline on the engine

Overview

The AiOS platform, provides the capability to build pipelines and run the pipelines on the Engine. The following API illustrates how a pipeline can be built and run on the engine.

Usage - Run a pipeline on the engine

Define the blocks of the pipeline

import razor
engine = razor.api.engines(name='Engine-name')
prun = engine.execute(pipeline=p)

Attributes

Argument Description
pipeline Pipeline object created by the user

Notes

The engine takes the pipeline object and runs the pipeline. The engine execution is an async operation and returns a pipeline run object, which can be used by the user to track the run of the pipeline

Also, refer to the quick start guide for creating a pipeline and running on engine