Microsoft Azure · Schema

chatCompletionRequestMessageTool

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

JSON Schema

microsoft-azure-chatcompletionrequestmessagetool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionRequestMessageTool",
  "title": "chatCompletionRequestMessageTool",
  "allOf": [
    {
      "$ref": "#/components/schemas/chatCompletionRequestMessage"
    },
    {
      "type": "object",
      "nullable": true,
      "properties": {
        "tool_call_id": {
          "type": "string",
          "description": "Tool call that this message is responding to."
        },
        "content": {
          "type": "string",
          "description": "The contents of the message.",
          "nullable": true
        }
      }
    }
  ],
  "required": [
    "tool_call_id",
    "content"
  ]
}