Documentation - v1.6.0-beta.24
    Preparing search index...

    A streaming chunk that creates or updates a named task in the agentic task list.

    interface TaskUpdateChunk {
        details?: string;
        id: string;
        output?: string;
        sources?: Source[];
        status: SlackTaskStatus;
        title: string;
        type: "task_update";
    }
    Index

    Properties

    details?: string

    Optional detail text shown under the task title. Maximum 256 characters.

    id: string

    Unique identifier for the task within this stream.

    output?: string

    Optional output text shown when the task completes. Maximum 256 characters.

    sources?: Source[]

    Optional list of source references for the task.

    Current status of the task.

    title: string

    Display title of the task.

    type: "task_update"

    Discriminant — always 'task_update'.