Interface ChatMessage

interface ChatMessage {
    role?: "user" | "system" | "assistant";
    content?: string;
    refusal?: string;
    annotations?: string[];
}

Properties

role?: "user" | "system" | "assistant"
content?: string
refusal?: string
annotations?: string[]