Microsoft Azure · Schema

chatCompletionFunction

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
name string The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
description string The description of what the function does.
parameters object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-chatcompletionfunction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/chatCompletionFunction",
  "title": "chatCompletionFunction",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64."
    },
    "description": {
      "type": "string",
      "description": "The description of what the function does."
    },
    "parameters": {
      "$ref": "#/components/schemas/chatCompletionFunctionParameters"
    }
  },
  "required": [
    "name"
  ]
}