ADK TypeScript Documentation - v0.0.4
    Preparing search index...

    Interface ToolConfig

    Configuration for tool initialization

    interface ToolConfig {
        description: string;
        isLongRunning?: boolean;
        maxRetryAttempts?: number;
        name: string;
        shouldRetryOnFailure?: boolean;
    }
    Index

    Properties

    description: string

    Description of the tool

    isLongRunning?: boolean

    Whether the tool is a long running operation

    maxRetryAttempts?: number

    Maximum retry attempts

    name: string

    Name of the tool

    shouldRetryOnFailure?: boolean

    Whether the tool execution should be retried on failure