Microsoft Azure · Schema

Retrieval tool

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
type string The type of tool being defined: `retrieval`
View JSON Schema on GitHub

JSON Schema

microsoft-azure-assistanttoolsretrieval-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/assistantToolsRetrieval",
  "title": "Retrieval tool",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of tool being defined: `retrieval`",
      "enum": [
        "retrieval"
      ],
      "x-ms-enum": {
        "name": "assistantToolsRetrievalType",
        "modelAsString": true,
        "values": [
          {
            "value": "retrieval",
            "description": "retrieval as type of tool being defined"
          }
        ]
      }
    }
  },
  "required": [
    "type"
  ]
}