Skip to main content

supported_prebuilt_entities

Creates, updates, deletes, gets or lists a supported_prebuilt_entities resource.

Overview

Namesupported_prebuilt_entities
TypeResource
Idazure.ai_language.supported_prebuilt_entities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
categorystringThe prebuilt entity category. Required.
descriptionstringThe description. Required.
examplesstringEnglish examples for the entity. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_supported_prebuilt_entitiesselectendpointtop, skip, maxpagesize, language, multilingualLists the supported prebuilt entities that can be used while creating composed entities.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: )
languagestringThe language to get supported prebuilt entities for. Required if multilingual is false. This is BCP-47 representation of a language. For example, use "en" for English, "en-gb" for English (UK), "es" for Spanish etc. Default value is None.
maxpagesizeinteger
multilingualstringWhether to get the support prebuilt entities for multilingual or monolingual projects. If true, the language parameter is ignored. Default value is None.
skipintegerThe number of result items to skip. Default value is None.
topintegerThe number of result items to return. Default value is None.

SELECT examples

Lists the supported prebuilt entities that can be used while creating composed entities.

SELECT
category,
description,
examples
FROM azure.ai_language.supported_prebuilt_entities
WHERE endpoint = '{{ endpoint }}' -- required
AND top = '{{ top }}'
AND skip = '{{ skip }}'
AND maxpagesize = '{{ maxpagesize }}'
AND language = '{{ language }}'
AND multilingual = '{{ multilingual }}'
;