interface Base64ContentBlock {
    data: string;
    metadata?: Record<string, unknown>;
    mime_type?: string;
    source_type: "base64";
    type: "image" | "audio" | "file";
}

Hierarchy (view full)

Properties

data: string
metadata?: Record<string, unknown>
mime_type?: string
source_type: "base64"
type: "image" | "audio" | "file"