Skip to main content
export interface ImageBufferContentItem {
  type: "image-buffer";
  image_type: "png" | "jpeg" | "gif" | "webp";
  data: Buffer;
}
Represents image content provided as a Buffer for AI extraction. Used when passing image data directly to extractStructuredData without a page source. The image will be analyzed by AI vision models for data extraction.