A call to a custom tool created by the model.

interface ChatCompletionMessageCustomToolCall {
    custom: OpenAIClient.Chat.Completions.ChatCompletionMessageCustomToolCall.Custom;
    id: string;
    type: "custom";
}

Properties

Properties

The custom tool that the model called.

id: string

The ID of the tool call.

type: "custom"

The type of the tool. Always custom.