Interface ChatMessage

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

Properties

role?: "user" | "system" | "assistant" | "tool"
content?: string
refusal?: string
annotations?: string[]
tool_calls?: ToolCall[]
tool_call_id?: string