Microsoft Azure · Schema

chatCompletionRequestMessageContentPartType

The type of the content part.

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

JSON Schema

microsoft-azure-chatcompletionrequestmessagecontentparttype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionRequestMessageContentPartType",
  "title": "chatCompletionRequestMessageContentPartType",
  "type": "string",
  "enum": [
    "text",
    "image_url"
  ],
  "description": "The type of the content part.",
  "x-ms-enum": {
    "name": "ChatCompletionRequestMessageContentPartType",
    "modelAsString": true,
    "values": [
      {
        "value": "text",
        "description": "The content part type is text."
      },
      {
        "value": "image_url",
        "description": "The content part type is image_url."
      }
    ]
  }
}