ChatGPT · Schema

ChatCompletionTool

AgentsAIChatGPTEmbeddingsFine-TuningGPT-4GPT-5Language ModelOpenAIRealtime

Properties

Name Type Description
type string The type of the tool.
function object
View JSON Schema on GitHub

JSON Schema

chatgpt-chatcompletiontool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatCompletionTool",
  "title": "ChatCompletionTool",
  "type": "object",
  "required": [
    "type",
    "function"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of the tool.",
      "enum": [
        "function"
      ],
      "example": "function"
    },
    "function": {
      "$ref": "#/components/schemas/FunctionDefinition"
    }
  }
}