Agent Client Protocol - v0.22.1
    Preparing search index...

    Type Alias ProviderInfoExperimental

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    Information about a configurable LLM provider.

    type ProviderInfo = {
        _meta?: { [key: string]: unknown } | null;
        current?: ProviderCurrentConfig | null;
        id: string;
        required: boolean;
        supported: LlmProtocol[];
    }
    Index

    Properties

    _meta?: { [key: string]: unknown } | null

    The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

    See protocol docs: Extensibility

    current?: ProviderCurrentConfig | null

    Current effective non-secret routing config. Null or omitted means provider is disabled.

    id: string

    Provider identifier, for example "main" or "openai".

    required: boolean

    Whether this provider is mandatory and cannot be disabled via providers/disable. If true, clients must not call providers/disable for this id.

    supported: LlmProtocol[]

    Supported protocol types for this provider.