Microsoft Azure · Schema

chatCompletionRequestMessageContentPartImage

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

JSON Schema

microsoft-azure-chatcompletionrequestmessagecontentpartimage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionRequestMessageContentPartImage",
  "title": "chatCompletionRequestMessageContentPartImage",
  "allOf": [
    {
      "$ref": "#/components/schemas/chatCompletionRequestMessageContentPart"
    },
    {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "description": "Either a URL of the image or the base64 encoded image data.",
          "format": "uri"
        },
        "detail": {
          "$ref": "#/components/schemas/imageDetailLevel"
        }
      }
    }
  ],
  "required": [
    "url"
  ]
}