Microsoft Azure · Schema

elasticsearchQueryType

The type of Elasticsearch® retrieval query that should be executed when using it as an Azure OpenAI chat extension.

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

JSON Schema

microsoft-azure-elasticsearchquerytype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/elasticsearchQueryType",
  "title": "elasticsearchQueryType",
  "type": "string",
  "description": "The type of Elasticsearch\u00ae retrieval query that should be executed when using it as an Azure OpenAI chat extension.",
  "enum": [
    "simple",
    "vector"
  ],
  "x-ms-enum": {
    "name": "ElasticsearchQueryType",
    "modelAsString": true,
    "values": [
      {
        "name": "simple",
        "value": "simple",
        "description": "Represents the default, simple query parser."
      },
      {
        "name": "vector",
        "value": "vector",
        "description": "Represents vector search over computed data."
      }
    ]
  }
}