interface ImageContent {
    _cache: Record<any, any>;
    id: string;
    image: string | VideoFrame;
    inferenceDetail: "auto" | "high" | "low";
    inferenceHeight?: number;
    inferenceWidth?: number;
    mimeType?: string;
    type: "image_content";
}

Properties

_cache: Record<any, any>
id: string
image: string | VideoFrame

Either a string URL or a VideoFrame object.

inferenceDetail: "auto" | "high" | "low"
inferenceHeight?: number
inferenceWidth?: number
mimeType?: string
type: "image_content"