A call to a function tool created by the model.

interface ChatCompletionMessageFunctionToolCall {
    function: OpenAIClient.Chat.Completions.ChatCompletionMessageFunctionToolCall.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.