Microsoft Azure · Schema

azureSearchQueryType

The type of Azure Search 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-azuresearchquerytype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/azureSearchQueryType",
  "title": "azureSearchQueryType",
  "type": "string",
  "description": "The type of Azure Search retrieval query that should be executed when using it as an Azure OpenAI chat extension.",
  "enum": [
    "simple",
    "semantic",
    "vector",
    "vector_simple_hybrid",
    "vector_semantic_hybrid"
  ],
  "x-ms-enum": {
    "name": "AzureSearchQueryType",
    "modelAsString": true,
    "values": [
      {
        "name": "simple",
        "value": "simple",
        "description": "Represents the default, simple query parser."
      },
      {
        "name": "semantic",
        "value": "semantic",
        "description": "Represents the semantic query parser for advanced semantic modeling."
      },
      {
        "name": "vector",
        "value": "vector",
        "description": "Represents vector search over computed data."
      },
      {
        "name": "vectorSimpleHybrid",
        "value": "vector_simple_hybrid",
        "description": "Represents a combination of the simple query strategy with vector data."
      },
      {
        "name": "vectorSemanticHybrid",
        "value": "vector_semantic_hybrid",
        "description": "Represents a combination of semantic search and vector data querying."
      }
    ]
  }
}