Type Alias ChatCompletionMessage

ChatCompletionMessage: {
    content?: string | {
        text: string;
        type: string;
    }[];
    name?: string;
    role: "user" | "assistant" | "system";
    tool_call_id?: string;
    tool_calls?: unknown[];
}

A single message in a chat completion request.