interface TaskLogMessage {
    level: "error" | "info" | "warning" | "debug";
    message: string;
    step_id?: string;
    task_id: string;
    task_status?: AgentExecutionStatus;
}

Properties

level: "error" | "info" | "warning" | "debug"

Log level

message: string

The log message

step_id?: string

The step id associated with the log message if any

task_id: string

Identifier of the task associated with the log

task_status?: AgentExecutionStatus

The status of the task