interface ChatCompletionMessageToolCall {
    function: OpenAIClient.Chat.Completions.ChatCompletionMessageToolCall.Function;
    id: string;
    type: "function";
}

Properties

Properties

The function that the model called.

id: string

The ID of the tool call.

type: "function"

The type of the tool. Currently, only function is supported.