interface PlainTextContentBlock {
    metadata?: Record<string, unknown>;
    mime_type?: string;
    source_type: "text";
    text: string;
    type: "file" | "text";
}

Hierarchy (view full)

Properties

metadata?: Record<string, unknown>
mime_type?: string
source_type: "text"
text: string
type: "file" | "text"