Microsoft Azure · Schema

chatCompletionToolType

The type of the tool. Currently, only `function` is supported.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
View JSON Schema on GitHub

JSON Schema

microsoft-azure-chatcompletiontooltype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionToolType",
  "title": "chatCompletionToolType",
  "type": "string",
  "enum": [
    "function"
  ],
  "description": "The type of the tool. Currently, only `function` is supported.",
  "x-ms-enum": {
    "name": "ChatCompletionToolType",
    "modelAsString": true,
    "values": [
      {
        "value": "function",
        "description": "The tool type is function."
      }
    ]
  }
}