Interface HostedChatCompletionMessage

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

Properties

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