Microsoft Azure · Schema

chatCompletionRequestMessageAssistant

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

JSON Schema

microsoft-azure-chatcompletionrequestmessageassistant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionRequestMessageAssistant",
  "title": "chatCompletionRequestMessageAssistant",
  "allOf": [
    {
      "$ref": "#/components/schemas/chatCompletionRequestMessage"
    },
    {
      "type": "object",
      "properties": {
        "content": {
          "type": "string",
          "description": "The contents of the message.",
          "nullable": true
        },
        "tool_calls": {
          "type": "array",
          "description": "The tool calls generated by the model, such as function calls.",
          "items": {
            "$ref": "#/components/schemas/chatCompletionMessageToolCall"
          }
        },
        "context": {
          "$ref": "#/components/schemas/azureChatExtensionsMessageContext"
        }
      }
    }
  ],
  "required": [
    "content"
  ]
}