Interface MultiModalContentImageBlockModel

Represents an image block in a multimodal context snippet.

MultiModalContentImageBlockModel

interface MultiModalContentImageBlockModel {
    caption: string;
    image?: null | ImageModel;
    type: string;
}

Properties

Properties

caption: string

A caption describing the image.

MultiModalContentImageBlockModel

image?: null | ImageModel

MultiModalContentImageBlockModel

type: string

The type of multimodal content block. Always image.

MultiModalContentImageBlockModel