@runloop/agent-axon-client
    Preparing search index...

    Type Alias ModelInfo

    Information about an available model.

    type ModelInfo = {
        description: string;
        displayName: string;
        supportedEffortLevels?: ("low" | "medium" | "high" | "max")[];
        supportsAdaptiveThinking?: boolean;
        supportsAutoMode?: boolean;
        supportsEffort?: boolean;
        supportsFastMode?: boolean;
        value: string;
    }
    Index

    Claude SDK

    description: string

    Description of the model's capabilities

    displayName: string

    Human-readable display name

    supportedEffortLevels?: ("low" | "medium" | "high" | "max")[]

    Available effort levels for this model

    supportsAdaptiveThinking?: boolean

    Whether this model supports adaptive thinking (Claude decides when and how much to think)

    supportsAutoMode?: boolean

    Whether this model supports auto mode

    supportsEffort?: boolean

    Whether this model supports effort levels

    supportsFastMode?: boolean

    Whether this model supports fast mode

    value: string

    Model identifier to use in API calls