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

    Type Alias ImageContent

    An image provided to or from an LLM.

    type ImageContent = {
        annotations?: Annotations | null;
        data: string;
        mimeType: string;
        uri?: string | null;
        _meta?: { [key: string]: unknown } | null;
    }
    Index

    Properties

    annotations?: Annotations | null

    Optional annotations that help clients decide how to display or route this content.

    data: string

    Base64-encoded media payload.

    mimeType: string

    MIME type describing the encoded media payload.

    uri?: string | null

    URI associated with this resource or media payload.

    _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