interface AnthropicMessageContentImage {
    cache_control?: null | AnthropicCacheControl;
    source: {
        data: string;
        media_type: string;
        type: string;
    };
    type: "image";
}

Hierarchy

  • AnthropicMessageContentBase
    • AnthropicMessageContentImage

Properties

cache_control?: null | AnthropicCacheControl
source: {
    data: string;
    media_type: string;
    type: string;
}
type: "image"