Image URL content item for content-based extraction.
export interface ImageUrlContentItem {
type: "image-url";
image_type: "png" | "jpeg" | "gif" | "webp";
data: string;
}
Properties
The type of the content item, which is always “image-url”.
image_type
'png' | 'jpeg' | 'gif' | 'webp'
The image format (e.g., “png”, “jpeg”, “gif”, “webp”).