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

Properties

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