interface AnthropicResponseMessage {
    content: AnthropicContent[];
    id: string;
    model: string;
    role: string;
    stop_reason: null | string;
    stop_sequence: null | string;
    type: string;
    usage: AnthropicUsage;
}

Properties

content: AnthropicContent[]
id: string
model: string
role: string
stop_reason: null | string
stop_sequence: null | string
type: string