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

Properties

content: null | string | ContentPart[]
name?: string
role: "system" | "user" | "assistant" | "tool"
tool_call_id?: string
tool_calls?: ToolCall[]