Interface ChatCompletionAssistantMessage

interface ChatCompletionAssistantMessage {
    content?: null | string;
    name?: string;
    role: "assistant";
    tool_calls?: ChatCompletionToolCall[];
}

Properties

content?: null | string
name?: string
role: "assistant"
tool_calls?: ChatCompletionToolCall[]