/ src / python / txtai / workflow / task / workflow.py
workflow.py
 1  """
 2  WorkflowTask module
 3  """
 4  
 5  from .base import Task
 6  
 7  
 8  class WorkflowTask(Task):
 9      """
10      Task that executes a separate Workflow
11      """
12  
13      def process(self, action, inputs):
14          return list(super().process(action, inputs))