Microsoft Azure · Schema

chatCompletionRequestMessageContentPartText

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

JSON Schema

microsoft-azure-chatcompletionrequestmessagecontentparttext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionRequestMessageContentPartText",
  "title": "chatCompletionRequestMessageContentPartText",
  "allOf": [
    {
      "$ref": "#/components/schemas/chatCompletionRequestMessageContentPart"
    },
    {
      "type": "object",
      "properties": {
        "text": {
          "type": "string",
          "description": "The text content."
        }
      }
    }
  ],
  "required": [
    "text"
  ]
}