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

    Interface ModelInfo

    UNSTABLE

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

    Information about a selectable model.

    interface ModelInfo {
        _meta?: { [k: string]: unknown };
        description?: string | null;
        modelId: string;
        name: string;
    }
    Index

    Properties

    _meta?: { [k: string]: unknown }

    Extension point for implementations

    description?: string | null

    Optional description of the model.

    modelId: string

    Unique identifier for the model.

    name: string

    Human-readable name of the model.