ART Framework API Docs
    Preparing search index...

    Interface TaskDelegationConfig

    Configuration options for the TaskDelegationService

    interface TaskDelegationConfig {
        callbackUrl?: string;
        defaultTimeoutMs?: number;
        maxRetries?: number;
        retryDelayMs?: number;
        useExponentialBackoff?: boolean;
    }
    Index

    Properties

    callbackUrl?: string

    The base callback URL for receiving A2A task updates.

    defaultTimeoutMs?: number

    Default timeout for task delegation requests in milliseconds

    maxRetries?: number

    Maximum number of retry attempts for failed requests

    retryDelayMs?: number

    Base delay between retry attempts in milliseconds

    useExponentialBackoff?: boolean

    Whether to use exponential backoff for retries