Skip to main content

training_config_versions

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

Overview

Nametraining_config_versions
TypeResource
Idazure.ai_language.training_config_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
modelExpirationDatestring (date)Represents the training config version expiration date. Required.
trainingConfigVersionstringRepresents the version of the config. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_training_config_versionsselectprojectKind, endpointtop, skip, maxpagesizeLists the support training config version for a given project type.

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: )
projectKindstringThe project kind. Known values are: "Conversation", "Orchestration", and "CustomConversationSummarization". Required.
maxpagesizeinteger
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 support training config version for a given project type.

SELECT
modelExpirationDate,
trainingConfigVersion
FROM azure.ai_language.training_config_versions
WHERE projectKind = '{{ projectKind }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND top = '{{ top }}'
AND skip = '{{ skip }}'
AND maxpagesize = '{{ maxpagesize }}'
;