Microsoft Azure · Schema

chatCompletionChoiceLogProbs

Log probability information for the choice.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
content array A list of message content tokens with log probability information.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-chatcompletionchoicelogprobs-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionChoiceLogProbs",
  "title": "chatCompletionChoiceLogProbs",
  "description": "Log probability information for the choice.",
  "type": "object",
  "nullable": true,
  "properties": {
    "content": {
      "description": "A list of message content tokens with log probability information.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/chatCompletionTokenLogprob"
      },
      "nullable": true
    }
  },
  "required": [
    "content"
  ]
}