OpenAI · Schema

ChatCompletionTool

AIArtificial IntelligenceLarge Language ModelsT1

Properties

Name Type Description
type string The type of the tool. Currently, only function is supported.
function object
View JSON Schema on GitHub

JSON Schema

openai-chat-completions-chat-completion-tool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ChatCompletionTool",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of the tool. Currently, only function is supported."
    },
    "function": {
      "type": "object"
    }
  }
}