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

Hierarchy (view full)

Properties

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