Interface TurnPlannerDiscoveryConfig

interface TurnPlannerDiscoveryConfig {
    enabled?: boolean;
    onlyAvailable?: boolean;
    defaultKind?: CapabilityKind | "any";
    includePromptContext?: boolean;
    defaultToolSelectionMode?: ToolSelectionMode;
    maxRetries?: number;
    retryBackoffMs?: number;
}

Properties

enabled?: boolean
onlyAvailable?: boolean
defaultKind?: CapabilityKind | "any"
includePromptContext?: boolean
defaultToolSelectionMode?: ToolSelectionMode
maxRetries?: number

Number of retry attempts after the initial discovery call. Example: 1 = up to 2 total attempts.

retryBackoffMs?: number

Delay between discovery retries in milliseconds.