ART Framework API Docs
    Preparing search index...

    Interface A2ATaskFilter

    Filter type for A2A task notifications. Allows filtering by task status, task type, agent, or priority.

    interface A2ATaskFilter {
        priority?: string;
        sourceAgentId?: string;
        status?: A2ATaskStatus | A2ATaskStatus[];
        targetAgentId?: string;
        taskType?: string | string[];
        threadId?: string;
    }
    Index

    Properties

    priority?: string

    Filter by task priority

    sourceAgentId?: string

    Filter by source agent ID

    Filter by task status (single status or array of statuses)

    targetAgentId?: string

    Filter by target agent ID

    taskType?: string | string[]

    Filter by task type (e.g., 'analyze', 'synthesize', 'transform')

    threadId?: string

    Filter by thread ID