{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ChatCompletionToolCall", "type": "object", "description": "A tool call generated by the model.", "properties": { "id": { "type": "string", "description": "The ID of the tool call." }, "type": { "type": "string", "description": "The type of the tool call." }, "function": { "type": "object", "description": "The function that the model called." } } }