ParameterTypeDescription
step_nameOptional[str]Step identification name
step_idOptional[str]Unique step identifier
executor_typeOptional[str]Type of executor: "agent", "team", or "function"
executor_nameOptional[str]Name of the executor
contentOptional[Union[str, Dict[str, Any], List[Any], BaseModel, Any]]Primary output (can be any format)
parallel_step_outputsOptional[Dict[str, StepOutput]]For parallel steps: individual sub-step outputs
responseOptional[Union[RunResponse, TeamRunResponse]]Raw execution response from agent/team
imagesOptional[List[ImageArtifact]]Media outputs - images (new or passed-through)
videosOptional[List[VideoArtifact]]Media outputs - videos (new or passed-through)
audioOptional[List[AudioArtifact]]Media outputs - audio (new or passed-through)
metricsOptional[Dict[str, Any]]Execution metadata
successboolExecution success status (default: True)
errorOptional[str]Error message if execution failed
stopboolRequest early workflow termination (default: False)